Hello everyone,
I'm using the NCS/Zephyr settings subsystem to store some application data in non-volatile memory.
The settings structure looks something like this:
app/peripherals
app/config/0
I use the SETTINGS_STATIC_HANDLER_DEFINE to register two set-functions one for <app/peripherals> and one for <app/config>. I would like to have the <app/peripherals> settings before the other stuff but the set-function for <app/config> is always called before the other one.
I was wondering if I could affect the order in which the set-functions are called?
Thanks in advance!