|
MeshX 0.4
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 [16] |
| uint8_t | data [256] |
| struct meshx_nvs_write_list * | next |
Linked list structure used to store key-value pairs that need to be written to NVS.
| uint8_t meshx_nvs_write_list::data[256] |
Buffer containing the value to be written to NVS
| char meshx_nvs_write_list::key[16] |
Key name. Maximum length is (MESHX_KEY_NAME_MAX_SIZE-1) characters
| uint16_t meshx_nvs_write_list::len |
Length of the value in bytes
| struct meshx_nvs_write_list* meshx_nvs_write_list::next |
Pointer to the next node in the list