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 669bb4f commit 2433f67Copy full SHA for 2433f67
libraries/EEPROM/src/EEPROM.h
@@ -67,7 +67,7 @@ Error : EEPROM start address must be divisble by 8192
67
//By limiting EEPROM size to 1024 bytes, we reduce the amount of SRAM required and
68
//time needed to read/write words into flash. It can be increased
69
//to 8096 if needed
70
- const int AP3_FLASH_EEPROM_SIZE = 1024 * 2; //In bytes
+ const int AP3_FLASH_EEPROM_SIZE = 1024; //In bytes
71
72
uint8_t read(uint16_t eepromLocation);
73
void write(uint16_t eepromLocation, uint8_t dataToWrite);
0 commit comments