Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

drivers: add support for MTDs emulated in RAM #19443

Merged
merged 10 commits into from
Apr 12, 2023
Prev Previous commit
Next Next commit
tests/littlefs: reduce sector count for emulated MTD
A `SECTOR_COUNT` of 12 seems to be sufficient to work for this test in emulated MTD.
  • Loading branch information
gschorcht committed Apr 12, 2023
commit 4af1fa6a3d8dd7504f91300c371de30c6b51c839
2 changes: 1 addition & 1 deletion tests/pkg_littlefs/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

/* Test mock object implementing a simple RAM-based mtd */
#ifndef SECTOR_COUNT
#define SECTOR_COUNT 16
#define SECTOR_COUNT 12
#endif
#ifndef PAGE_PER_SECTOR
#define PAGE_PER_SECTOR 4
Expand Down