/* * 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);