1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/tests/periph/eeprom
2024-03-26 14:53:35 +01:00
..
tests
main.c tests: Use size_t print format specifier 2023-12-21 12:02:37 +01:00
Makefile
Makefile.ci examples, tests: update Makefile.ci for AVR8 2023-12-01 19:37:05 +01:00
README.md

Expected result

Use the provided shell commands to read and write bytes from/to the MCU's internal EEPROM memory.

# Read 10 bytes from the beginning of the eeprom
> read 0 10

# Write HelloWorld starting from the 10th position in the eeprom
> write 10 HelloWorld

Background

This test application provides shell commands to verify the implementations of the eeprom peripheral driver interface.