-
Notifications
You must be signed in to change notification settings - Fork 39
Open
Labels
Description
template <uint32_t _storage_size, uint32_t fmc_end = ARDUINO_UPLOAD_MAXIMUM_SIZE>
class FlashStorage
{
...
private:
uint8_t buffer[_storage_size];
...
}
....
#ifndef EEPROM_EMULATION_SIZE
#define EEPROM_EMULATION_SIZE 4096
#endif
static EEPROMClass<EEPROM_EMULATION_SIZE> EEPROM;
buffer_的RAM占太多,低端MCU内存不足以运行这个功能
The buffer consumes too much RAM; low-end MCUs lack sufficient memory to run this feature.