Skip to content
Snippets Groups Projects
Commit 50f2078f authored by Federico Pellegrin's avatar Federico Pellegrin
Browse files

tests/periph_flashpage: test_last_raw must erase page before write

parent a0054654
No related branches found
No related tags found
No related merge requests found
...@@ -335,6 +335,9 @@ static int cmd_test_last_raw(int argc, char **argv) ...@@ -335,6 +335,9 @@ static int cmd_test_last_raw(int argc, char **argv)
/* try to align */ /* try to align */
memcpy(raw_buf, "test12344321tset", 16); memcpy(raw_buf, "test12344321tset", 16);
/* erase the page first */
flashpage_write(((int)FLASHPAGE_NUMOF - 2), NULL);
flashpage_write_raw((void*) ((int)CPU_FLASH_BASE + (int)FLASHPAGE_SIZE * ((int)FLASHPAGE_NUMOF - 2)), raw_buf, strlen(raw_buf)); flashpage_write_raw((void*) ((int)CPU_FLASH_BASE + (int)FLASHPAGE_SIZE * ((int)FLASHPAGE_NUMOF - 2)), raw_buf, strlen(raw_buf));
puts("wrote raw short buffer to last flash page"); puts("wrote raw short buffer to last flash page");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment