RIOT integration of littlefs. More...
RIOT integration of littlefs.
Files | |
file | littlefs_fs.h |
littlefs integration with vfs | |
Data Structures | |
struct | littlefs_desc_t |
littlefs descriptor for vfs integration More... | |
Variables | |
const vfs_file_system_t | littlefs_file_system |
The littlefs vfs driver. | |
littlefs configuration | |
#define | LITTLEFS_LOOKAHEAD_SIZE (128) |
Default lookahead size. | |
#define | LITTLEFS_FILE_BUFFER_SIZE (0) |
File buffer size, if 0, dynamic allocation is used. More... | |
#define | LITTLEFS_READ_BUFFER_SIZE (0) |
Read buffer size, if 0, dynamic allocation is used. More... | |
#define | LITTLEFS_PROG_BUFFER_SIZE (0) |
Prog buffer size, if 0, dynamic allocation is used. More... | |
#define LITTLEFS_FILE_BUFFER_SIZE (0) |
File buffer size, if 0, dynamic allocation is used.
If set, only one file can be used at a time, must be program size (mtd page size is used internally as program size)
Definition at line 47 of file littlefs_fs.h.
#define LITTLEFS_PROG_BUFFER_SIZE (0) |
Prog buffer size, if 0, dynamic allocation is used.
If set, it must be program size
Definition at line 59 of file littlefs_fs.h.
#define LITTLEFS_READ_BUFFER_SIZE (0) |
Read buffer size, if 0, dynamic allocation is used.
If set, it must be read size (mtd page size is used internally as read size)
Definition at line 53 of file littlefs_fs.h.