Explorar el Código

Bugfix Capacity (important)

Shift was wrong direction
main
FrankBoesing hace 9 años
padre
commit
3eddc112d8
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      SerialFlashChip.cpp

+ 2
- 2
SerialFlashChip.cpp Ver fichero

@@ -217,10 +217,10 @@ uint32_t SerialFlashChip::capacity()
//Serial.print("capacity ");
//Serial.println(id[3], HEX);
if (id[2] >= 16 && id[2] <= 31) {
return 1 >> id[2];
return 1 << id[2];
}
if (id[2] >= 32 && id[2] <= 37) {
return 1 >> (id[2] - 6);
return 1 << (id[2] - 6);
}
return 1048576; // unknown, guess 1 MByte
}

Cargando…
Cancelar
Guardar