Skip to content

Commit 2433f67

Browse files
committed
Reduce EEPROM area back to original 1024 bytes
1 parent 669bb4f commit 2433f67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/EEPROM/src/EEPROM.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Error : EEPROM start address must be divisble by 8192
6767
//By limiting EEPROM size to 1024 bytes, we reduce the amount of SRAM required and
6868
//time needed to read/write words into flash. It can be increased
6969
//to 8096 if needed
70-
const int AP3_FLASH_EEPROM_SIZE = 1024 * 2; //In bytes
70+
const int AP3_FLASH_EEPROM_SIZE = 1024; //In bytes
7171

7272
uint8_t read(uint16_t eepromLocation);
7373
void write(uint16_t eepromLocation, uint8_t dataToWrite);

0 commit comments

Comments
 (0)