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.
2 parents 8a7ab0a + 85b818b commit 5726f72Copy full SHA for 5726f72
src/boards/rp2040/eeprom-board.c
@@ -26,7 +26,7 @@ void EepromMcuInit()
26
27
uint8_t EepromMcuReadBuffer( uint16_t addr, uint8_t *buffer, uint16_t size )
28
{
29
- memcpy(buffer, EEPROM_ADDRESS + addr, size);
+ memcpy(buffer, eeprom_write_cache + addr, size);
30
31
return SUCCESS;
32
}
0 commit comments