We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 866921c commit 5d7a3e9Copy full SHA for 5d7a3e9
cores/esp8266/Esp.cpp
@@ -283,6 +283,16 @@ uint32_t EspClass::getFlashChipSizeByChipId(void) {
283
case 0x1340EF: // W25Q40
284
return (512_kB);
285
286
+ // BergMicro
287
+ case 0x1640E0: // BG25Q32
288
+ return (4_MB);
289
+ case 0x1540E0: // BG25Q16
290
+ return (2_MB);
291
+ case 0x1440E0: // BG25Q80
292
+ return (1_MB);
293
+ case 0x1340E0: // BG25Q40
294
+ return (512_kB);
295
+
296
default:
297
return 0;
298
}
0 commit comments