MeshX 0.3
This repository provides an implementation for Bluetooth Low Energy (BLE) Mesh network nodes. The project allows you to create BLE mesh nodes that can communicate with each other, enabling the development of smart home solutions or other IoT-based applications.
|
Linked list structure used to store key-value pairs that need to be written to NVS. More...
Data Fields | |
uint16_t | len |
char | key [MESHX_KEY_NAME_MAX_SIZE] |
uint8_t | data [MESHX_KEY_VALUE_MAX_SIZE] |
struct meshx_nvs_write_list * | next |
Linked list structure used to store key-value pairs that need to be written to NVS.
Definition at line 34 of file meshx_nvs.c.
uint8_t meshx_nvs_write_list::data[MESHX_KEY_VALUE_MAX_SIZE] |
Buffer containing the value to be written to NVS
Definition at line 38 of file meshx_nvs.c.
char meshx_nvs_write_list::key[MESHX_KEY_NAME_MAX_SIZE] |
Key name. Maximum length is (MESHX_KEY_NAME_MAX_SIZE-1) characters
Definition at line 37 of file meshx_nvs.c.
uint16_t meshx_nvs_write_list::len |
Length of the value in bytes
Definition at line 36 of file meshx_nvs.c.
struct meshx_nvs_write_list* meshx_nvs_write_list::next |
Pointer to the next node in the list
Definition at line 39 of file meshx_nvs.c.