ESP-IDF + 0/1 examples
SourceVu will show references to esp_local_ctrl_prop from the following samples and libraries:
 
Symbols
loading (1/5)...
Files
loading (3/5)...
SummarySyntaxRelatedExamplesReferencesInstancesLifecycle

Fields

Field
Declared as
Description
char *
Unique name of property.
uint32_t
Type of property. This may be set to application defined enums.
size_t
Size of the property value, which: - if zero, the property can have values of variable size - if non-zero, the property can have values of fixed size only, therefore, checks are performed internally by esp_local_ctrl when setting the value of such a property.
uint32_t
Flags set for this property. This could be a bit field. A flag may indicate property behavior, e.g. read-only / constant.
void *
Pointer to some context data relevant for this property. This will be available for use inside the `get_prop_values` and `set_prop_values` handlers as a part of this property structure. When set, this is valid throughout the lifetime of a property, till either the property is removed or the esp_local_ctrl service is stopped.
void (*)(void *ctx)
Function used by esp_local_ctrl to internally free the property context when `esp_local_ctrl_remove_property()` or `esp_local_ctrl_stop()` is called.

References

from 0/1 examples