Skip to content

Commit

Permalink
Merge branch 'fix/eeprom-flash-cache-read' into add-waveshare-sx1262-…
Browse files Browse the repository at this point in the history
…support
  • Loading branch information
ThomasLeister committed Jan 16, 2022
2 parents 8a7ab0a + 85b818b commit 5726f72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/boards/rp2040/eeprom-board.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ void EepromMcuInit()

uint8_t EepromMcuReadBuffer( uint16_t addr, uint8_t *buffer, uint16_t size )
{
memcpy(buffer, EEPROM_ADDRESS + addr, size);
memcpy(buffer, eeprom_write_cache + addr, size);

return SUCCESS;
}
Expand Down

0 comments on commit 5726f72

Please sign in to comment.