|
CTS-SAT-1-OBC-Firmware
|
#include "littlefs/lfs.h"

Go to the source code of this file.
Functions | |
| int | LFS_block_device_read (const struct lfs_config *, lfs_block_t, lfs_off_t, void *, lfs_size_t) |
| LittleFS read function, memory is mapped to a physical address here. | |
| int | LFS_block_device_prog (const struct lfs_config *, lfs_block_t, lfs_off_t, const void *, lfs_size_t) |
| LittleFS write function, memory is mapped to a physical address here. | |
| int | LFS_block_device_erase (const struct lfs_config *, lfs_block_t) |
| LittleFS erase function, memory is mapped to a physical address here. | |
| int | LFS_block_device_sync (const struct lfs_config *) |
| LittleFS sync function. | |
| int LFS_block_device_erase | ( | const struct lfs_config * | c, |
| lfs_block_t | block ) |
LittleFS erase function, memory is mapped to a physical address here.
| LittleFS | Configurations, Block to erase |

| int LFS_block_device_prog | ( | const struct lfs_config * | c, |
| lfs_block_t | block, | ||
| lfs_off_t | off, | ||
| const void * | buffer, | ||
| lfs_size_t | size ) |
LittleFS write function, memory is mapped to a physical address here.
| LittleFS | Configurations, Block to read, offset, buffer, buffer size |

| int LFS_block_device_read | ( | const struct lfs_config * | c, |
| lfs_block_t | block, | ||
| lfs_off_t | off, | ||
| void * | buffer, | ||
| lfs_size_t | size ) |
LittleFS read function, memory is mapped to a physical address here.
| LittleFS | Configurations, Block to write, offset, buffer, buffer size |

| int LFS_block_device_sync | ( | const struct lfs_config * | c | ) |
LittleFS sync function.
| c | - LittleFS Configuration |