1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/periph/eeprom
2024-03-26 14:53:35 +01:00
..
tests tests: move periph_ applications to periphs subdirectory 2023-05-06 15:29:51 +02:00
main.c tests: Use size_t print format specifier 2023-12-21 12:02:37 +01:00
Makefile tests: move periph_ applications to periphs subdirectory 2023-05-06 15:29:51 +02:00
Makefile.ci examples, tests: update Makefile.ci for AVR8 2023-12-01 19:37:05 +01:00
README.md tests: move periph_ applications to periphs subdirectory 2023-05-06 15:29:51 +02:00

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.