You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On top of the basic drive I/O routines it might be useful to implement littlefs, a filesystem made for microcontrollers. AFAIK all you need to do to port it is to provide it with implementations of a few functions for reading/writing/syncing blocks.
The filesystem is simple and light weight, far more robust than FAT, and every operation is atomic.
The text was updated successfully, but these errors were encountered:
https://hackaday.com/2019/01/24/cool-tools-a-little-filesystem-that-keeps-your-bits-on-lock/
https://github.com/littlefs-project/littlefs
On top of the basic drive I/O routines it might be useful to implement littlefs, a filesystem made for microcontrollers. AFAIK all you need to do to port it is to provide it with implementations of a few functions for reading/writing/syncing blocks.
The filesystem is simple and light weight, far more robust than FAT, and every operation is atomic.
The text was updated successfully, but these errors were encountered: