fairly simple but important module. most work on this is done already last year, minor improvements and things to look into
Provide read/write access to sd card via fatfs. this module is pretty good already. We should improve the interface though, esp passing around errors and checking for failure
things to figure out:
testing and reliability
Optimize sd card writing speed, like buffer size? See logging module ^, these are closely connected. Actually some of the logging things could be moved here
things connected to logger and is now this module's responsibility: How fast can we write to SD card? Is there an optimal buffer size for each SD card write?
Is there any improvements for how we do file system and log file naming? Can that be more testable? See last year implementation in sdmmc.c. relies a lot of global vars which can be.. uhhh sus
see #5
fairly simple but important module. most work on this is done already last year, minor improvements and things to look into
Provide read/write access to sd card via fatfs. this module is pretty good already. We should improve the interface though, esp passing around errors and checking for failure
things to figure out: