Zephyr Project API 3.7.0
A Scalable Open Source RTOS
|
Non-volatile Storage APIs. More...
Functions | |
int | nvs_mount (struct nvs_fs *fs) |
Mount an NVS file system onto the flash device specified in fs . | |
int | nvs_clear (struct nvs_fs *fs) |
Clear the NVS file system from flash. | |
ssize_t | nvs_write (struct nvs_fs *fs, uint16_t id, const void *data, size_t len) |
Write an entry to the file system. | |
int | nvs_delete (struct nvs_fs *fs, uint16_t id) |
Delete an entry from the file system. | |
ssize_t | nvs_read (struct nvs_fs *fs, uint16_t id, void *data, size_t len) |
Read an entry from the file system. | |
ssize_t | nvs_read_hist (struct nvs_fs *fs, uint16_t id, void *data, size_t len, uint16_t cnt) |
Read a history entry from the file system. | |
ssize_t | nvs_calc_free_space (struct nvs_fs *fs) |
Calculate the available free space in the file system. | |
Non-volatile Storage APIs.
#include <include/zephyr/fs/nvs.h>
Calculate the available free space in the file system.
fs | Pointer to file system |
int nvs_clear | ( | struct nvs_fs * | fs | ) |
#include <include/zephyr/fs/nvs.h>
Clear the NVS file system from flash.
fs | Pointer to file system |
0 | Success |
-ERRNO | errno code if error |
#include <include/zephyr/fs/nvs.h>
Delete an entry from the file system.
fs | Pointer to file system |
id | Id of the entry to be deleted |
0 | Success |
-ERRNO | errno code if error |
int nvs_mount | ( | struct nvs_fs * | fs | ) |
#include <include/zephyr/fs/nvs.h>
Mount an NVS file system onto the flash device specified in fs
.
fs | Pointer to file system |
0 | Success |
-ERRNO | errno code if error |
#include <include/zephyr/fs/nvs.h>
Read an entry from the file system.
fs | Pointer to file system |
id | Id of the entry to be read |
data | Pointer to data buffer |
len | Number of bytes to be read |
#include <include/zephyr/fs/nvs.h>
Read a history entry from the file system.
fs | Pointer to file system |
id | Id of the entry to be read |
data | Pointer to data buffer |
len | Number of bytes to be read |
cnt | History counter: 0: latest entry, 1: one before latest ... |
#include <include/zephyr/fs/nvs.h>
Write an entry to the file system.
len
parameter is equal to 0
then entry is effectively removed (it is equivalent to calling of nvs_delete). Any calls to nvs_read for entries with data of length 0
will return error.fs | Pointer to file system |
id | Id of the entry to be written |
data | Pointer to the data to be written |
len | Number of bytes to be written |