Skip to content

EEPROM占用RAM过高 #140

@eszeta

Description

@eszeta

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.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions