/Zephyr-latest/drivers/pinctrl/ |
D | pinctrl_imx_scmi.c | 12 struct scmi_pinctrl_settings settings; in scmi_pinctrl_configure_pin() local 18 settings.id = (pin->pinmux.mux_register - IOMUXC_MUXREG) / 4; in scmi_pinctrl_configure_pin() 19 settings.config[0] = PIN_CONFIG_TYPE_MUX; in scmi_pinctrl_configure_pin() 20 settings.config[1] = IOMUXC_INPUT_ENABLE(pin->pin_ctrl_flags) in scmi_pinctrl_configure_pin() 26 settings.config[2] = PIN_CONFIG_TYPE_DAISY_ID; in scmi_pinctrl_configure_pin() 27 settings.config[3] = (pin->pinmux.input_register - IOMUXC_DAISYREG) / 4; in scmi_pinctrl_configure_pin() 30 settings.config[4] = PIN_CONFIG_TYPE_DAISY_CFG; in scmi_pinctrl_configure_pin() 31 settings.config[5] = pin->pinmux.input_daisy; in scmi_pinctrl_configure_pin() 35 settings.attributes = in scmi_pinctrl_configure_pin() 38 ret = scmi_pinctrl_settings_configure(&settings); in scmi_pinctrl_configure_pin() [all …]
|
/Zephyr-latest/subsys/settings/ |
D | Kconfig | 7 The settings subsystem allows its users to serialize and 15 module-str = settings 24 bool "dynamic settings handlers" 27 Enables the use of dynamic settings handlers 29 # Hidden option to enable encoding length into settings entry 41 Storage back-end to be used by the settings subsystem. 48 Use ZMS as settings storage backend. 54 Use FCB as a settings storage back-end. 61 Use a file (on mounted file system) as a settings storage back-end. 91 Use a custom settings storage back-end. [all …]
|
/Zephyr-latest/drivers/sensor/pixart/paa3905/ |
D | paa3905_stream.c | 61 data->stream.settings.enabled.drdy; in paa3905_complete_result() 63 data->stream.settings.enabled.motion; in paa3905_complete_result() 66 if ((data->stream.settings.enabled.drdy && in paa3905_complete_result() 67 data->stream.settings.opt.drdy == SENSOR_STREAM_DATA_INCLUDE) || in paa3905_complete_result() 68 (data->stream.settings.enabled.motion && in paa3905_complete_result() 69 data->stream.settings.opt.motion == SENSOR_STREAM_DATA_INCLUDE)) { in paa3905_complete_result() 73 if (data->stream.settings.enabled.drdy) { in paa3905_complete_result() 234 return (a->settings.enabled.drdy != b->settings.enabled.drdy) || in settings_changed() 235 (a->settings.opt.drdy != b->settings.opt.drdy) || in settings_changed() 236 (a->settings.enabled.motion != b->settings.enabled.motion) || in settings_changed() [all …]
|
/Zephyr-latest/samples/subsys/settings/ |
D | README.rst | 1 .. zephyr:code-sample:: settings 3 :relevant-api: settings settings_rt settings_name_proc 5 Load and save configuration values using the settings API. 10 This is a simple application demonstrating use of the settings runtime 13 settings method. The example shows how to implement module handlers, how to 19 * A board with settings support, for instance: nrf52840dk/nrf52840 25 This sample can be found under :zephyr_file:`samples/subsys/settings` in 32 :zephyr-app: samples/subsys/settings 39 settings manipulation messages. 50 settings subsys initialization: OK. [all …]
|
/Zephyr-latest/drivers/firmware/scmi/ |
D | pinctrl.c | 11 int scmi_pinctrl_settings_configure(struct scmi_pinctrl_settings *settings) in scmi_pinctrl_settings_configure() argument 21 if (!settings) { in scmi_pinctrl_settings_configure() 33 config_num = SCMI_PINCTRL_ATTRIBUTES_CONFIG_NUM(settings->attributes); in scmi_pinctrl_settings_configure() 45 msg.len = sizeof(*settings) - in scmi_pinctrl_settings_configure() 47 msg.content = settings; in scmi_pinctrl_settings_configure()
|
/Zephyr-latest/drivers/sensor/tdk/icm45686/ |
D | icm45686_stream.c | 323 data->stream.settings.enabled.drdy = false; in icm45686_event_handler() 324 data->stream.settings.enabled.fifo_ths = false; in icm45686_event_handler() 325 data->stream.settings.enabled.fifo_full = false; in icm45686_event_handler() 423 return (a->settings.enabled.drdy != b->settings.enabled.drdy) || in settings_changed() 424 (a->settings.opt.drdy != b->settings.opt.drdy) || in settings_changed() 425 (a->settings.enabled.fifo_ths != b->settings.enabled.fifo_ths) || in settings_changed() 426 (a->settings.opt.fifo_ths != b->settings.opt.fifo_ths) || in settings_changed() 427 (a->settings.enabled.fifo_full != b->settings.enabled.fifo_full) || in settings_changed() 428 (a->settings.opt.fifo_full != b->settings.opt.fifo_full); in settings_changed() 452 stream.settings.enabled.drdy = true; in icm45686_stream_submit() [all …]
|
/Zephyr-latest/tests/subsys/settings/zms/src/ |
D | CMakeLists.txt | 5 ${ZEPHYR_BASE}/subsys/settings/include 6 ${ZEPHYR_BASE}/subsys/settings/src 7 ${ZEPHYR_BASE}/tests/subsys/settings/zms/src
|
/Zephyr-latest/tests/subsys/settings/nvs/src/ |
D | CMakeLists.txt | 5 ${ZEPHYR_BASE}/subsys/settings/include 6 ${ZEPHYR_BASE}/subsys/settings/src 7 ${ZEPHYR_BASE}/tests/subsys/settings/nvs/src
|
/Zephyr-latest/tests/subsys/settings/fcb/src/ |
D | CMakeLists.txt | 7 ${ZEPHYR_BASE}/subsys/settings/include 8 ${ZEPHYR_BASE}/subsys/settings/src 9 ${ZEPHYR_BASE}/tests/subsys/settings/fcb/src
|
/Zephyr-latest/subsys/mgmt/mcumgr/grp/settings_mgmt/ |
D | CMakeLists.txt | 8 # interface, when settings management is enabled. 13 message(WARNING "Note: MCUmgr settings management is enabled but settings access hooks are " 15 "use, as all settings on the device can be manipulated by a remote device. See "
|
D | Kconfig | 5 bool "MCUmgr handlers for settings management" 12 Enables MCUmgr handlers for settings manipulation. 57 variable if placed on the heap (settings does not support getting 64 Allows applications to control settings management access by 66 settings read or write attempt is made.
|
/Zephyr-latest/tests/subsys/settings/file/src/ |
D | CMakeLists.txt | 7 ${ZEPHYR_BASE}/subsys/settings/include 8 ${ZEPHYR_BASE}/subsys/settings/src 9 ${ZEPHYR_BASE}/tests/subsys/settings/file/include
|
/Zephyr-latest/tests/subsys/settings/functional/src/ |
D | CMakeLists.txt | 4 ${ZEPHYR_BASE}/subsys/settings/include 5 ${ZEPHYR_BASE}/subsys/settings/src
|
/Zephyr-latest/doc/services/storage/settings/ |
D | index.rst | 6 The settings subsystem gives modules a way to store persistent per-device 22 For an example of the settings subsystem refer to :zephyr:code-sample:`settings` sample. 38 This gets called when asking for a settings element value by its name using 47 This gets called after the settings have been loaded in full. 49 effect right away, for example if there are multiple settings 53 This gets called to write all current settings. This happens 54 when :c:func:`settings_save()` tries to save the settings or transfer to any 62 initializing a settings handler with a different priority is done using a call to 86 This gets called when starting a save of all current settings using 90 This gets called after having saved of all current settings using [all …]
|
/Zephyr-latest/drivers/input/ |
D | Kconfig.analog_axis | 28 bool "Analog axis settings support" 34 settings and load them automatically on startup. 37 int "Maximum number of axes supported in the settings." 41 settings.
|
/Zephyr-latest/tests/subsys/settings/performance/ |
D | CMakeLists.txt | 8 ${ZEPHYR_BASE}/subsys/settings/include 9 ${ZEPHYR_BASE}/subsys/settings/src
|
/Zephyr-latest/doc/services/device_mgmt/smp_groups/ |
D | smp_group_3.rst | 19 | ``2`` | Commit settings | 21 | ``3`` | Load/Save settings | 316 Commit settings command 319 Commit settings command allows committing all settings that have been set but not yet applied on a 322 Commit settings request 325 Commit settings request header fields: 338 Commit settings response 341 Commit settings response header fields: 392 Load/Save settings command 395 Load/Save settings command allows loading/saving all serialized items from/to persistent storage [all …]
|
/Zephyr-latest/doc/build/snippets/ |
D | index.rst | 6 Snippets are a way to save build system settings in one place, and then use 7 those settings when you build any Zephyr application. This lets you save common 14 - applying interrelated configuration settings to your "main" CPU and a
|
/Zephyr-latest/samples/drivers/stepper/tmc50xx/boards/ |
D | nucleo_g071rb.overlay | 26 /* common stepper controller settings */ 29 /* ADI TMC stallguard settings specific to TMC50XX */ 35 /* ADI TMC ramp generator as well as current settings */
|
/Zephyr-latest/tests/subsys/settings/functional/file/ |
D | CMakeLists.txt | 11 ${ZEPHYR_BASE}/subsys/settings/include 12 ${ZEPHYR_BASE}/subsys/settings/src
|
/Zephyr-latest/cmake/modules/ |
D | basic_settings.cmake | 5 # Setup basic settings for a Zephyr project. 7 # Basic settings are: 8 # - sysbuild defined configuration settings 10 # Details for sysbuild settings:
|
D | soc.cmake | 5 # Configure SoC settings based on Kconfig settings. 8 # on Kconfig settings for the selected SoC.
|
/Zephyr-latest/subsys/net/lib/http/ |
D | http_parser.c | 812 const struct http_parser_settings *settings, in zero_content_length() argument 825 rc = cb_notify(parser, &p_state, settings->on_message_complete, in zero_content_length() 844 settings->on_message_complete, in zero_content_length() 864 const struct http_parser_settings *settings, in parser_execute() argument 895 settings->on_message_complete, in parser_execute() 979 settings->on_message_begin, in parser_execute() 1031 settings->on_message_begin, in parser_execute() 1160 settings->on_status, in parser_execute() 1202 settings->on_status, in parser_execute() 1228 rc = cb_data(parser, settings->on_status, in parser_execute() [all …]
|
/Zephyr-latest/samples/boards/st/bluetooth/interactive_gui/ |
D | README.rst | 21 Default UART settings 24 It depends on the board default settings for ``zephyr,bt-c2h-uart`` DTS property. 25 The UART default settings are:
|
/Zephyr-latest/subsys/secure_storage/ |
D | Kconfig.its_store | 8 DT_CHOSEN_Z_SETTINGS_PARTITION := zephyr,settings-partition 22 overhead compared to the settings-based implementation, both in terms of runtime 23 execution and storage space, and also ROM footprint if the settings subsystem is disabled. 28 bool "ITS store module implementation using the settings subsystem for storage" 64 string "Subtree in which to store the settings, with a trailing slash. Can be empty."
|