Hello user process
This commit is contained in:
@ -8,12 +8,14 @@
|
||||
#define LITTLEFS_BLOCK_SIZE 4096
|
||||
|
||||
struct VfsMountPoint;
|
||||
struct VfsStat;
|
||||
|
||||
typedef struct {
|
||||
lfs_t instance;
|
||||
} LittleFs;
|
||||
|
||||
int32_t littlefs_read(struct VfsMountPoint *vmp, const char *path, uint8_t *const buffer, size_t n, size_t off);
|
||||
int32_t littlefs_stat(struct VfsMountPoint *vmp, const char *path, struct VfsStat *stat);
|
||||
int32_t littlefs_write(struct VfsMountPoint *vmp, const char *path, const uint8_t *const buffer, size_t n, size_t off);
|
||||
int32_t littlefs_remove(struct VfsMountPoint *vmp, const char *path);
|
||||
int32_t littlefs_create(struct VfsMountPoint *vmp, const char *path, int32_t type);
|
||||
|
Reference in New Issue
Block a user