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.
Loading...
Searching...
No Matches
meshx_nvs_write_list Struct Reference

Linked list structure used to store key-value pairs that need to be written to NVS. More...

Collaboration diagram for meshx_nvs_write_list:
Collaboration graph

Data Fields

uint16_t len
 
char key [MESHX_KEY_NAME_MAX_SIZE]
 
uint8_t data [MESHX_KEY_VALUE_MAX_SIZE]
 
struct meshx_nvs_write_listnext
 

Detailed Description

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.

Field Documentation

◆ data

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.

◆ key

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.

◆ len

uint16_t meshx_nvs_write_list::len

Length of the value in bytes

Definition at line 36 of file meshx_nvs.c.

◆ next

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.


The documentation for this struct was generated from the following file: