Skip to content
Snippets Groups Projects
Unverified Commit a360fded authored by Sebastian Meiling's avatar Sebastian Meiling Committed by GitHub
Browse files

Merge pull request #8452 from OTAkeys/pr/fix_littlefs_tests

unittests/littlefs: fix unittests
parents cea0d132 c7d02497
No related branches found
No related tags found
No related merge requests found
...@@ -31,13 +31,13 @@ ...@@ -31,13 +31,13 @@
#else #else
/* Test mock object implementing a simple RAM-based mtd */ /* Test mock object implementing a simple RAM-based mtd */
#ifndef SECTOR_COUNT #ifndef SECTOR_COUNT
#define SECTOR_COUNT 4 #define SECTOR_COUNT 16
#endif #endif
#ifndef PAGE_PER_SECTOR #ifndef PAGE_PER_SECTOR
#define PAGE_PER_SECTOR 8 #define PAGE_PER_SECTOR 4
#endif #endif
#ifndef PAGE_SIZE #ifndef PAGE_SIZE
#define PAGE_SIZE 128 #define PAGE_SIZE 64
#endif #endif
static uint8_t dummy_memory[PAGE_PER_SECTOR * PAGE_SIZE * SECTOR_COUNT]; static uint8_t dummy_memory[PAGE_PER_SECTOR * PAGE_SIZE * SECTOR_COUNT];
......
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