Home
last modified time | relevance | path

Searched full:settings (Results 1 – 25 of 609) sorted by relevance

12345678910>>...25

/Zephyr-Core-2.7.6/subsys/settings/
DKconfig4 menuconfig SETTINGS config
5 bool "Settings"
7 The settings subsystem allows its users to serialize and
12 if SETTINGS
13 module = SETTINGS
14 module-str = settings
20 depends on SETTINGS
25 bool "dynamic settings handlers"
26 depends on SETTINGS
29 Enables the use of dynamic settings handlers
[all …]
/Zephyr-Core-2.7.6/samples/subsys/settings/
DREADME.rst3 Settings sample
9 This is a simple application demonstrating use of the settings runtime
12 settings method. The example shows how to implement module handlers, how to
18 * A board with settings support, for instance: nrf52840dk_nrf52840
24 This sample can be found under :zephyr_file:`samples/subsys/settings` in
31 :zephyr-app: samples/subsys/settings
38 settings manipulation messages.
47 *** Settings usage example ***
49 settings subsys initialization: OK.
61 loading all settings under <beta> handler is done
[all …]
Dsample.yaml2 name: Settings Sample
5 sample.subsys.settings:
6 tags: settings
33 - "The settings destination off the key <alpha/beta/source> has got value: \"RT\""
34 …- "String value \"rtos\" was retrieved from the settings destination off the key <alpha/beta/sourc…
/Zephyr-Core-2.7.6/doc/reference/settings/
Dindex.rst3 Settings chapter
6 The settings subsystem gives modules a way to store persistent per-device
14 Settings items are stored as key-value pair strings. By convention,
22 For an example of the settings subsystem refer to
33 Settings handlers for subtree implement a set of handler functions.
37 This gets called when asking for a settings element value by its name using
46 This gets called after the settings have been loaded in full.
48 effect right away, for example if there are multiple settings
52 This gets called to write all current settings. This happens
53 when ``settings_save()`` tries to save the settings or transfer to any
[all …]
/Zephyr-Core-2.7.6/include/settings/
Dsettings.h28 * @defgroup settings Settings
33 #define SETTINGS_MAX_DIR_DEPTH 8 /* max depth of settings tree */
39 /* pleace for settings additions:
45 * Function used to read the data from the settings storage in
70 /**< Get values handler of settings items identified by keyword names.
83 /**< Set value handler of settings items identified by keyword names.
97 /**< This handler gets called after settings has been loaded in full.
105 /**< This gets called to dump all current settings items.
107 * This happens when @ref settings_save tries to save the settings.
110 * a single key-value pair to persisted settings. Don't store
[all …]
/Zephyr-Core-2.7.6/subsys/settings/include/settings/
Dsettings_file.h11 #include "settings/settings.h"
17 #define SETTINGS_FILE_NAME_MAX 32 /* max length for settings filename */
26 /* register file to be source of settings */
29 /* settings saves go to a file */
Dsettings_nvs.h12 #include "settings/settings.h"
43 /* register nvs to be a source of settings */
46 /* register nvs to be the destination of settings */
/Zephyr-Core-2.7.6/tests/subsys/settings/littlefs/src/
DCMakeLists.txt14 ${ZEPHYR_BASE}/subsys/settings/include
15 ${ZEPHYR_BASE}/subsys/settings/src
16 ${ZEPHYR_BASE}/tests/subsys/settings/fs/include
17 ${ZEPHYR_BASE}/tests/subsys/settings/littlefs/src
/Zephyr-Core-2.7.6/samples/net/lldp/
Dprj.conf36 # First ethernet interface will use these settings
42 # Second ethernet interface will have these settings
49 # Settings for the third network interface
59 # VLAN settings. We will have three VLANs in this sample.
65 # LLDP settings
/Zephyr-Core-2.7.6/samples/net/vlan/
Dprj.conf32 # First ethernet interface will use these settings
41 # Settings for the second network interface
50 # VLAN settings. Note that currently SLIP only supports one VLAN tag,
55 # Settings for native_posix ethernet driver (if compiled for that board)
/Zephyr-Core-2.7.6/tests/subsys/settings/nvs/src/
DCMakeLists.txt7 ${ZEPHYR_BASE}/subsys/settings/include
8 ${ZEPHYR_BASE}/subsys/settings/src
9 ${ZEPHYR_BASE}/tests/subsys/settings/nvs/src
/Zephyr-Core-2.7.6/tests/subsys/settings/fcb/src/
DCMakeLists.txt10 ${ZEPHYR_BASE}/subsys/settings/include
11 ${ZEPHYR_BASE}/subsys/settings/src
12 ${ZEPHYR_BASE}/tests/subsys/settings/fcb/src
/Zephyr-Core-2.7.6/samples/net/gptp/
Doverlay-vlan.conf1 # Second ethernet interface will have these settings
8 # Settings for the third network interface
15 # VLAN settings. We will have three VLANs, but the one running gPTP protocol
/Zephyr-Core-2.7.6/samples/net/sockets/txtime/
Doverlay-vlan.conf8 # First ethernet interface will use these settings
14 # Second ethernet interface will have these settings
21 # Settings for the third network interface
/Zephyr-Core-2.7.6/subsys/settings/src/
Dsettings_init.c14 #include "settings/settings.h"
15 #include "settings/settings_file.h"
Dsettings_priv.h14 #include <settings/settings.h>
73 * Read RAW settings line entry data from the storage.
79 * @param[in] cb_arg settings line storage context expected by the
96 * Read the settings line entry name from the storage.
101 * @param[in] cb_arg settings line storage context expected by the
/Zephyr-Core-2.7.6/samples/net/sockets/echo_client/
Doverlay-vlan.conf9 # First ethernet interface will use these settings
15 # Second ethernet interface will have these settings
22 # Settings for the third network interface
/Zephyr-Core-2.7.6/samples/net/sockets/echo_server/
Doverlay-vlan.conf8 # First ethernet interface will use these settings
14 # Second ethernet interface will have these settings
22 # Settings for the third network interface
/Zephyr-Core-2.7.6/tests/subsys/settings/fcb_init/src/
Dsettings_test_fcb_init.c14 #include <settings/settings.h>
72 zassert_true(err == 0, "can't save settings"); in test_init()
77 zassert_true(err == 0, "can't load settings"); in test_init()
130 zassert_true(err == 0, "can't regsister the settings handler"); in test_init_setup()
133 zassert_true(err == 0, "can't load settings"); in test_init_setup()
138 zassert_true(err == 0, "can't save settings"); in test_init_setup()
/Zephyr-Core-2.7.6/cmake/ide/
Declipse_cdt4_generator_amendment.cmake64 ## 3 - work mode: "C and CXX includes, defines in .settings - [EXPERIMENTAL]"
65 ## 4 - work mode: "C and CXX includes, defines in .settings with project defines - [EXPERIMENTAL]"
77 # set(_work_mode "C and CXX includes, defines in .settings - [EXPERIMENTAL]")
81 # set(_work_mode "C and CXX includes, defines in .settings with project defines - [EXPERIMENTAL]")
110 message(" to 'CDT cross GCC Built-in Compiler Settings' provider command definition")
115 if ( (${_work_mode} STREQUAL "C and CXX includes, defines in .settings - [EXPERIMENTAL]") OR
116 …(${_work_mode} STREQUAL "C and CXX includes, defines in .settings with project defines - [EXPERIME…
118 set(OUTPUT_FILE ${CMAKE_BINARY_DIR}/.settings/language.settings.xml)
127 …if (${_work_mode} STREQUAL "C and CXX includes, defines in .settings with project defines - [EXPER…
128settings.providers.GCCBuiltinSpecsDetector\" console=\"false\" id=\"org.eclipse.cdt.managedbuilder…
[all …]
/Zephyr-Core-2.7.6/samples/subsys/settings/boards/
Dnative_posix.conf5 CONFIG_SETTINGS_FS_DIR="/ff/settings"
6 CONFIG_SETTINGS_FS_FILE="/ff/settings/run"
Dnative_posix_64.conf5 CONFIG_SETTINGS_FS_DIR="/ff/settings"
6 CONFIG_SETTINGS_FS_FILE="/ff/settings/run"
/Zephyr-Core-2.7.6/tests/subsys/settings/functional/nvs/
Dtestcase.yaml2 system.settings.functional.nvs:
5 system.settings.functional.nvs.dk:
/Zephyr-Core-2.7.6/tests/subsys/settings/functional/file/
Dprj_native_posix.conf14 CONFIG_SETTINGS_FS_DIR="/ff/settings"
15 CONFIG_SETTINGS_FS_FILE="/ff/settings/run"
Dprj_native_posix_64.conf14 CONFIG_SETTINGS_FS_DIR="/ff/settings"
15 CONFIG_SETTINGS_FS_FILE="/ff/settings/run"

12345678910>>...25