subsys/settings: Enable handler ROM registration
Add the possibility to register handles to ROM using a new macro SETTINGS_REGISTER_STATIC(handler), the handler is of type settings_handler_stat and has to be declared as const: ``` const struct settings_handler_stat test_handler = { .name = "test", /* this can also be "ps/data" .h_get = get, .h_set = set, .h_commit = NULL, /* NULL defines can be ommited */ .h_export = NULL /* NULL defines can be ommited */ }; SETTINGS_REGISTER_STATIC(test_handler); ``` To maintain support for handlers stored in RAM (dynamic handlers) `CONFIG_SETTINGS_DYNAMIC_HANDLERS`must be enabled, which is by default. When registering static handlers there is no check if this handler has been registered earlier, the latest registered static handler will be considered valid for any set/get routine, while the commit and export routines will be executed for both registered handlers. When a dynamic handler is registered a check is done to see if there was an earlier registration of the name as a static or dynamic handler registration will fail. To get to the lowest possible RAM usage it is advised to set `CONFIG_SETTINGS_DYNAMIC_HANDLERS=n`. Updates: a. Changed usage of RAM to DYNAMIC/dynamic, ROM to STATIC/static b. Updated settings.h to remove added #if defined() c. Make static handlers always enabled d. Corrected error introduced in common-rom.ld. e. Changed return value of settings_parse_and_lookup to settings_handler_stat type to reduce stack usage. f. Updated the name generated to store a handler item in ROM. It now uses the name used to register in combination with the line where SETTINGS_REGISTER_STATIC() is called. g. renamed settings_handler_stat type to settings_handler_static h. renamed SETTINGS_REGISTER_STATIC to SETTINGS_STATIC_HANDLER_DEFINE() Signed-off-by: Laczen JMS <laczenjms@gmail.com>
This commit is contained in:
parent
f91d8386a3
commit
c20ff1150f
7 changed files with 175 additions and 33 deletions
|
@ -100,6 +100,15 @@
|
|||
_bt_services_end = .;
|
||||
} GROUP_LINK_IN(ROMABLE_REGION)
|
||||
|
||||
#if defined(CONFIG_SETTINGS)
|
||||
SECTION_DATA_PROLOGUE(_settings_handlers_area,,SUBALIGN(4))
|
||||
{
|
||||
_settings_handler_static_list_start = .;
|
||||
KEEP(*(SORT_BY_NAME("._settings_handler_static.static.*")))
|
||||
_settings_handler_static_list_end = .;
|
||||
} GROUP_LINK_IN(ROMABLE_REGION)
|
||||
#endif
|
||||
|
||||
#if defined(CONFIG_BT_SETTINGS)
|
||||
SECTION_DATA_PROLOGUE(_bt_settings_area,,SUBALIGN(4))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue