The EEPROM functions (save and read) only manage input data multiple of 4 because the data is flashed with flash_program_word function. We have two alternatives:
- Discard the data that can not be saved on words (current solution)
- Include garbage data so the data always is contained on words. (proposed solution)
At this moment we only save maze sequence of 16*16 size so this is not a bug yet.
The EEPROM functions (save and read) only manage input data multiple of 4 because the data is flashed with flash_program_word function. We have two alternatives:
At this moment we only save maze sequence of 16*16 size so this is not a bug yet.