From 25ee335a500dcfe7cdca6fb2ced658e0f423fbf8 Mon Sep 17 00:00:00 2001 From: xengineering Date: Sun, 13 Apr 2025 08:27:20 +0200 Subject: fw: app: Enable settings with NVS backend --- fw/app/src/boot-count.c | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 fw/app/src/boot-count.c (limited to 'fw/app/src/boot-count.c') diff --git a/fw/app/src/boot-count.c b/fw/app/src/boot-count.c new file mode 100644 index 0000000..0b944e2 --- /dev/null +++ b/fw/app/src/boot-count.c @@ -0,0 +1,26 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public License, + * v. 2.0. If a copy of the MPL was not distributed with this file, You can + * obtain one at https://mozilla.org/MPL/2.0/. + */ + + +#include +#include +#include + + +LOG_MODULE_REGISTER(boot_count); + + +int init_settings(void) { + int ret = settings_subsys_init(); + if (ret < 0) { + LOG_ERR("Failed to init settings subsystem (%d)", ret); + return ret; + } + LOG_INF("Settings subsystem initialized"); + + return 0; +} +SYS_INIT(init_settings, APPLICATION, 50); -- cgit v1.2.3-70-g09d2