![]() |
Morse Micro IoT SDK
2.12.3
|
Update node structure.
Used to make a list of raw updates to write to the flash in a single operation.
Definition at line 242 of file mmconfig.h.
#include <mmconfig.h>
Data Fields | |
| const char * | key |
| The key, which should be pre-validated using mmconfig_validate_key(), unless it is to be used for multiple deletions and so ends in an asterisk '*'. More... | |
| void * | data |
| Pointer to the data. More... | |
| size_t | size |
| Size of the data. More... | |
| bool | data_malloced |
| Boolean flag to indicate if data is dynamically allocated. More... | |
| struct mmconfig_update_node * | next |
| Pointer to the next node in the list. More... | |
| void* mmconfig_update_node::data |
| bool mmconfig_update_node::data_malloced |
Boolean flag to indicate if data is dynamically allocated.
Definition at line 258 of file mmconfig.h.
| const char* mmconfig_update_node::key |
The key, which should be pre-validated using mmconfig_validate_key(), unless it is to be used for multiple deletions and so ends in an asterisk '*'.
Definition at line 248 of file mmconfig.h.
| struct mmconfig_update_node* mmconfig_update_node::next |
Pointer to the next node in the list.
Definition at line 261 of file mmconfig.h.
| size_t mmconfig_update_node::size |