├── .checkpatch.conf ├── .clang-format ├── .editorconfig ├── .github ├── codeql │ ├── codeql-actions-config.yml │ └── codeql-js-config.yml ├── labeler.yml ├── mergify.yml ├── test-spec.yml └── workflows │ ├── backport.yml │ ├── codeowners-reviewers.yml │ ├── codeql.yml │ ├── compliance.yml │ ├── contribs.yml │ ├── create-upmerge-PRs.yml │ ├── dnm.yml │ ├── docbuild.yml │ ├── docker.yml │ ├── docpublish.yml │ ├── docremove.yml │ ├── enforce-toolchain-synchronization.yml │ ├── labeler.yml │ ├── license-reusable.yml │ ├── license.yml │ ├── manifest.yml │ ├── oss-history.yml │ ├── reapply-ci-trusted-author.yml │ ├── remove-ci-requested.yml │ ├── review-quarantine-pr.yml │ ├── scripts-test.yml │ ├── src-mirror.yml │ ├── stale.yml │ ├── vale-lint.yml │ ├── validate-pip-requirements-fixed-file.yml │ └── west-commands.yml ├── .gitignore ├── .gitlint ├── .ruff-excludes.toml ├── .ruff.toml ├── .sonarcloud.properties ├── .vale.ini ├── .vscode └── extensions.json ├── CMakeLists.txt ├── CODEOWNERS ├── Jenkinsfile ├── Kconfig.nrf ├── LICENSE ├── README.rst ├── VERSION ├── applications ├── asset_tracker_template │ └── README.rst ├── connectivity_bridge │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.sysbuild │ ├── README.rst │ ├── README_TEMPLATE.txt │ ├── app.overlay │ ├── boards │ │ ├── thingy91_nrf52840.conf │ │ ├── thingy91_nrf52840.overlay │ │ ├── thingy91_nrf52840_readme.txt │ │ ├── thingy91x_nrf5340_cpuapp.conf │ │ ├── thingy91x_nrf5340_cpuapp.overlay │ │ └── thingy91x_nrf5340_cpuapp_readme.txt │ ├── prj.conf │ ├── sample.yaml │ ├── src │ │ ├── disk │ │ │ ├── CMakeLists.txt │ │ │ ├── config.c │ │ │ ├── readme.c │ │ │ ├── thingy91_cdc_acm.cat │ │ │ ├── thingy91_cdc_acm.cat.c │ │ │ ├── thingy91_cdc_acm.inf │ │ │ └── thingy91_cdc_acm.inf.c │ │ ├── events │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── ble_ctrl_event.c │ │ │ ├── ble_ctrl_event.h │ │ │ ├── ble_data_event.c │ │ │ ├── ble_data_event.h │ │ │ ├── cdc_data_event.c │ │ │ ├── cdc_data_event.h │ │ │ ├── fs_event.c │ │ │ ├── fs_event.h │ │ │ ├── module_state_event.c │ │ │ ├── module_state_event.h │ │ │ ├── peer_conn_event.c │ │ │ ├── peer_conn_event.h │ │ │ ├── power_event.c │ │ │ ├── power_event.h │ │ │ ├── uart_data_event.c │ │ │ └── uart_data_event.h │ │ ├── main.c │ │ └── modules │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── ble_handler.c │ │ │ ├── fs_handler.c │ │ │ ├── power_handler.c │ │ │ ├── uart_handler.c │ │ │ ├── usb_bulk_commands.c │ │ │ ├── usb_bulk_interface.c │ │ │ ├── usb_bulk_msosv2.h │ │ │ └── usb_cdc_handler.c │ ├── sysbuild.conf │ └── sysbuild │ │ └── mcuboot │ │ ├── app.overlay │ │ ├── boards │ │ ├── thingy91_nrf52840.conf │ │ ├── thingy91_nrf52840.overlay │ │ └── thingy91x_nrf5340_cpuapp.conf │ │ └── prj.conf ├── hpf │ ├── gpio │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf54l15dk_nrf54l15_cpuflpr.conf │ │ │ └── nrf54l15dk_nrf54l15_cpuflpr.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── backend │ │ │ │ ├── backend.h │ │ │ │ ├── backend_icmsg.c │ │ │ │ └── backend_mbox.c │ │ │ ├── hrt │ │ │ │ ├── hrt-nrf54l15.s │ │ │ │ ├── hrt.c │ │ │ │ └── hrt.h │ │ │ └── main.c │ │ └── sysbuild.conf │ ├── hpf.rst │ └── mspi │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── boards │ │ ├── nrf54l15dk_nrf54l15_cpuflpr.conf │ │ └── nrf54l15dk_nrf54l15_cpuflpr.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ ├── hrt │ │ │ ├── hrt-nrf54l15.s │ │ │ ├── hrt.c │ │ │ └── hrt.h │ │ └── main.c │ │ └── sysbuild.conf ├── ipc_radio │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── overlay-802154.conf │ ├── overlay-bt_hci_ipc.conf │ ├── overlay-bt_rpc.conf │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ ├── 802154.c │ │ ├── bt_empty.c │ │ ├── bt_hci_ipc.c │ │ ├── ipc_bt.h │ │ └── main.c ├── machine_learning │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.sysbuild │ ├── README.rst │ ├── VERSION │ ├── api.rst │ ├── app_desc.rst │ ├── common │ │ ├── Kconfig │ │ └── src │ │ │ ├── Kconfig.ml_app │ │ │ └── modules │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.event_proxy │ │ │ ├── Kconfig.sensor_stub_gen │ │ │ ├── event_proxy.c │ │ │ └── sensor_stub_gen.c │ ├── config_options.rst │ ├── configuration │ │ ├── common │ │ │ ├── event_proxy.h │ │ │ ├── led_state.h │ │ │ ├── sensor_sim_ctrl.h │ │ │ └── settings_loader_def.h │ │ ├── nrf52840dk_nrf52840 │ │ │ ├── app.overlay │ │ │ ├── buttons_def.h │ │ │ ├── click_detector_def.h │ │ │ ├── led_state_def.h │ │ │ ├── prj.conf │ │ │ ├── prj_nus.conf │ │ │ ├── prj_release.conf │ │ │ ├── sensor_manager_def.h │ │ │ └── sensor_sim_ctrl_def.h │ │ ├── nrf5340dk_nrf5340_cpuapp │ │ │ ├── app.overlay │ │ │ ├── buttons_def.h │ │ │ ├── click_detector_def.h │ │ │ ├── led_state_def.h │ │ │ ├── pm_static.yml │ │ │ ├── prj.conf │ │ │ ├── sensor_manager_def.h │ │ │ └── sensor_sim_ctrl_def.h │ │ ├── nrf54h20dk_nrf54h20_cpuapp │ │ │ ├── app.overlay │ │ │ ├── buttons_def.h │ │ │ ├── click_detector_def.h │ │ │ ├── event_proxy_def.h │ │ │ ├── led_state_def.h │ │ │ ├── prj.conf │ │ │ ├── prj_release_singlecore.conf │ │ │ ├── prj_singlecore.conf │ │ │ └── sensor_manager_def.h │ │ ├── nrf54l15dk_nrf54l15_cpuapp │ │ │ ├── app.overlay │ │ │ ├── buttons_def.h │ │ │ ├── click_detector_def.h │ │ │ ├── led_state_def.h │ │ │ ├── prj.conf │ │ │ ├── sensor_manager_def.h │ │ │ └── sensor_sim_ctrl_def.h │ │ ├── thingy53_nrf5340_cpuapp │ │ │ ├── app.overlay │ │ │ ├── buttons_def.h │ │ │ ├── click_detector_def.h │ │ │ ├── led_state_def.h │ │ │ ├── prj.conf │ │ │ ├── prj_release.conf │ │ │ ├── prj_rtt.conf │ │ │ └── sensor_manager_def.h │ │ └── thingy53_nrf5340_cpuapp_ns │ │ │ ├── app.overlay │ │ │ ├── buttons_def.h │ │ │ ├── click_detector_def.h │ │ │ ├── led_state_def.h │ │ │ ├── prj.conf │ │ │ ├── prj_release.conf │ │ │ ├── prj_rtt.conf │ │ │ └── sensor_manager_def.h │ ├── internal_module.rst │ ├── remote │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuppr.conf │ │ │ └── nrf54h20dk_nrf54h20_cpuppr.overlay │ │ ├── configuration │ │ │ └── nrf54h20dk_nrf54h20_cpuppr │ │ │ │ ├── event_proxy_def.h │ │ │ │ └── sensor_manager_def.h │ │ ├── prj.conf │ │ └── src │ │ │ └── main.c │ ├── sample.yaml │ ├── src │ │ ├── events │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── ei_data_forwarder_event.c │ │ │ ├── ei_data_forwarder_event.h │ │ │ ├── ml_app_mode_event.c │ │ │ ├── ml_app_mode_event.h │ │ │ ├── ml_result_event.c │ │ │ ├── ml_result_event.h │ │ │ ├── sensor_sim_event.c │ │ │ └── sensor_sim_event.h │ │ ├── main.c │ │ ├── modules │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.data_aggregator_release │ │ │ ├── Kconfig.ei_data_forwarder │ │ │ ├── Kconfig.ei_result_nsms │ │ │ ├── Kconfig.led_state │ │ │ ├── Kconfig.ml_app_mode │ │ │ ├── Kconfig.ml_runner │ │ │ ├── Kconfig.sensor_sim_ctrl │ │ │ ├── Kconfig.usb_state │ │ │ ├── data_aggregator_release.c │ │ │ ├── ei_data_forwarder_bt_nus.c │ │ │ ├── ei_data_forwarder_uart.c │ │ │ ├── ei_result_nsms.c │ │ │ ├── led_state.c │ │ │ ├── ml_app_mode.c │ │ │ ├── ml_runner.c │ │ │ ├── sensor_sim_ctrl.c │ │ │ └── usb_state.c │ │ └── util │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── bt_le_adv_prov_uuid128.c │ │ │ ├── ei_data_forwarder.c │ │ │ └── ei_data_forwarder.h │ ├── sysbuild.cmake │ └── sysbuild │ │ ├── ipc_radio │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpunet.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpurad.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ ├── thingy53_nrf5340_cpunet.conf │ │ │ ├── thingy53_nrf5340_cpunet_ns.conf │ │ │ ├── thingy53_nrf5340_cpunet_ns_release.conf │ │ │ ├── thingy53_nrf5340_cpunet_ns_rtt.conf │ │ │ ├── thingy53_nrf5340_cpunet_release.conf │ │ │ └── thingy53_nrf5340_cpunet_rtt.conf │ │ └── prj.conf │ │ └── mcuboot │ │ ├── app.overlay │ │ ├── boards │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ └── thingy53_nrf5340_cpuapp.conf │ │ └── prj.conf ├── matter_bridge │ ├── .clang-format │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.sysbuild │ ├── README.rst │ ├── VERSION │ ├── boards │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_internal.overlay │ │ ├── nrf7002dk_nrf5340_cpuapp.conf │ │ └── nrf7002dk_nrf5340_cpuapp.overlay │ ├── doc │ │ ├── adding_ble_bridged_device_service.rst │ │ ├── adding_bridged_matter_device.rst │ │ ├── adding_bridged_protocol.rst │ │ ├── extending_bridge.rst │ │ └── matter_bridge_description.rst │ ├── overlay-bt_max_connections_app.conf │ ├── pm_static_nrf5340dk_nrf5340_cpuapp.yml │ ├── pm_static_nrf5340dk_nrf5340_cpuapp_nrf70ek.yml │ ├── pm_static_nrf54lm20dk_nrf54lm20a_cpuapp.yml │ ├── pm_static_nrf54lm20dk_nrf54lm20a_cpuapp_internal.yml │ ├── pm_static_nrf7002dk_nrf5340_cpuapp.yml │ ├── prj.conf │ ├── prj_release.conf │ ├── sample.yaml │ ├── snippets │ │ └── onoff_plug │ │ │ ├── bridge.matter │ │ │ ├── bridge.zap │ │ │ ├── onoff_plug.conf │ │ │ ├── snippet.yml │ │ │ └── zap-generated │ │ │ ├── CodeDrivenCallback.h │ │ │ ├── CodeDrivenInitShutdown.cpp │ │ │ ├── IMClusterCommandHandler.cpp │ │ │ ├── PluginApplicationCallbacks.h │ │ │ ├── access.h │ │ │ ├── callback-stub.cpp │ │ │ ├── endpoint_config.h │ │ │ └── gen_config.h │ ├── src │ │ ├── app_task.cpp │ │ ├── app_task.h │ │ ├── ble │ │ │ ├── ble_bridged_device_factory.cpp │ │ │ ├── ble_bridged_device_factory.h │ │ │ ├── ble_connectivity_manager.cpp │ │ │ ├── ble_connectivity_manager.h │ │ │ └── data_providers │ │ │ │ ├── ble_bridged_device.h │ │ │ │ ├── ble_environmental_data_provider.cpp │ │ │ │ ├── ble_environmental_data_provider.h │ │ │ │ ├── ble_lbs_data_provider.cpp │ │ │ │ └── ble_lbs_data_provider.h │ │ ├── bridge_shell.cpp │ │ ├── bridged_device_types │ │ │ ├── generic_switch.cpp │ │ │ ├── generic_switch.h │ │ │ ├── humidity_sensor.cpp │ │ │ ├── humidity_sensor.h │ │ │ ├── onoff_light.cpp │ │ │ ├── onoff_light.h │ │ │ ├── onoff_light_switch.cpp │ │ │ ├── onoff_light_switch.h │ │ │ ├── temperature_sensor.cpp │ │ │ └── temperature_sensor.h │ │ ├── chip_project_config.h │ │ ├── core │ │ │ ├── Kconfig │ │ │ ├── bridge_manager.cpp │ │ │ ├── bridge_manager.h │ │ │ ├── bridge_storage_manager.cpp │ │ │ ├── bridge_storage_manager.h │ │ │ ├── bridged_device_data_provider.cpp │ │ │ ├── bridged_device_data_provider.h │ │ │ ├── matter_bridged_device.cpp │ │ │ ├── matter_bridged_device.h │ │ │ └── util │ │ │ │ └── bridge_util.h │ │ ├── default_zap │ │ │ ├── bridge.matter │ │ │ ├── bridge.zap │ │ │ └── zap-generated │ │ │ │ ├── CodeDrivenCallback.h │ │ │ │ ├── CodeDrivenInitShutdown.cpp │ │ │ │ ├── IMClusterCommandHandler.cpp │ │ │ │ ├── PluginApplicationCallbacks.h │ │ │ │ ├── access.h │ │ │ │ ├── callback-stub.cpp │ │ │ │ ├── endpoint_config.h │ │ │ │ └── gen_config.h │ │ ├── main.cpp │ │ ├── simulated_providers │ │ │ ├── simulated_bridged_device_factory.cpp │ │ │ ├── simulated_bridged_device_factory.h │ │ │ ├── simulated_generic_switch_data_provider.cpp │ │ │ ├── simulated_generic_switch_data_provider.h │ │ │ ├── simulated_humidity_sensor_data_provider.cpp │ │ │ ├── simulated_humidity_sensor_data_provider.h │ │ │ ├── simulated_onoff_light_data_provider.cpp │ │ │ ├── simulated_onoff_light_data_provider.h │ │ │ ├── simulated_onoff_light_switch_data_provider.cpp │ │ │ ├── simulated_onoff_light_switch_data_provider.h │ │ │ ├── simulated_temperature_sensor_data_provider.cpp │ │ │ └── simulated_temperature_sensor_data_provider.h │ │ └── zcl_callbacks.cpp │ ├── sysbuild.conf │ └── sysbuild │ │ ├── ipc_radio │ │ ├── boards │ │ │ └── nrf5340dk_nrf5340_cpunet.conf │ │ ├── overlay-bt_max_connections_net.conf │ │ └── prj.conf │ │ └── mcuboot │ │ ├── app.overlay │ │ ├── boards │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_internal.conf │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_internal.overlay │ │ ├── nrf7002dk_nrf5340_cpuapp.conf │ │ └── nrf7002dk_nrf5340_cpuapp.overlay │ │ └── prj.conf ├── matter_weather_station │ ├── .clang-format │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.sysbuild │ ├── README.rst │ ├── VERSION │ ├── app.overlay │ ├── overlay-factory_data.conf │ ├── pm_static_factory_data.yml │ ├── prj.conf │ ├── prj_release.conf │ ├── sample.yaml │ ├── src │ │ ├── app_task.cpp │ │ ├── app_task.h │ │ ├── battery.cpp │ │ ├── battery.h │ │ ├── buzzer.cpp │ │ ├── buzzer.h │ │ ├── chip_project_config.h │ │ ├── default_zap │ │ │ ├── weather-station.matter │ │ │ ├── weather-station.zap │ │ │ └── zap-generated │ │ │ │ ├── CodeDrivenCallback.h │ │ │ │ ├── CodeDrivenInitShutdown.cpp │ │ │ │ ├── IMClusterCommandHandler.cpp │ │ │ │ ├── PluginApplicationCallbacks.h │ │ │ │ ├── access.h │ │ │ │ ├── callback-stub.cpp │ │ │ │ ├── endpoint_config.h │ │ │ │ └── gen_config.h │ │ └── main.cpp │ ├── sysbuild.conf │ └── sysbuild │ │ └── ipc_radio │ │ └── prj.conf ├── nrf5340_audio │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.defaults │ ├── Kconfig.sysbuild │ ├── LICENSE │ ├── boards │ │ ├── nrf5340_audio_dk_nrf5340_cpuapp.conf │ │ ├── nrf5340_audio_dk_nrf5340_cpuapp.overlay │ │ ├── nrf5340_audio_dk_nrf5340_cpuapp_fota.overlay │ │ ├── nrf5340_audio_dk_nrf5340_cpuapp_release.conf │ │ └── nrf5340dk_nrf5340_cpuapp.overlay │ ├── broadcast_sink │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── main.c │ │ └── overlay-broadcast_sink.conf │ ├── broadcast_source │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── main.c │ │ └── overlay-broadcast_source.conf │ ├── doc │ │ ├── adapting_application.rst │ │ ├── audio_api.rst │ │ ├── building.rst │ │ ├── configuration.rst │ │ ├── configuration_options.rst │ │ ├── feature_support.rst │ │ ├── firmware_architecture.rst │ │ ├── fota.rst │ │ ├── requirements.rst │ │ └── user_interface.rst │ ├── include │ │ └── zbus_common.h │ ├── index.rst │ ├── pm_static_fota.yml │ ├── prj.conf │ ├── prj_fota.conf │ ├── prj_release.conf │ ├── sample.yaml │ ├── src │ │ ├── audio │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.defaults │ │ │ ├── audio_datapath.c │ │ │ ├── audio_datapath.h │ │ │ ├── audio_system.c │ │ │ ├── audio_system.h │ │ │ ├── le_audio_rx.c │ │ │ ├── le_audio_rx.h │ │ │ ├── streamctrl.h │ │ │ ├── sw_codec_select.c │ │ │ └── sw_codec_select.h │ │ ├── bluetooth │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.defaults │ │ │ ├── bt_content_control │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── bt_content_ctrl.c │ │ │ │ ├── bt_content_ctrl.h │ │ │ │ └── media │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── bt_content_ctrl_media.c │ │ │ │ │ └── bt_content_ctrl_media_internal.h │ │ │ ├── bt_management │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── advertising │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Kconfig.default │ │ │ │ │ ├── bt_mgmt_adv.c │ │ │ │ │ └── bt_mgmt_adv_internal.h │ │ │ │ ├── bt_mgmt.c │ │ │ │ ├── bt_mgmt.h │ │ │ │ ├── controller_config │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── bt_mgmt_ctlr_cfg.c │ │ │ │ │ └── bt_mgmt_ctlr_cfg_internal.h │ │ │ │ ├── dfu │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── bt_mgmt_dfu.c │ │ │ │ │ └── bt_mgmt_dfu_internal.h │ │ │ │ └── scanning │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Kconfig.defaults │ │ │ │ │ ├── bt_mgmt_scan.c │ │ │ │ │ ├── bt_mgmt_scan_for_broadcast.c │ │ │ │ │ ├── bt_mgmt_scan_for_broadcast_internal.h │ │ │ │ │ ├── bt_mgmt_scan_for_conn.c │ │ │ │ │ └── bt_mgmt_scan_for_conn_internal.h │ │ │ ├── bt_rendering_and_capture │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── bt_rendering_and_capture.c │ │ │ │ ├── bt_rendering_and_capture.h │ │ │ │ └── volume │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── bt_vol_ctlr.c │ │ │ │ │ ├── bt_vol_ctlr_internal.h │ │ │ │ │ ├── bt_vol_rend.c │ │ │ │ │ └── bt_vol_rend_internal.h │ │ │ └── bt_stream │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── broadcast │ │ │ │ ├── Kconfig │ │ │ │ ├── Kconfig.defaults │ │ │ │ ├── broadcast_sink.c │ │ │ │ ├── broadcast_sink.h │ │ │ │ ├── broadcast_source.c │ │ │ │ └── broadcast_source.h │ │ │ │ ├── bt_le_audio_tx │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bt_le_audio_tx.c │ │ │ │ └── bt_le_audio_tx.h │ │ │ │ ├── le_audio.c │ │ │ │ ├── le_audio.h │ │ │ │ └── unicast │ │ │ │ ├── Kconfig │ │ │ │ ├── Kconfig.defaults │ │ │ │ ├── server_store.c │ │ │ │ ├── server_store.h │ │ │ │ ├── unicast_client.c │ │ │ │ ├── unicast_client.h │ │ │ │ ├── unicast_server.c │ │ │ │ └── unicast_server.h │ │ ├── drivers │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── cs47l63_comm.c │ │ │ ├── cs47l63_comm.h │ │ │ └── cs47l63_reg_conf.h │ │ ├── modules │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.defaults │ │ │ ├── audio_i2s.c │ │ │ ├── audio_i2s.h │ │ │ ├── audio_sync_timer.c │ │ │ ├── audio_sync_timer.h │ │ │ ├── audio_usb.c │ │ │ ├── audio_usb.h │ │ │ ├── button_assignments.h │ │ │ ├── button_handler.c │ │ │ ├── button_handler.h │ │ │ ├── hw_codec.c │ │ │ ├── hw_codec.h │ │ │ ├── lc3_file.c │ │ │ ├── lc3_file.h │ │ │ ├── lc3_streamer.c │ │ │ ├── lc3_streamer.h │ │ │ ├── led.c │ │ │ ├── led.h │ │ │ ├── led_assignments.h │ │ │ ├── nrf5340_audio_dk.h │ │ │ ├── power_meas.c │ │ │ ├── sd_card.c │ │ │ ├── sd_card.h │ │ │ ├── sd_card_playback.c │ │ │ └── sd_card_playback.h │ │ └── utils │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.defaults │ │ │ ├── device_location.c │ │ │ ├── device_location.h │ │ │ ├── error_handler.c │ │ │ ├── fw_info_app.c.in │ │ │ ├── fw_info_app.h │ │ │ ├── macros │ │ │ └── macros_common.h │ │ │ ├── nrf5340_audio_dk_version.c │ │ │ ├── nrf5340_audio_dk_version.h │ │ │ ├── peripherals.c │ │ │ ├── peripherals.h │ │ │ ├── uicr.c │ │ │ └── uicr.h │ ├── sysbuild │ │ ├── ipc_radio │ │ │ ├── prj.conf │ │ │ └── prj_release.conf │ │ └── mcuboot │ │ │ ├── app_fota.overlay │ │ │ ├── boards │ │ │ └── nrf5340_audio_dk_nrf5340_cpuapp_fota.overlay │ │ │ └── prj_fota.conf │ ├── sysbuild_fota.conf │ ├── tools │ │ └── buildprog │ │ │ ├── buildprog.py │ │ │ ├── nrf5340_audio_dk_devices.json │ │ │ ├── nrf5340_audio_dk_devices.py │ │ │ └── program.py │ ├── unicast_client │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── main.c │ │ └── overlay-unicast_client.conf │ └── unicast_server │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── main.c │ │ └── overlay-unicast_server.conf ├── nrf_desktop │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.ble │ ├── Kconfig.debug │ ├── Kconfig.defaults │ ├── Kconfig.hid │ ├── README.rst │ ├── VERSION │ ├── api.rst │ ├── application_kconfig.rst │ ├── bluetooth.rst │ ├── board_configuration.rst │ ├── bootloader_dfu.rst │ ├── configuration │ │ ├── common │ │ │ ├── dev_descr.h │ │ │ ├── fn_key_id.h │ │ │ ├── hid_keyboard_leds.h │ │ │ ├── hid_report_consumer_ctrl.h │ │ │ ├── hid_report_desc.c │ │ │ ├── hid_report_desc.h │ │ │ ├── hid_report_keyboard.h │ │ │ ├── hid_report_mouse.h │ │ │ ├── hid_report_system_ctrl.h │ │ │ ├── hid_report_user_config.h │ │ │ ├── led_state.h │ │ │ ├── motion_sensor.h │ │ │ ├── passkey_buttons.h │ │ │ ├── port_state.h │ │ │ ├── selector_hw.h │ │ │ └── settings_loader_def.h │ │ ├── nrf52820dongle_nrf52820 │ │ │ ├── app.overlay │ │ │ ├── ble_discovery_def.h │ │ │ ├── ble_scan_def.h │ │ │ ├── buttons_def.h │ │ │ ├── click_detector_def.h │ │ │ ├── images │ │ │ │ └── mcuboot │ │ │ │ │ ├── app.overlay │ │ │ │ │ ├── mcuboot_private.pem │ │ │ │ │ └── prj_release.conf │ │ │ ├── led_state_def.h │ │ │ ├── pm_static.yml │ │ │ ├── pm_static_release.yml │ │ │ ├── port_state_def.h │ │ │ ├── prj.conf │ │ │ ├── prj_release.conf │ │ │ └── sysbuild_release.conf │ │ ├── nrf52833dk_nrf52820 │ │ │ ├── app.overlay │ │ │ ├── ble_discovery_def.h │ │ │ ├── ble_scan_def.h │ │ │ ├── buttons_def.h │ │ │ ├── click_detector_def.h │ │ │ ├── images │ │ │ │ └── mcuboot │ │ │ │ │ ├── app.overlay │ │ │ │ │ ├── mcuboot_private.pem │ │ │ │ │ └── prj_release.conf │ │ │ ├── led_state_def.h │ │ │ ├── pm_static.yml │ │ │ ├── pm_static_release.yml │ │ │ ├── port_state_def.h │ │ │ ├── prj.conf │ │ │ ├── prj_release.conf │ │ │ └── sysbuild_release.conf │ │ ├── nrf52833dk_nrf52833 │ │ │ ├── app.overlay │ │ │ ├── app_dongle_small.overlay │ │ │ ├── ble_discovery_def.h │ │ │ ├── ble_scan_def.h │ │ │ ├── buttons_def.h │ │ │ ├── click_detector_def.h │ │ │ ├── images │ │ │ │ └── mcuboot │ │ │ │ │ ├── app.overlay │ │ │ │ │ ├── mcuboot_private.pem │ │ │ │ │ ├── prj.conf │ │ │ │ │ ├── prj_dongle_small.conf │ │ │ │ │ └── prj_release.conf │ │ │ ├── led_state_def.h │ │ │ ├── pm_static.yml │ │ │ ├── pm_static_dongle_small.yml │ │ │ ├── pm_static_release.yml │ │ │ ├── port_state_def.h │ │ │ ├── prj.conf │ │ │ ├── prj_dongle_small.conf │ │ │ ├── prj_release.conf │ │ │ ├── sysbuild.conf │ │ │ ├── sysbuild_dongle_small.conf │ │ │ └── sysbuild_release.conf │ │ ├── nrf52833dongle_nrf52833 │ │ │ ├── app.overlay │ │ │ ├── ble_discovery_def.h │ │ │ ├── ble_scan_def.h │ │ │ ├── buttons_def.h │ │ │ ├── click_detector_def.h │ │ │ ├── images │ │ │ │ └── mcuboot │ │ │ │ │ ├── app.overlay │ │ │ │ │ ├── mcuboot_private.pem │ │ │ │ │ ├── prj.conf │ │ │ │ │ └── prj_release.conf │ │ │ ├── led_state_def.h │ │ │ ├── pm_static.yml │ │ │ ├── pm_static_release.yml │ │ │ ├── port_state_def.h │ │ │ ├── prj.conf │ │ │ ├── prj_release.conf │ │ │ ├── sysbuild.conf │ │ │ └── sysbuild_release.conf │ │ ├── nrf52840dk_nrf52840 │ │ │ ├── app.overlay │ │ │ ├── app_common.dtsi │ │ │ ├── app_dongle.overlay │ │ │ ├── app_keyboard.overlay │ │ │ ├── app_mcuboot_qspi.overlay │ │ │ ├── b0_private.pem │ │ │ ├── ble_discovery_def.h │ │ │ ├── ble_scan_def.h │ │ │ ├── buttons_def.h │ │ │ ├── buttons_sim_def.h │ │ │ ├── click_detector_def.h │ │ │ ├── hid_keyboard_leds_def.h │ │ │ ├── hid_keyboard_leds_def_keyboard.h │ │ │ ├── hid_keymap_def.h │ │ │ ├── hid_keymap_def_keyboard.h │ │ │ ├── images │ │ │ │ ├── b0 │ │ │ │ │ ├── prj.conf │ │ │ │ │ ├── prj_dongle.conf │ │ │ │ │ ├── prj_keyboard.conf │ │ │ │ │ ├── prj_release.conf │ │ │ │ │ └── prj_wwcb.conf │ │ │ │ └── mcuboot │ │ │ │ │ ├── app.overlay │ │ │ │ │ ├── mcuboot_private.pem │ │ │ │ │ ├── mcuboot_private_fast_pair.pem │ │ │ │ │ ├── prj_fast_pair.conf │ │ │ │ │ ├── prj_mcuboot_qspi.conf │ │ │ │ │ └── prj_mcuboot_smp.conf │ │ │ ├── led_state_def.h │ │ │ ├── pm_static.yml │ │ │ ├── pm_static_dongle.yml │ │ │ ├── pm_static_fast_pair.yml │ │ │ ├── pm_static_keyboard.yml │ │ │ ├── pm_static_mcuboot_qspi.yml │ │ │ ├── pm_static_mcuboot_smp.yml │ │ │ ├── pm_static_release.yml │ │ │ ├── pm_static_wwcb.yml │ │ │ ├── port_state_def.h │ │ │ ├── prj.conf │ │ │ ├── prj_dongle.conf │ │ │ ├── prj_fast_pair.conf │ │ │ ├── prj_keyboard.conf │ │ │ ├── prj_mcuboot_qspi.conf │ │ │ ├── prj_mcuboot_smp.conf │ │ │ ├── prj_release.conf │ │ │ ├── prj_wwcb.conf │ │ │ ├── sysbuild.conf │ │ │ ├── sysbuild_dongle.conf │ │ │ ├── sysbuild_fast_pair.conf │ │ │ ├── sysbuild_keyboard.conf │ │ │ ├── sysbuild_mcuboot_qspi.conf │ │ │ ├── sysbuild_mcuboot_smp.conf │ │ │ ├── sysbuild_release.conf │ │ │ └── sysbuild_wwcb.conf │ │ ├── nrf52840dongle_nrf52840 │ │ │ ├── app.overlay │ │ │ ├── app_3bleconn.overlay │ │ │ ├── app_4llpmconn.overlay │ │ │ ├── app_common.dtsi │ │ │ ├── app_release_4llpmconn.overlay │ │ │ ├── b0_private.pem │ │ │ ├── ble_discovery_def.h │ │ │ ├── ble_scan_def.h │ │ │ ├── buttons_def.h │ │ │ ├── click_detector_def.h │ │ │ ├── images │ │ │ │ └── b0 │ │ │ │ │ ├── prj.conf │ │ │ │ │ ├── prj_3bleconn.conf │ │ │ │ │ ├── prj_4llpmconn.conf │ │ │ │ │ ├── prj_release.conf │ │ │ │ │ └── prj_release_4llpmconn.conf │ │ │ ├── led_state_def.h │ │ │ ├── pm_static.yml │ │ │ ├── pm_static_3bleconn.yml │ │ │ ├── pm_static_4llpmconn.yml │ │ │ ├── pm_static_release.yml │ │ │ ├── pm_static_release_4llpmconn.yml │ │ │ ├── port_state_def.h │ │ │ ├── prj.conf │ │ │ ├── prj_3bleconn.conf │ │ │ ├── prj_4llpmconn.conf │ │ │ ├── prj_release.conf │ │ │ ├── prj_release_4llpmconn.conf │ │ │ ├── sysbuild.conf │ │ │ ├── sysbuild_3bleconn.conf │ │ │ ├── sysbuild_4llpmconn.conf │ │ │ ├── sysbuild_release.conf │ │ │ └── sysbuild_release_4llpmconn.conf │ │ ├── nrf52840gmouse_nrf52840 │ │ │ ├── app.overlay │ │ │ ├── b0_private.pem │ │ │ ├── battery_def.h │ │ │ ├── buttons_def.h │ │ │ ├── click_detector_def.h │ │ │ ├── hid_keyboard_leds_def.h │ │ │ ├── hid_keymap_def.h │ │ │ ├── images │ │ │ │ ├── b0 │ │ │ │ │ ├── prj.conf │ │ │ │ │ └── prj_release.conf │ │ │ │ └── mcuboot │ │ │ │ │ ├── app.overlay │ │ │ │ │ ├── mcuboot_private.pem │ │ │ │ │ ├── mcuboot_private_fast_pair.pem │ │ │ │ │ ├── prj_fast_pair.conf │ │ │ │ │ ├── prj_mcuboot_smp.conf │ │ │ │ │ └── prj_release_fast_pair.conf │ │ │ ├── led_state_def.h │ │ │ ├── led_state_fast_pair_def.h │ │ │ ├── pm_static.yml │ │ │ ├── pm_static_fast_pair.yml │ │ │ ├── pm_static_mcuboot_smp.yml │ │ │ ├── pm_static_release.yml │ │ │ ├── pm_static_release_fast_pair.yml │ │ │ ├── port_state_def.h │ │ │ ├── prj.conf │ │ │ ├── prj_fast_pair.conf │ │ │ ├── prj_mcuboot_smp.conf │ │ │ ├── prj_release.conf │ │ │ ├── prj_release_fast_pair.conf │ │ │ ├── selector_hw_def.h │ │ │ ├── sysbuild.conf │ │ │ ├── sysbuild_fast_pair.conf │ │ │ ├── sysbuild_mcuboot_smp.conf │ │ │ ├── sysbuild_release.conf │ │ │ └── sysbuild_release_fast_pair.conf │ │ ├── nrf52dmouse_nrf52832 │ │ │ ├── app.overlay │ │ │ ├── battery_def.h │ │ │ ├── buttons_def.h │ │ │ ├── click_detector_def.h │ │ │ ├── hid_keyboard_leds_def.h │ │ │ ├── hid_keymap_def.h │ │ │ ├── pm_static.yml │ │ │ ├── pm_static_release.yml │ │ │ ├── port_state_def.h │ │ │ ├── prj.conf │ │ │ └── prj_release.conf │ │ ├── nrf52kbd_nrf52832 │ │ │ ├── app.overlay │ │ │ ├── b0_private.pem │ │ │ ├── battery_def.h │ │ │ ├── buttons_def.h │ │ │ ├── click_detector_def.h │ │ │ ├── fn_keys_def.h │ │ │ ├── hid_keyboard_leds_def.h │ │ │ ├── hid_keymap_def.h │ │ │ ├── images │ │ │ │ ├── b0 │ │ │ │ │ └── prj_release.conf │ │ │ │ └── mcuboot │ │ │ │ │ ├── app.overlay │ │ │ │ │ ├── mcuboot_private_fast_pair.pem │ │ │ │ │ └── prj_release_fast_pair.conf │ │ │ ├── led_state_def.h │ │ │ ├── led_state_fast_pair_def.h │ │ │ ├── passkey_buttons_def.h │ │ │ ├── pm_static.yml │ │ │ ├── pm_static_release.yml │ │ │ ├── pm_static_release_fast_pair.yml │ │ │ ├── port_state_def.h │ │ │ ├── prj.conf │ │ │ ├── prj_release.conf │ │ │ ├── prj_release_fast_pair.conf │ │ │ ├── sysbuild_release.conf │ │ │ └── sysbuild_release_fast_pair.conf │ │ ├── nrf5340dk_nrf5340_cpuapp │ │ │ ├── app.overlay │ │ │ ├── b0_private.pem │ │ │ ├── ble_discovery_def.h │ │ │ ├── ble_scan_def.h │ │ │ ├── buttons_def.h │ │ │ ├── click_detector_def.h │ │ │ ├── images │ │ │ │ └── b0 │ │ │ │ │ ├── prj.conf │ │ │ │ │ └── prj_release.conf │ │ │ ├── led_state_def.h │ │ │ ├── pm_static.yml │ │ │ ├── pm_static_release.yml │ │ │ ├── port_state_def.h │ │ │ ├── prj.conf │ │ │ ├── prj_release.conf │ │ │ ├── sysbuild.conf │ │ │ └── sysbuild_release.conf │ │ ├── nrf5340dk_nrf5340_cpunet │ │ │ └── images │ │ │ │ └── ipc_radio │ │ │ │ ├── prj.conf │ │ │ │ └── prj_release.conf │ │ ├── nrf54h20dk_nrf54h20_cpuapp │ │ │ ├── app.overlay │ │ │ ├── app_common.dtsi │ │ │ ├── app_dongle.overlay │ │ │ ├── app_release.overlay │ │ │ ├── app_release_dongle.overlay │ │ │ ├── ble_discovery_def.h │ │ │ ├── ble_scan_def.h │ │ │ ├── buttons_def.h │ │ │ ├── click_detector_def.h │ │ │ ├── hid_keyboard_leds_def.h │ │ │ ├── hid_keymap_def.h │ │ │ ├── images │ │ │ │ ├── mcuboot │ │ │ │ │ ├── app.overlay │ │ │ │ │ ├── mcuboot_private.pem │ │ │ │ │ ├── prj.conf │ │ │ │ │ ├── prj_dongle.conf │ │ │ │ │ ├── prj_release.conf │ │ │ │ │ └── prj_release_dongle.conf │ │ │ │ └── uicr │ │ │ │ │ ├── app.overlay │ │ │ │ │ ├── app_dongle.overlay │ │ │ │ │ ├── app_release.overlay │ │ │ │ │ ├── app_release_dongle.overlay │ │ │ │ │ └── prj.conf │ │ │ ├── led_state_def.h │ │ │ ├── memory_map.dtsi │ │ │ ├── port_state_def.h │ │ │ ├── prj.conf │ │ │ ├── prj_dongle.conf │ │ │ ├── prj_release.conf │ │ │ ├── prj_release_dongle.conf │ │ │ ├── sysbuild.conf │ │ │ ├── sysbuild_dongle.conf │ │ │ ├── sysbuild_release.conf │ │ │ └── sysbuild_release_dongle.conf │ │ ├── nrf54h20dk_nrf54h20_cpurad │ │ │ └── images │ │ │ │ └── ipc_radio │ │ │ │ ├── app.overlay │ │ │ │ ├── prj.conf │ │ │ │ ├── prj_dongle.conf │ │ │ │ ├── prj_release.conf │ │ │ │ └── prj_release_dongle.conf │ │ ├── nrf54l15dk_nrf54l05_cpuapp │ │ │ ├── app.overlay │ │ │ ├── app_common.dtsi │ │ │ ├── app_release.overlay │ │ │ ├── app_release_fast_pair.overlay │ │ │ ├── app_release_keyboard.overlay │ │ │ ├── buttons_def.h │ │ │ ├── buttons_sim_def.h │ │ │ ├── click_detector_def.h │ │ │ ├── hid_keyboard_leds_def.h │ │ │ ├── hid_keyboard_leds_def_keyboard.h │ │ │ ├── hid_keymap_def.h │ │ │ ├── hid_keymap_def_keyboard.h │ │ │ ├── images │ │ │ │ └── mcuboot │ │ │ │ │ ├── app.overlay │ │ │ │ │ ├── mcuboot_private.pem │ │ │ │ │ ├── mcuboot_private_fast_pair.pem │ │ │ │ │ ├── prj_release.conf │ │ │ │ │ ├── prj_release_fast_pair.conf │ │ │ │ │ └── prj_release_keyboard.conf │ │ │ ├── led_state_def.h │ │ │ ├── pm_static.yml │ │ │ ├── pm_static_release.yml │ │ │ ├── pm_static_release_fast_pair.yml │ │ │ ├── pm_static_release_keyboard.yml │ │ │ ├── port_state_def.h │ │ │ ├── prj.conf │ │ │ ├── prj_release.conf │ │ │ ├── prj_release_fast_pair.conf │ │ │ ├── prj_release_keyboard.conf │ │ │ ├── sysbuild_release.conf │ │ │ ├── sysbuild_release_fast_pair.conf │ │ │ └── sysbuild_release_keyboard.conf │ │ ├── nrf54l15dk_nrf54l10_cpuapp │ │ │ ├── app.overlay │ │ │ ├── app_common.dtsi │ │ │ ├── app_release.overlay │ │ │ ├── buttons_def.h │ │ │ ├── buttons_sim_def.h │ │ │ ├── click_detector_def.h │ │ │ ├── hid_keyboard_leds_def.h │ │ │ ├── hid_keyboard_leds_def_keyboard.h │ │ │ ├── hid_keymap_def.h │ │ │ ├── hid_keymap_def_keyboard.h │ │ │ ├── images │ │ │ │ └── mcuboot │ │ │ │ │ ├── app.overlay │ │ │ │ │ ├── mcuboot_private.pem │ │ │ │ │ ├── mcuboot_private_fast_pair.pem │ │ │ │ │ ├── prj.conf │ │ │ │ │ ├── prj_fast_pair.conf │ │ │ │ │ ├── prj_keyboard.conf │ │ │ │ │ └── prj_release.conf │ │ │ ├── led_state_def.h │ │ │ ├── pm_static.yml │ │ │ ├── pm_static_fast_pair.yml │ │ │ ├── pm_static_keyboard.yml │ │ │ ├── pm_static_release.yml │ │ │ ├── port_state_def.h │ │ │ ├── prj.conf │ │ │ ├── prj_fast_pair.conf │ │ │ ├── prj_keyboard.conf │ │ │ ├── prj_release.conf │ │ │ ├── sysbuild.conf │ │ │ ├── sysbuild_fast_pair.conf │ │ │ ├── sysbuild_keyboard.conf │ │ │ └── sysbuild_release.conf │ │ ├── nrf54l15dk_nrf54l15_cpuapp │ │ │ ├── app.overlay │ │ │ ├── app_common.dtsi │ │ │ ├── app_release.overlay │ │ │ ├── buttons_def.h │ │ │ ├── buttons_sim_def.h │ │ │ ├── click_detector_def.h │ │ │ ├── hid_keyboard_leds_def.h │ │ │ ├── hid_keyboard_leds_def_keyboard.h │ │ │ ├── hid_keymap_def.h │ │ │ ├── hid_keymap_def_keyboard.h │ │ │ ├── images │ │ │ │ └── mcuboot │ │ │ │ │ ├── app.overlay │ │ │ │ │ ├── mcuboot_private.pem │ │ │ │ │ ├── mcuboot_private_fast_pair.pem │ │ │ │ │ ├── prj.conf │ │ │ │ │ ├── prj_fast_pair.conf │ │ │ │ │ ├── prj_keyboard.conf │ │ │ │ │ └── prj_release.conf │ │ │ ├── led_state_def.h │ │ │ ├── pm_static.yml │ │ │ ├── pm_static_fast_pair.yml │ │ │ ├── pm_static_keyboard.yml │ │ │ ├── pm_static_release.yml │ │ │ ├── port_state_def.h │ │ │ ├── prj.conf │ │ │ ├── prj_fast_pair.conf │ │ │ ├── prj_keyboard.conf │ │ │ ├── prj_release.conf │ │ │ ├── sysbuild.conf │ │ │ ├── sysbuild_fast_pair.conf │ │ │ ├── sysbuild_keyboard.conf │ │ │ └── sysbuild_release.conf │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp │ │ │ ├── app.overlay │ │ │ ├── app_common.dtsi │ │ │ ├── app_llvm.overlay │ │ │ ├── app_ram_load.overlay │ │ │ ├── app_release.overlay │ │ │ ├── app_release_ram_load.overlay │ │ │ ├── buttons_def.h │ │ │ ├── click_detector_def.h │ │ │ ├── hid_keyboard_leds_def.h │ │ │ ├── hid_keymap_def.h │ │ │ ├── images │ │ │ └── mcuboot │ │ │ │ ├── app.overlay │ │ │ │ ├── app_llvm.overlay │ │ │ │ ├── app_ram_load.overlay │ │ │ │ ├── app_release.overlay │ │ │ │ ├── app_release_ram_load.overlay │ │ │ │ ├── mcuboot_private.pem │ │ │ │ ├── mcuboot_private_ram_load.pem │ │ │ │ ├── prj.conf │ │ │ │ ├── prj_llvm.conf │ │ │ │ ├── prj_ram_load.conf │ │ │ │ ├── prj_release.conf │ │ │ │ └── prj_release_ram_load.conf │ │ │ ├── led_state_def.h │ │ │ ├── memory_map_ram_load.dtsi │ │ │ ├── pm_static.yml │ │ │ ├── pm_static_llvm.yml │ │ │ ├── pm_static_release.yml │ │ │ ├── port_state_def.h │ │ │ ├── prj.conf │ │ │ ├── prj_llvm.conf │ │ │ ├── prj_ram_load.conf │ │ │ ├── prj_release.conf │ │ │ ├── prj_release_ram_load.conf │ │ │ ├── sysbuild.conf │ │ │ ├── sysbuild_llvm.conf │ │ │ ├── sysbuild_ram_load.conf │ │ │ ├── sysbuild_release.conf │ │ │ └── sysbuild_release_ram_load.conf │ ├── configuration_options.rst │ ├── description.rst │ ├── doc │ │ ├── bas.rst │ │ ├── battery_charger.rst │ │ ├── battery_meas.rst │ │ ├── ble_adv.rst │ │ ├── ble_adv_ctrl.rst │ │ ├── ble_bond.rst │ │ ├── ble_conn_params.rst │ │ ├── ble_discovery.rst │ │ ├── ble_latency.rst │ │ ├── ble_passkey.rst │ │ ├── ble_qos.rst │ │ ├── ble_scan.rst │ │ ├── ble_state.rst │ │ ├── ble_state_pm.rst │ │ ├── board.rst │ │ ├── buttons.rst │ │ ├── buttons_sim.rst │ │ ├── click_detector.rst │ │ ├── config_channel.rst │ │ ├── constlat.rst │ │ ├── cpu_meas.rst │ │ ├── dev_descr.rst │ │ ├── dfu.rst │ │ ├── dfu_lock.rst │ │ ├── dfu_mcumgr.rst │ │ ├── dvfs.rst │ │ ├── event_propagation.rst │ │ ├── event_rel_modules.rst │ │ ├── factory_reset.rst │ │ ├── failsafe.rst │ │ ├── fast_pair_app.rst │ │ ├── fn_keys.rst │ │ ├── hfclk_lock.rst │ │ ├── hid_eventq.rst │ │ ├── hid_forward.rst │ │ ├── hid_keymap.rst │ │ ├── hid_provider_consumer_ctrl.rst │ │ ├── hid_provider_keyboard.rst │ │ ├── hid_provider_mouse.rst │ │ ├── hid_provider_system_ctrl.rst │ │ ├── hid_reportq.rst │ │ ├── hid_state.rst │ │ ├── hid_state_pm.rst │ │ ├── hids.rst │ │ ├── info.rst │ │ ├── keys_state.rst │ │ ├── led_state.rst │ │ ├── led_stream.rst │ │ ├── leds.rst │ │ ├── main.rst │ │ ├── motion.rst │ │ ├── nrf_profiler_sync.rst │ │ ├── passkey.rst │ │ ├── power_manager.rst │ │ ├── qos.rst │ │ ├── selector.rst │ │ ├── settings_loader.rst │ │ ├── smp.rst │ │ ├── swift_pair_app.rst │ │ ├── usb_state.rst │ │ ├── usb_state_pm.rst │ │ ├── watchdog.rst │ │ └── wheel.rst │ ├── dts │ │ └── bindings │ │ │ └── battery-charger.yaml │ ├── fwupd.rst │ ├── integration.rst │ ├── linker │ │ └── mcuboot_ram_load.ld │ ├── memory_layout.rst │ ├── modules.rst │ ├── nRF21540ek_support.rst │ ├── nrf_desktop.ld │ ├── sample.yaml │ ├── src │ │ ├── events │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.log │ │ │ ├── battery_event.c │ │ │ ├── battery_event.h │ │ │ ├── ble_dongle_peer_event.c │ │ │ ├── ble_dongle_peer_event.h │ │ │ ├── ble_event.c │ │ │ ├── ble_event.h │ │ │ ├── config_event.c │ │ │ ├── config_event.h │ │ │ ├── cpu_load_event.c │ │ │ ├── cpu_load_event.h │ │ │ ├── hid_event.c │ │ │ ├── hid_event.h │ │ │ ├── hid_report_provider_event.c │ │ │ ├── hid_report_provider_event.h │ │ │ ├── hids_event.c │ │ │ ├── hids_event.h │ │ │ ├── motion_event.c │ │ │ ├── motion_event.h │ │ │ ├── passkey_event.c │ │ │ ├── passkey_event.h │ │ │ ├── selector_event.c │ │ │ ├── selector_event.h │ │ │ ├── usb_event.c │ │ │ ├── usb_event.h │ │ │ ├── wheel_event.c │ │ │ └── wheel_event.h │ │ ├── hw_interface │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.battery_charger │ │ │ ├── Kconfig.battery_meas │ │ │ ├── Kconfig.board │ │ │ ├── Kconfig.buttons_sim │ │ │ ├── Kconfig.motion │ │ │ ├── Kconfig.passkey │ │ │ ├── Kconfig.selector │ │ │ ├── Kconfig.wheel │ │ │ ├── battery_charger.c │ │ │ ├── battery_meas.c │ │ │ ├── board.c │ │ │ ├── buttons_sim.c │ │ │ ├── motion_buttons.c │ │ │ ├── motion_sensor.c │ │ │ ├── motion_simulated.c │ │ │ ├── passkey_buttons.c │ │ │ ├── selector_hw.c │ │ │ └── wheel.c │ │ ├── main.c │ │ ├── modules │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.bas │ │ │ ├── Kconfig.ble_adv_ctrl │ │ │ ├── Kconfig.ble_bond │ │ │ ├── Kconfig.ble_conn_params │ │ │ ├── Kconfig.ble_discovery │ │ │ ├── Kconfig.ble_latency │ │ │ ├── Kconfig.ble_passkey │ │ │ ├── Kconfig.ble_qos │ │ │ ├── Kconfig.ble_scan │ │ │ ├── Kconfig.caf_ble_adv.default │ │ │ ├── Kconfig.caf_ble_state.default │ │ │ ├── Kconfig.caf_power_manager.default │ │ │ ├── Kconfig.caf_settings_loader.default │ │ │ ├── Kconfig.config_channel │ │ │ ├── Kconfig.cpu_meas │ │ │ ├── Kconfig.dev_descr │ │ │ ├── Kconfig.dfu_mcumgr │ │ │ ├── Kconfig.dvfs │ │ │ ├── Kconfig.dvfs_state_template │ │ │ ├── Kconfig.factory_reset │ │ │ ├── Kconfig.failsafe │ │ │ ├── Kconfig.fast_pair │ │ │ ├── Kconfig.fn_keys │ │ │ ├── Kconfig.hid_forward │ │ │ ├── Kconfig.hid_provider_consumer_ctrl │ │ │ ├── Kconfig.hid_provider_keyboard │ │ │ ├── Kconfig.hid_provider_mouse │ │ │ ├── Kconfig.hid_provider_system_ctrl │ │ │ ├── Kconfig.hid_state │ │ │ ├── Kconfig.hids │ │ │ ├── Kconfig.hotfixes │ │ │ ├── Kconfig.led_state │ │ │ ├── Kconfig.led_stream │ │ │ ├── Kconfig.nrf_profiler_sync │ │ │ ├── Kconfig.qos │ │ │ ├── Kconfig.swift_pair │ │ │ ├── Kconfig.usb_state │ │ │ ├── Kconfig.watchdog │ │ │ ├── bas.c │ │ │ ├── ble_adv_ctrl.c │ │ │ ├── ble_bond.c │ │ │ ├── ble_conn_params.c │ │ │ ├── ble_discovery.c │ │ │ ├── ble_latency.c │ │ │ ├── ble_passkey.c │ │ │ ├── ble_qos.c │ │ │ ├── ble_scan.c │ │ │ ├── constlat.c │ │ │ ├── cpu_meas.c │ │ │ ├── dev_descr.c │ │ │ ├── dfu.c │ │ │ ├── dfu_mcumgr.c │ │ │ ├── dvfs.c │ │ │ ├── factory_reset.c │ │ │ ├── failsafe.c │ │ │ ├── fast_pair.c │ │ │ ├── fn_keys.c │ │ │ ├── hfclk_lock.c │ │ │ ├── hid_forward.c │ │ │ ├── hid_provider_consumer_ctrl.c │ │ │ ├── hid_provider_keyboard.c │ │ │ ├── hid_provider_mouse.c │ │ │ ├── hid_provider_system_ctrl.c │ │ │ ├── hid_state.c │ │ │ ├── hid_state_pm.c │ │ │ ├── hids.c │ │ │ ├── info.c │ │ │ ├── led_state.c │ │ │ ├── led_stream.c │ │ │ ├── nrf_profiler_sync.c │ │ │ ├── qos.c │ │ │ ├── swift_pair.c │ │ │ ├── usb_state.c │ │ │ ├── usb_state_pm.c │ │ │ └── watchdog.c │ │ └── util │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.adv_prov │ │ │ ├── Kconfig.dfu_lock │ │ │ ├── Kconfig.hid_eventq │ │ │ ├── Kconfig.hid_keymap │ │ │ ├── Kconfig.hid_reportq │ │ │ ├── Kconfig.hwid │ │ │ ├── Kconfig.keys_state │ │ │ ├── bt_le_adv_prov_uuid16.c │ │ │ ├── chmap_filter │ │ │ ├── include │ │ │ │ └── chmap_filter.h │ │ │ ├── lib │ │ │ │ └── cortex-m4 │ │ │ │ │ ├── hard-float │ │ │ │ │ └── libchmapfilt.a │ │ │ │ │ └── soft-float │ │ │ │ │ └── libchmapfilt.a │ │ │ └── license.txt │ │ │ ├── config_channel_transport.c │ │ │ ├── config_channel_transport.h │ │ │ ├── dfu_lock.c │ │ │ ├── dfu_lock.h │ │ │ ├── hid_eventq.c │ │ │ ├── hid_eventq.h │ │ │ ├── hid_keymap.c │ │ │ ├── hid_keymap.h │ │ │ ├── hid_reportq.c │ │ │ ├── hid_reportq.h │ │ │ ├── hwid.c │ │ │ ├── hwid.h │ │ │ ├── keys_state.c │ │ │ └── keys_state.h │ ├── sysbuild │ │ └── CMakeLists.txt │ └── utils.rst └── serial_modem │ └── README.rst ├── boards ├── deprecated.cmake ├── nordic │ ├── common │ │ └── nrfutil_next.board.cmake │ ├── nrf52820dongle │ │ ├── CMakeLists.txt │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.nrf52820dongle │ │ ├── board.c │ │ ├── board.cmake │ │ ├── board.yml │ │ ├── nrf52820dongle_nrf52820.dts │ │ ├── nrf52820dongle_nrf52820.yaml │ │ ├── nrf52820dongle_nrf52820_defconfig │ │ └── pre_dt_board.cmake │ ├── nrf52833dongle │ │ ├── CMakeLists.txt │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.nrf52833dongle │ │ ├── board.c │ │ ├── board.cmake │ │ ├── board.yml │ │ ├── nrf52833dongle_nrf52833.dts │ │ ├── nrf52833dongle_nrf52833.yaml │ │ ├── nrf52833dongle_nrf52833_defconfig │ │ └── pre_dt_board.cmake │ ├── nrf52840gmouse │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.nrf52840gmouse │ │ ├── board.cmake │ │ ├── board.yml │ │ ├── nrf52840gmouse_nrf52840-pinctrl.dtsi │ │ ├── nrf52840gmouse_nrf52840.dts │ │ ├── nrf52840gmouse_nrf52840.yaml │ │ ├── nrf52840gmouse_nrf52840_defconfig │ │ └── pre_dt_board.cmake │ ├── nrf52dmouse │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.nrf52dmouse │ │ ├── board.cmake │ │ ├── board.yml │ │ ├── nrf52dmouse_nrf52832-pinctrl.dtsi │ │ ├── nrf52dmouse_nrf52832.dts │ │ ├── nrf52dmouse_nrf52832.yaml │ │ ├── nrf52dmouse_nrf52832_defconfig │ │ └── pre_dt_board.cmake │ ├── nrf52kbd │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.nrf52kbd │ │ ├── board.cmake │ │ ├── board.yml │ │ ├── nrf52kbd_nrf52832-pinctrl.dtsi │ │ ├── nrf52kbd_nrf52832.dts │ │ ├── nrf52kbd_nrf52832.yaml │ │ ├── nrf52kbd_nrf52832_defconfig │ │ └── pre_dt_board.cmake │ ├── nrf54ls05dk │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.nrf54ls05dk │ │ ├── board.cmake │ │ ├── board.yml │ │ ├── nrf54ls05b_cpuapp_common.dtsi │ │ ├── nrf54ls05dk_nrf54ls05b-common.dtsi │ │ ├── nrf54ls05dk_nrf54ls05b-pinctrl.dtsi │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.dts │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp_0_0_0.overlay │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp_0_0_0.yaml │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp_0_1_0.overlay │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp_0_1_0.yaml │ │ └── nrf54ls05dk_nrf54ls05b_cpuapp_defconfig │ ├── nrf54lv10dk │ │ ├── Kconfig │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.nrf54lv10dk │ │ ├── board.cmake │ │ ├── board.yml │ │ ├── nrf54lv10a_cpuapp_common.dtsi │ │ ├── nrf54lv10dk_nrf54lv10a-common.dtsi │ │ ├── nrf54lv10dk_nrf54lv10a-pinctrl.dtsi │ │ ├── nrf54lv10dk_nrf54lv10a_common_0_0_0.overlay │ │ ├── nrf54lv10dk_nrf54lv10a_common_0_2_0.overlay │ │ ├── nrf54lv10dk_nrf54lv10a_common_0_7_0.overlay │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.dts │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_0_0_0.overlay │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_0_0_0.yaml │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_0_2_0.overlay │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_0_2_0.yaml │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_0_7_0.overlay │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_0_7_0.yaml │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_defconfig │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns.dts │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns.yaml │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns_0_0_0.overlay │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns_0_2_0.overlay │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns_0_7_0.overlay │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns_defconfig │ │ ├── nrf54lv10dk_nrf54lv10a_cpuflpr.dts │ │ ├── nrf54lv10dk_nrf54lv10a_cpuflpr_0_0_0.overlay │ │ ├── nrf54lv10dk_nrf54lv10a_cpuflpr_0_0_0.yaml │ │ ├── nrf54lv10dk_nrf54lv10a_cpuflpr_0_2_0.overlay │ │ ├── nrf54lv10dk_nrf54lv10a_cpuflpr_0_2_0.yaml │ │ ├── nrf54lv10dk_nrf54lv10a_cpuflpr_0_7_0.overlay │ │ ├── nrf54lv10dk_nrf54lv10a_cpuflpr_0_7_0.yaml │ │ └── nrf54lv10dk_nrf54lv10a_cpuflpr_defconfig │ ├── nrf7120pdk │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.nrf7120pdk │ │ ├── board.cmake │ │ ├── board.yml │ │ ├── nrf7120_cpuapp_common.dtsi │ │ ├── nrf7120pdk_nrf7120-common.dtsi │ │ ├── nrf7120pdk_nrf7120-emu-pinctrl.dtsi │ │ ├── nrf7120pdk_nrf7120-fpga-pinctrl.dtsi │ │ ├── nrf7120pdk_nrf7120-pinctrl.dtsi │ │ ├── nrf7120pdk_nrf7120_cpuapp.dts │ │ ├── nrf7120pdk_nrf7120_cpuapp.yaml │ │ ├── nrf7120pdk_nrf7120_cpuapp_defconfig │ │ ├── nrf7120pdk_nrf7120_cpuapp_emu.dts │ │ ├── nrf7120pdk_nrf7120_cpuapp_emu.yaml │ │ ├── nrf7120pdk_nrf7120_cpuapp_emu_defconfig │ │ ├── nrf7120pdk_nrf7120_cpuapp_fpga.dts │ │ ├── nrf7120pdk_nrf7120_cpuapp_fpga.yaml │ │ ├── nrf7120pdk_nrf7120_cpuapp_fpga_defconfig │ │ ├── nrf7120pdk_nrf7120_cpuapp_ns.dts │ │ ├── nrf7120pdk_nrf7120_cpuapp_ns.yaml │ │ ├── nrf7120pdk_nrf7120_cpuapp_ns_defconfig │ │ ├── nrf7120pdk_nrf7120_cpuflpr.dts │ │ ├── nrf7120pdk_nrf7120_cpuflpr.yaml │ │ ├── nrf7120pdk_nrf7120_cpuflpr_defconfig │ │ ├── nrf7120pdk_nrf7120_cpuflpr_xip.dts │ │ ├── nrf7120pdk_nrf7120_cpuflpr_xip.yaml │ │ └── nrf7120pdk_nrf7120_cpuflpr_xip_defconfig │ ├── thingy91 │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.sysbuild │ │ ├── Kconfig.thingy91 │ │ ├── adp5360_init.c │ │ ├── board.cmake │ │ ├── board.yml │ │ ├── dts │ │ │ └── bindings │ │ │ │ └── nordic,thingy91-nrf52840-reset.yaml │ │ ├── nrf52840_reset.c │ │ ├── pre_dt_board.cmake │ │ ├── sysbuild.cmake │ │ ├── thingy91_nrf52840-pinctrl.dtsi │ │ ├── thingy91_nrf52840.dts │ │ ├── thingy91_nrf52840.yaml │ │ ├── thingy91_nrf52840_defconfig │ │ ├── thingy91_nrf9160.dts │ │ ├── thingy91_nrf9160.yaml │ │ ├── thingy91_nrf9160_common-pinctrl.dtsi │ │ ├── thingy91_nrf9160_common.dtsi │ │ ├── thingy91_nrf9160_defconfig │ │ ├── thingy91_nrf9160_ns.dts │ │ ├── thingy91_nrf9160_ns.yaml │ │ ├── thingy91_nrf9160_ns_defconfig │ │ ├── thingy91_nrf9160_partition_conf.dtsi │ │ ├── thingy91_pm_static.yml │ │ ├── thingy91_pm_static_lwm2m_carrier.yml │ │ └── thingy91_pm_static_secure_boot.yml │ └── thingy91x │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.defconfig.nrf5340 │ │ ├── Kconfig.defconfig.nrf9151 │ │ ├── Kconfig.sysbuild │ │ ├── Kconfig.thingy91x │ │ ├── bmm350_init_minimal.c │ │ ├── board.cmake │ │ ├── board.yml │ │ ├── dts │ │ ├── thingy91x_no_buses.dtsi │ │ ├── thingy91x_nrf53_wifi.dtsi │ │ └── thingy91x_wifi.dtsi │ │ ├── nrf70_support.c │ │ ├── nsib_signing_key.pem │ │ ├── nsib_signing_key_nrf5340.pem │ │ ├── pre_dt_board.cmake │ │ ├── sysbuild.cmake │ │ ├── thingy91x_common.dtsi │ │ ├── thingy91x_nrf5340_cpuapp.dts │ │ ├── thingy91x_nrf5340_cpuapp.yaml │ │ ├── thingy91x_nrf5340_cpuapp_common-pinctrl.dtsi │ │ ├── thingy91x_nrf5340_cpuapp_common.dtsi │ │ ├── thingy91x_nrf5340_cpuapp_defconfig │ │ ├── thingy91x_nrf5340_cpuapp_ns.dts │ │ ├── thingy91x_nrf5340_cpuapp_ns.yaml │ │ ├── thingy91x_nrf5340_cpuapp_ns_defconfig │ │ ├── thingy91x_nrf5340_cpunet.dts │ │ ├── thingy91x_nrf5340_cpunet.yaml │ │ ├── thingy91x_nrf5340_cpunet_defconfig │ │ ├── thingy91x_nrf5340_pm_static.yml │ │ ├── thingy91x_nrf5340_pm_static_ext_flash.yml │ │ ├── thingy91x_nrf5340_pm_static_ext_flash_no_tfm.yml │ │ ├── thingy91x_nrf5340_pm_static_no_tfm.yml │ │ ├── thingy91x_nrf9151.dts │ │ ├── thingy91x_nrf9151.yaml │ │ ├── thingy91x_nrf9151_common-pinctrl.dtsi │ │ ├── thingy91x_nrf9151_common.dtsi │ │ ├── thingy91x_nrf9151_defconfig │ │ ├── thingy91x_nrf9151_ns.dts │ │ ├── thingy91x_nrf9151_ns.yaml │ │ ├── thingy91x_nrf9151_ns_defconfig │ │ ├── thingy91x_nrf9151_pm_static.yml │ │ ├── thingy91x_nrf9151_pm_static_no_ext_flash.yml │ │ ├── thingy91x_nrf9151_pm_static_no_ext_flash_no_tfm.yml │ │ └── thingy91x_nrf9151_pm_static_no_tfm.yml ├── sercomm │ └── tpm530mevk │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.tpm530mevk │ │ ├── board.cmake │ │ ├── board.yml │ │ ├── pre_dt_board.cmake │ │ ├── tpm530mevk_tpm530m.dts │ │ ├── tpm530mevk_tpm530m.yaml │ │ ├── tpm530mevk_tpm530m_common-pinctrl.dtsi │ │ ├── tpm530mevk_tpm530m_common.dtsi │ │ ├── tpm530mevk_tpm530m_defconfig │ │ ├── tpm530mevk_tpm530m_ns.dts │ │ ├── tpm530mevk_tpm530m_ns.yaml │ │ └── tpm530mevk_tpm530m_ns_defconfig └── shields │ ├── nrf21540ek │ ├── Kconfig.shield │ ├── boards │ │ ├── nrf52833dk_nrf52833.overlay │ │ ├── nrf52840dk_nrf52840.overlay │ │ ├── nrf5340_audio_dk_nrf5340_cpuapp.overlay │ │ ├── nrf5340_audio_dk_nrf5340_cpunet.overlay │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ └── nrf5340dk_nrf5340_cpunet.overlay │ ├── common │ │ ├── arduino_compatible.overlay │ │ └── arduino_compatible_fwd.overlay │ ├── nrf21540ek.overlay │ └── nrf21540ek_fwd.overlay │ ├── nrf2220ek │ ├── Kconfig.shield │ ├── boards │ │ ├── nrf52833dk_nrf52833.overlay │ │ ├── nrf52840dk_nrf52840.overlay │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ ├── nrf5340dk_nrf5340_cpunet.overlay │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ ├── common │ │ ├── arduino_compatible.overlay │ │ └── arduino_compatible_fwd.overlay │ ├── nrf2220ek.overlay │ └── nrf2220ek_fwd.overlay │ ├── nrf2240ek │ ├── Kconfig.shield │ ├── boards │ │ ├── nrf52833dk_nrf52833.conf │ │ ├── nrf52833dk_nrf52833.overlay │ │ ├── nrf52840dk_nrf52840.conf │ │ ├── nrf52840dk_nrf52840.overlay │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ ├── nrf5340dk_nrf5340_cpunet.conf │ │ ├── nrf5340dk_nrf5340_cpunet.overlay │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ ├── common │ │ ├── arduino_compatible.overlay │ │ └── arduino_compatible_fwd.overlay │ ├── nrf2240ek.overlay │ └── nrf2240ek_fwd.overlay │ ├── nrf7002eb_interposer_p1 │ ├── Kconfig.shield │ ├── boards │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ ├── nrf7002eb_interposer_p1.overlay │ ├── nrf7002eb_interposer_p1_gpio_map_1.dtsi │ └── nrf7002eb_interposer_p1_gpio_map_2.dtsi │ ├── pca63565 │ ├── Kconfig.shield │ ├── boards │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ ├── nrf54l15dk_nrf54l15_cpuflpr.overlay │ │ ├── nrf54l_vpr_launcher.overlay │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ └── nrf54lm20dk_nrf54lm20a_cpuflpr.overlay │ └── pca63565.overlay │ └── pca63566 │ ├── Kconfig.shield │ ├── boards │ ├── nrf54h20dk_nrf54h20_common.dtsi │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ ├── nrf54h20dk_nrf54h20_cpuppr.overlay │ └── pca63566_fwd │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ ├── doc │ └── index.rst │ ├── pca63566.overlay │ └── pca63566_fwd.overlay ├── cmake ├── boilerplate.cmake ├── commit.h.in ├── dfu_extra.cmake ├── dfu_multi_image.cmake ├── extensions.cmake ├── fw_zip.cmake ├── gen_commit_h.cmake ├── hpf.cmake ├── hpf_asm_check.cmake ├── hpf_asm_install.cmake ├── mesh_dfu_metadata.cmake ├── modules │ └── kconfig.cmake ├── partition_manager.cmake ├── sysbuild │ ├── b0_mcuboot_signing.cmake │ ├── b0_packaging.cmake │ ├── bootconf.cmake │ ├── bootloader_dts_utils.cmake │ ├── debug_keys.cmake │ ├── fast_pair │ │ ├── hex.cmake │ │ └── pm_partition_validation.cmake │ ├── generate_default_keyfile.cmake │ ├── hpf.cmake │ ├── image_signing.cmake │ ├── image_signing_extra.cmake │ ├── image_signing_firmware_loader.cmake │ ├── image_signing_nrf54h20.cmake │ ├── image_signing_nrf700x.cmake │ ├── image_signing_split.cmake │ ├── lwm2m_carrier_divided_dfu.cmake │ ├── mcuboot_manifest.cmake │ ├── mcuboot_nrf54h20.cmake │ ├── modules │ │ └── ncs_sysbuild_extensions.cmake │ ├── nrf700x.cmake │ ├── partition_manager.cmake │ ├── provision_hex.cmake │ ├── sign.cmake │ ├── sign_nrf54h20.cmake │ └── zip.cmake ├── toolchain │ └── llvm │ │ └── Kconfig.defconfig ├── version.cmake └── version_app.cmake ├── doc ├── CMakeLists.txt ├── _doxygen │ ├── doxygen-awesome-darkmode-toggle.js │ ├── doxygen-awesome-interactive-toc.js │ ├── doxygen-awesome-paragraph-link.js │ ├── doxygen-awesome.css │ ├── header.html │ └── logo.png ├── _extensions │ ├── inventory_builder.py │ ├── manifest_revisions_table.py │ ├── ncs_include │ │ ├── __init__.py │ │ └── ncs_include.py │ ├── ncs_tool_versions.py │ ├── options_from_kconfig.py │ ├── page_filter.py │ ├── software_maturity_table.py │ ├── static │ │ ├── page_filter.css │ │ └── page_filter.mjs │ ├── table_from_rows.py │ └── warnings_filter.py ├── _scripts │ ├── fix_markdown.py │ └── merge_search_indexes.py ├── _static │ ├── css │ │ ├── kconfig.css │ │ ├── matter.css │ │ ├── nrf.css │ │ ├── nrfxlib.css │ │ ├── tfm.css │ │ └── zephyr.css │ ├── html │ │ └── index.html │ ├── images │ │ ├── dropdown.svg │ │ └── nordic.svg │ └── js │ │ └── gtm-insert.js ├── _utils │ ├── redirects.py │ └── utils.py ├── _zoomin │ ├── footer_patch.py │ ├── ncs.custom.properties │ ├── ncs.tags.yml │ ├── nrf.apis.custom.properties │ ├── nrf.apis.tags.yml │ ├── nrfx.apis.custom.properties │ ├── nrfx.apis.tags.yml │ ├── nrfxlib.apis.custom.properties │ ├── nrfxlib.apis.tags.yml │ ├── wifi.apis.custom.properties │ ├── wifi.apis.tags.yml │ ├── zephyr.apis.custom.properties │ └── zephyr.apis.tags.yml ├── internal │ └── conf.py ├── kconfig │ ├── conf.py │ ├── index.rst │ └── regex.rst ├── matter │ ├── conf.py │ ├── index.rst │ └── known-warnings.txt ├── mcuboot │ ├── conf.py │ ├── index-ncs.rst │ ├── links.txt │ ├── readme-ncs.rst │ ├── shortcuts.txt │ ├── unused_files.rst │ └── wrapper.rst ├── nrf │ ├── 404.rst │ ├── app_dev.rst │ ├── app_dev │ │ ├── board_names.rst │ │ ├── bootloaders_dfu │ │ │ ├── dfu_tools_mcumgr_cli.rst │ │ │ ├── images │ │ │ │ ├── bootloader_memory_layout.svg │ │ │ │ ├── bootloader_memory_layout_onestage.png │ │ │ │ └── bootloader_memory_layout_onestage.svg │ │ │ ├── index.rst │ │ │ ├── mcuboot_image_compression.rst │ │ │ ├── mcuboot_nsib │ │ │ │ ├── bootloader.rst │ │ │ │ ├── bootloader_adding_sysbuild.rst │ │ │ │ ├── bootloader_config.rst │ │ │ │ ├── bootloader_dfu_image_versions.rst │ │ │ │ ├── bootloader_downgrade_protection.rst │ │ │ │ ├── bootloader_main_config.rst │ │ │ │ ├── bootloader_mcuboot_nsib.rst │ │ │ │ ├── bootloader_partitioning.rst │ │ │ │ ├── bootloader_quick_start.rst │ │ │ │ └── bootloader_signature_keys.rst │ │ │ ├── mcuboot_serial_recovery.rst │ │ │ ├── qspi_xip_split_image.rst │ │ │ └── sysbuild_image_ids.rst │ │ ├── companion_components.rst │ │ ├── config_and_build │ │ │ ├── building.rst │ │ │ ├── cmake │ │ │ │ └── index.rst │ │ │ ├── config_and_build_system.rst │ │ │ ├── hardware │ │ │ │ ├── add_new_driver.rst │ │ │ │ ├── add_new_led_example.rst │ │ │ │ ├── index.rst │ │ │ │ ├── pin_control.rst │ │ │ │ └── use_gpio_pin_directly.rst │ │ │ ├── index.rst │ │ │ ├── kconfig │ │ │ │ └── index.rst │ │ │ ├── output_build_files.rst │ │ │ └── sysbuild │ │ │ │ ├── index.rst │ │ │ │ ├── sysbuild_configuring_west.rst │ │ │ │ ├── sysbuild_forced_options.rst │ │ │ │ ├── sysbuild_images.rst │ │ │ │ └── zephyr_samples_sysbuild.rst │ │ ├── create_application.rst │ │ ├── data_storage.rst │ │ ├── device_guides │ │ │ ├── coprocessors │ │ │ │ ├── assembly_management.rst │ │ │ │ ├── event_handling.rst │ │ │ │ ├── fault_handling.rst │ │ │ │ ├── hpf.rst │ │ │ │ ├── images │ │ │ │ │ └── hpf_assembly_build_time_management_process.svg │ │ │ │ ├── index.rst │ │ │ │ ├── power_management.rst │ │ │ │ ├── rt_peripherals.rst │ │ │ │ └── ug_hpf_softperipherals_comparison.rst │ │ │ ├── custom │ │ │ │ ├── defining_custom_board.rst │ │ │ │ ├── index.rst │ │ │ │ └── programming_custom_board.rst │ │ │ ├── fem │ │ │ │ ├── 21540ek_dev_guide.rst │ │ │ │ ├── fem_incomplete_connections.rst │ │ │ │ ├── fem_mpsl_fem_only.rst │ │ │ │ ├── fem_nRF21540_optional_properties.rst │ │ │ │ ├── fem_nrf21540_gpio.rst │ │ │ │ ├── fem_nrf21540_gpio_spi.rst │ │ │ │ ├── fem_power_models.rst │ │ │ │ ├── fem_simple_gpio.rst │ │ │ │ ├── fem_software_support.rst │ │ │ │ ├── images │ │ │ │ │ ├── coex_generic_3pin_pta.svg │ │ │ │ │ ├── nrf21540_builtin_model_10db_freq_input_gain.png │ │ │ │ │ ├── nrf21540_builtin_model_10db_freq_temp_gain.png │ │ │ │ │ ├── nrf21540_builtin_model_10db_freq_volt_gain.png │ │ │ │ │ ├── nrf21540_builtin_model_20db_freq_input_gain.png │ │ │ │ │ ├── nrf21540_builtin_model_20db_freq_temp_gain.png │ │ │ │ │ ├── nrf21540_builtin_model_20db_freq_volt_gain.png │ │ │ │ │ └── nrf21540ek.png │ │ │ │ └── index.rst │ │ │ ├── nrf52 │ │ │ │ ├── building.rst │ │ │ │ ├── features.rst │ │ │ │ ├── fota_update.rst │ │ │ │ └── index.rst │ │ │ ├── nrf53 │ │ │ │ ├── building_nrf53.rst │ │ │ │ ├── features_nrf53.rst │ │ │ │ ├── fota_update_nrf5340.rst │ │ │ │ ├── images │ │ │ │ │ ├── ieee802154_nrf53_multiprot_design.svg │ │ │ │ │ ├── ieee802154_nrf53_singleprot_design.svg │ │ │ │ │ └── nrf5340_static_partition_manager_slots.svg │ │ │ │ ├── index.rst │ │ │ │ ├── logging_nrf5340.rst │ │ │ │ ├── qspi_xip_guide_nrf5340.rst │ │ │ │ ├── serial_recovery.rst │ │ │ │ └── simultaneous_multi_image_dfu_nrf5340.rst │ │ │ ├── nrf54h │ │ │ │ ├── images │ │ │ │ │ ├── cpuapp_include_tree.svg │ │ │ │ │ ├── jlink788j_install.png │ │ │ │ │ ├── jlink794e_install.png │ │ │ │ │ ├── nRF54H20_Domains.svg │ │ │ │ │ ├── nRF54H20_appcore.svg │ │ │ │ │ ├── nRF54H20_bootsequence_default.svg │ │ │ │ │ ├── nRF54H20_bootsequence_default_mcuboot.svg │ │ │ │ │ ├── nRF54H20_bootsequence_secondary_firmware.svg │ │ │ │ │ ├── nRF54H20_globaldomain.svg │ │ │ │ │ ├── nRF54H20_lifecycle_states.svg │ │ │ │ │ ├── nRF54H20_memorymap.svg │ │ │ │ │ ├── nRF54H20_radiocore.svg │ │ │ │ │ ├── nRF7002ek.png │ │ │ │ │ ├── nrf54h20_IPC_layers.svg │ │ │ │ │ ├── nrf54h20_arm_to_vpr.svg │ │ │ │ │ ├── nrf54h20_cpu_to_cpu.svg │ │ │ │ │ ├── nrf54h20_memory_map_app.png │ │ │ │ │ ├── nrf54h20_memory_map_app.svg │ │ │ │ │ ├── nrf54h20_memory_map_bbproc.svg │ │ │ │ │ ├── nrf54h20_memory_map_mram10.png │ │ │ │ │ ├── nrf54h20_memory_map_mram10.svg │ │ │ │ │ ├── nrf54h20_memory_map_mram11.png │ │ │ │ │ ├── nrf54h20_memory_map_mram11.svg │ │ │ │ │ ├── nrf54h20_memory_map_radio.png │ │ │ │ │ ├── nrf54h20_memory_map_radio.svg │ │ │ │ │ ├── nrf54h20_memory_map_ram0x.png │ │ │ │ │ ├── nrf54h20_memory_map_ram0x.svg │ │ │ │ │ ├── nrf54h20_memory_map_ram20.png │ │ │ │ │ ├── nrf54h20_memory_map_ram20.svg │ │ │ │ │ ├── nrf54h20_memory_map_ram21.png │ │ │ │ │ ├── nrf54h20_memory_map_ram21.svg │ │ │ │ │ ├── nrf54h20_memory_map_ram3x.png │ │ │ │ │ ├── nrf54h20_memory_map_ram3x.svg │ │ │ │ │ ├── nrf54h20_memory_map_secure.png │ │ │ │ │ ├── nrf54h20_memory_map_secure.svg │ │ │ │ │ ├── nrf54h20_memorymap.png │ │ │ │ │ ├── thread_platform_design_nRF54h20.svg │ │ │ │ │ └── thread_platform_design_nRF54h20_multi.svg │ │ │ │ ├── index.rst │ │ │ │ ├── ug_nrf54h20_architecture.rst │ │ │ │ ├── ug_nrf54h20_architecture_boot.rst │ │ │ │ ├── ug_nrf54h20_architecture_clockman.rst │ │ │ │ ├── ug_nrf54h20_architecture_cpu.rst │ │ │ │ ├── ug_nrf54h20_architecture_ipc.rst │ │ │ │ ├── ug_nrf54h20_architecture_lifecycle.rst │ │ │ │ ├── ug_nrf54h20_architecture_memory.rst │ │ │ │ ├── ug_nrf54h20_architecture_pinmap.rst │ │ │ │ ├── ug_nrf54h20_architecture_pm.rst │ │ │ │ ├── ug_nrf54h20_architecture_reset.rst │ │ │ │ ├── ug_nrf54h20_configuration.rst │ │ │ │ ├── ug_nrf54h20_custom_pcb.rst │ │ │ │ ├── ug_nrf54h20_debugging.rst │ │ │ │ ├── ug_nrf54h20_flpr.rst │ │ │ │ ├── ug_nrf54h20_gs.rst │ │ │ │ ├── ug_nrf54h20_ironside.rst │ │ │ │ ├── ug_nrf54h20_keys.rst │ │ │ │ ├── ug_nrf54h20_logging.rst │ │ │ │ ├── ug_nrf54h20_mcuboot_dfu.rst │ │ │ │ ├── ug_nrf54h20_nrf7002ek.rst │ │ │ │ ├── ug_nrf54h20_pm_optimization.rst │ │ │ │ ├── ug_nrf54h20_ppr.rst │ │ │ │ └── ug_nrf54h_ecies_x25519.rst │ │ │ ├── nrf54l │ │ │ │ ├── building_nrf54l.rst │ │ │ │ ├── cryptography.rst │ │ │ │ ├── dfu_config.rst │ │ │ │ ├── ecies_x25519.rst │ │ │ │ ├── fota_update.rst │ │ │ │ ├── index.rst │ │ │ │ ├── kmu_basics.rst │ │ │ │ ├── kmu_provision.rst │ │ │ │ ├── nrf54l_signing_with_payload.rst │ │ │ │ ├── otp_map_nrf54l.rst │ │ │ │ ├── pinmap.rst │ │ │ │ ├── vpr_flpr.rst │ │ │ │ └── zms.rst │ │ │ ├── nrf70 │ │ │ │ ├── constrained.rst │ │ │ │ ├── features.rst │ │ │ │ ├── fw_patches_ext_flash.rst │ │ │ │ ├── images │ │ │ │ │ ├── nRF7002eb.png │ │ │ │ │ ├── nRF7002eb2.png │ │ │ │ │ ├── nRF7002eb_Castellated_edge.png │ │ │ │ │ ├── nRF7002ek.png │ │ │ │ │ ├── nrf70_ug_overview.svg │ │ │ │ │ ├── power_profiler2_pc_nrf7002_dk.png │ │ │ │ │ ├── power_profiler_dtim_output.png │ │ │ │ │ ├── power_profiler_dtim_wakeup.png │ │ │ │ │ └── power_profiler_twt.png │ │ │ │ ├── index.rst │ │ │ │ ├── nrf7002eb2_dev_guide.rst │ │ │ │ ├── nrf7002eb_dev_guide.rst │ │ │ │ ├── nrf7002ek_dev_guide.rst │ │ │ │ ├── nrf70_fw_patch_update.rst │ │ │ │ ├── power_profiling.rst │ │ │ │ ├── soc_combo.csv │ │ │ │ ├── stack_combo.csv │ │ │ │ ├── stack_partitioning.rst │ │ │ │ └── wifi_advanced_security_modes.rst │ │ │ ├── nrf91 │ │ │ │ ├── images │ │ │ │ │ ├── cellularmonitor_navigationcertificatemanager.png │ │ │ │ │ ├── cellularmonitor_navigationcertificatemanager_nrf9151.png │ │ │ │ │ ├── cellularmonitor_open_serial_terminal.png │ │ │ │ │ ├── cellularmonitor_open_serial_terminal_nrf9151.png │ │ │ │ │ ├── cellularmonitor_programassettracker_nrf9160.png │ │ │ │ │ ├── cellularmonitor_programdevice_nrf9160.png │ │ │ │ │ ├── cellularmonitor_selectdevice1_nrf9160.png │ │ │ │ │ ├── cellularmonitor_selectdevice_nrf9151.png │ │ │ │ │ ├── cellularmonitor_selectdevice_nrf9160.png │ │ │ │ │ ├── nrf91_ug_overview.svg │ │ │ │ │ ├── nrfcloud_activating_sim.png │ │ │ │ │ ├── nrfcloud_add_devices.png │ │ │ │ │ ├── nrfcloud_add_lte_device.png │ │ │ │ │ ├── nrfcloud_addsim.png │ │ │ │ │ ├── nrfcloud_devices.png │ │ │ │ │ ├── nrfcloud_jitpcertificates.png │ │ │ │ │ ├── nrfcloud_selectdevicetype.png │ │ │ │ │ ├── nrfcloud_simcards.png │ │ │ │ │ └── power_consumption.png │ │ │ │ ├── index.rst │ │ │ │ ├── nrf9160_external_flash.rst │ │ │ │ ├── nrf91_board_controllers.rst │ │ │ │ ├── nrf91_building.rst │ │ │ │ ├── nrf91_cloud_certificate.rst │ │ │ │ ├── nrf91_cloud_connecting.rst │ │ │ │ ├── nrf91_dk_updating_fw_programmer.rst │ │ │ │ ├── nrf91_features.rst │ │ │ │ ├── nrf91_programming.rst │ │ │ │ ├── nrf91_snippet.rst │ │ │ │ └── nrf91_testing.rst │ │ │ ├── pmic │ │ │ │ ├── index.rst │ │ │ │ ├── npm1300.rst │ │ │ │ ├── npm1304.rst │ │ │ │ └── npm2100.rst │ │ │ ├── thingy53 │ │ │ │ ├── building_thingy53.rst │ │ │ │ ├── images │ │ │ │ │ ├── thingy53_antenna_connections.svg │ │ │ │ │ ├── thingy53_application_info.png │ │ │ │ │ ├── thingy53_nrf5340_dk.webp │ │ │ │ │ ├── thingy53_progress_wheel.png │ │ │ │ │ └── thingy53_sample_list.png │ │ │ │ ├── index.rst │ │ │ │ ├── thingy53_application_guide.rst │ │ │ │ └── thingy53_precompiled.rst │ │ │ ├── thingy91 │ │ │ │ ├── images │ │ │ │ │ ├── nrfcloud_add_devices.png │ │ │ │ │ ├── nrfcloud_add_lte_device.png │ │ │ │ │ ├── nrfcloud_devices.png │ │ │ │ │ └── nrfcloud_selectdevicetype.png │ │ │ │ ├── index.rst │ │ │ │ ├── thingy91_building_programming.rst │ │ │ │ ├── thingy91_cloud_connecting.rst │ │ │ │ ├── thingy91_connecting.rst │ │ │ │ ├── thingy91_features.rst │ │ │ │ └── thingy91_updating_fw_celmon.rst │ │ │ ├── thingy91x │ │ │ │ ├── index.rst │ │ │ │ ├── thingy91x_building_programming.rst │ │ │ │ ├── thingy91x_features.rst │ │ │ │ ├── thingy91x_recover_to_factory_firmware.rst │ │ │ │ └── thingy91x_updating_fw_programmer.rst │ │ │ └── wifi_coex.rst │ │ └── programming.rst │ ├── applications.rst │ ├── conf.py │ ├── dev_model_and_contributions.rst │ ├── dev_model_and_contributions │ │ ├── adding_code.rst │ │ ├── code_base.rst │ │ ├── contributions.rst │ │ ├── documentation.rst │ │ ├── documentation │ │ │ ├── build.rst │ │ │ ├── doc_build_process.rst │ │ │ ├── structure.rst │ │ │ ├── styleguide.rst │ │ │ └── templates.rst │ │ ├── images │ │ │ └── ncs-west-repos.svg │ │ ├── licenses.rst │ │ ├── managing_code.rst │ │ └── ncs_distro.rst │ ├── drivers.rst │ ├── drivers │ │ ├── bh1749.rst │ │ ├── bme68x_iaq.rst │ │ ├── entropy_cc3xx.rst │ │ ├── eth_rtt.rst │ │ ├── hw_cc3xx.rst │ │ ├── mspi_sqspi.rst │ │ ├── paw3212.rst │ │ ├── pmw3360.rst │ │ ├── sensor_sim.rst │ │ ├── sensor_stub.rst │ │ ├── uart_ipc.rst │ │ ├── uart_nrf_sw_lpuart.rst │ │ ├── wifi.rst │ │ └── wifi │ │ │ ├── low_level_api.rst │ │ │ ├── nrf70_native.rst │ │ │ └── nrf70_portable.rst │ ├── external_comp │ │ ├── avsystem.rst │ │ ├── bt_fast_pair │ │ │ ├── adv_manager.rst │ │ │ ├── core.rst │ │ │ └── index.rst │ │ ├── coremark.rst │ │ ├── dult.rst │ │ ├── edge_impulse.rst │ │ ├── images │ │ │ ├── Memfault_architecture.svg │ │ │ ├── avsystem_integration.svg │ │ │ ├── avsystem_integration_agnss_location.svg │ │ │ ├── avsystem_integration_cell_location.svg │ │ │ ├── ei_api_key.png │ │ │ └── ei_project_id.png │ │ ├── memfault.rst │ │ └── nrf_cloud.rst │ ├── glossary.rst │ ├── gsg_guides.rst │ ├── images │ │ ├── DevAcademy.svg │ │ ├── DevAcademy_primary.svg │ │ ├── DevZone.svg │ │ ├── advanced_configuration.png │ │ ├── ant_diversity_interface.svg │ │ ├── app_event_manager_profiling_sample.png │ │ ├── app_event_manager_profiling_sample_zoom.png │ │ ├── aws_matter_integration.svg │ │ ├── aws_matter_interaction.svg │ │ ├── aws_mqtt_test_client.PNG │ │ ├── aws_s3_bucket_permissions.png │ │ ├── b0_flash_layout.svg │ │ ├── b0_mcuboot_flash_layout.svg │ │ ├── bt_central_hids_nrfc_ad.png │ │ ├── bt_dtm_dut.svg │ │ ├── bt_dtm_engine.svg │ │ ├── bt_fast_pair_discoverable_notification.png │ │ ├── bt_fast_pair_discoverable_notification_debug.png │ │ ├── bt_fast_pair_fpv_app_eddystone_category.png │ │ ├── bt_fast_pair_fpv_app_eddystone_provisioning_test.png │ │ ├── bt_fast_pair_fpv_app_test_category.png │ │ ├── bt_fast_pair_locator_tag_acceptable_use_policy.png │ │ ├── bt_fast_pair_locator_tag_android_fw_update_notification.png │ │ ├── bt_fast_pair_locator_tag_discoverable_notification.png │ │ ├── bt_fast_pair_locator_tag_fmd_app_nearby_view.png │ │ ├── bt_fast_pair_locator_tag_fmd_app_unprovision.png │ │ ├── bt_fast_pair_locator_tag_provisioning_complete.png │ │ ├── bt_fast_pair_not_discoverable_notification.png │ │ ├── bt_fast_pair_not_discoverable_notification_debug.png │ │ ├── bt_peripheral_uart_rx_button_android.png │ │ ├── bt_peripheral_uart_rx_button_ios.png │ │ ├── bt_peripheral_uart_rx_popup_android.png │ │ ├── bt_peripheral_uart_rx_popup_ios.png │ │ ├── bt_peripheral_uart_tx_android.png │ │ ├── bt_peripheral_uart_tx_ios.png │ │ ├── caf_sample_structure.svg │ │ ├── chiptool_relative_humidity.gif │ │ ├── chiptool_sensor_cluster.gif │ │ ├── chiptool_temperature_read.gif │ │ ├── chiptool_temperature_watch.gif │ │ ├── coiote_device_mgmt_server_ui.png │ │ ├── conn_time_sync_diagram.svg │ │ ├── data_storage_file_system.svg │ │ ├── data_storage_nvmc.svg │ │ ├── data_storage_nvs.svg │ │ ├── data_storage_psa_no_tfm.svg │ │ ├── data_storage_psa_tfm.svg │ │ ├── data_storage_rramc.svg │ │ ├── data_storage_settings.svg │ │ ├── data_storage_zms.svg │ │ ├── doc_icon.svg │ │ ├── ei_data_acquisition.png │ │ ├── ei_loading_test_sample.png │ │ ├── ei_raw_features.png │ │ ├── ei_start_sampling.png │ │ ├── gs-assistant_tm.png │ │ ├── gs-assistant_tm_dropdown.png │ │ ├── http_upload_nrfcloud.png │ │ ├── lwm2m_client_production.svg │ │ ├── lwm2m_client_state_diagram.svg │ │ ├── matter_external_thermostat_setup.png │ │ ├── matter_qr_code_bridge.png │ │ ├── matter_qr_code_closure.png │ │ ├── matter_qr_code_contact_sensor.png │ │ ├── matter_qr_code_door_lock.png │ │ ├── matter_qr_code_light_bulb.png │ │ ├── matter_qr_code_light_switch.png │ │ ├── matter_qr_code_smoke_co_alarm.png │ │ ├── matter_qr_code_temperature_sensor.png │ │ ├── matter_qr_code_template_sample.png │ │ ├── matter_qr_code_thermostat.png │ │ ├── matter_qr_code_weather_station_default.png │ │ ├── matter_qr_code_weather_station_factory_data.png │ │ ├── matter_qr_code_window_covering.png │ │ ├── minicom_serial_port.png │ │ ├── minicom_setup_window.png │ │ ├── minicom_terminal_cfg.png │ │ ├── ml_app_architecture.svg │ │ ├── ml_app_architecture_nrf54h20.svg │ │ ├── modem_shell_trace_download.png │ │ ├── mqtt_architecture.svg │ │ ├── ncs-toolchain.svg │ │ ├── ncs_app_dev.svg │ │ ├── ncs_get_started_banner.png │ │ ├── ncs_repo_structure_simplified.svg │ │ ├── nrf-secure-rom-granularity.svg │ │ ├── nrf52_termite_ports.png │ │ ├── nrf5340_audio_application_topologies.png │ │ ├── nrf5340_audio_broadcast_sink_I2S_structure.svg │ │ ├── nrf5340_audio_broadcast_source_I2S_structure.svg │ │ ├── nrf5340_audio_broadcast_source_USB_structure.svg │ │ ├── nrf5340_audio_structure_generic.svg │ │ ├── nrf5340_audio_structure_sync_module.svg │ │ ├── nrf5340_audio_sync_module_states.svg │ │ ├── nrf5340_audio_unicast_client_I2S_structure.svg │ │ ├── nrf5340_audio_unicast_client_USB_structure.svg │ │ ├── nrf5340_audio_unicast_server_I2S_structure.svg │ │ ├── nrf5340audio_all_packages.svg │ │ ├── nrf7002_nrf5340_current_measurements.svg │ │ ├── nrf700x_wifi_driver.svg │ │ ├── nrf_cloud_led_states.svg │ │ ├── nrf_connect_enable_notify.png │ │ ├── nrf_connect_write.png │ │ ├── nrf_desktop_400391_jlink_debug.svg │ │ ├── nrf_desktop_400398_debug.svg │ │ ├── nrf_desktop_400398_long_debug.svg │ │ ├── nrf_desktop_arch.svg │ │ ├── nrf_desktop_arch_dmouse.svg │ │ ├── nrf_desktop_arch_dongle.svg │ │ ├── nrf_desktop_arch_gmouse.svg │ │ ├── nrf_desktop_arch_kbd.svg │ │ ├── nrf_desktop_ble_bond.svg │ │ ├── nrf_desktop_ble_bond_dongle.svg │ │ ├── nrf_desktop_ble_bond_standby.svg │ │ ├── nrf_desktop_desktop_mouse_bottom.svg │ │ ├── nrf_desktop_desktop_mouse_side_debug.svg │ │ ├── nrf_desktop_desktop_mouse_side_no_captions.svg │ │ ├── nrf_desktop_desktop_mouse_side_scroll.svg │ │ ├── nrf_desktop_dongle_front_led1.svg │ │ ├── nrf_desktop_dongle_front_led2_sw1.svg │ │ ├── nrf_desktop_dongle_no_captions.svg │ │ ├── nrf_desktop_dongle_usb.svg │ │ ├── nrf_desktop_gaming_mouse_bottom.svg │ │ ├── nrf_desktop_gaming_mouse_debug_board_slot.svg │ │ ├── nrf_desktop_gaming_mouse_led1_peer_control_button.svg │ │ ├── nrf_desktop_gaming_mouse_led2.svg │ │ ├── nrf_desktop_gaming_mouse_top_no_captions.svg │ │ ├── nrf_desktop_gaming_mouse_usb_slot.svg │ │ ├── nrf_desktop_keyboard_back_debug.svg │ │ ├── nrf_desktop_keyboard_back_power.svg │ │ ├── nrf_desktop_keyboard_top.svg │ │ ├── nrf_desktop_keyboard_top_no_captions.svg │ │ ├── nrf_desktop_motion_sensing.svg │ │ ├── nrf_desktop_nrf52840_dk_no_captions.svg │ │ ├── nrf_desktop_peripheral_host.svg │ │ ├── nrf_desktop_peripheral_host_dongle.svg │ │ ├── nrftoolbox_dynamic_zigbee_uart_1.png │ │ ├── nrftoolbox_dynamic_zigbee_uart_2.png │ │ ├── nrftoolbox_dynamic_zigbee_uart_3.png │ │ ├── nrftoolbox_uart_connected.png │ │ ├── nrftoolbox_uart_default.png │ │ ├── nrftoolbox_uart_settings.png │ │ ├── octave_application_structure.svg │ │ ├── octave_application_structure_gateway.svg │ │ ├── pa-lna-block-dia.svg │ │ ├── pelion_device_directory.png │ │ ├── pelion_device_resources.png │ │ ├── power_profiling_meas.png │ │ ├── power_profiling_meas_adv.png │ │ ├── ps_nrf52_connections.png │ │ ├── ps_nrf54l_connections.webp │ │ ├── putty.svg │ │ ├── real_term_serial_port.png │ │ ├── realterm.png │ │ ├── realterm_commands.png │ │ ├── realterm_hex_display.png │ │ ├── rtt_viewer_configuration.png │ │ ├── running_tests.png │ │ ├── sample_output_dut.png │ │ ├── sample_output_openwrt_ap.png │ │ ├── secure-flash-regions.svg │ │ ├── sequence_diagram.svg │ │ ├── ses_notset.png │ │ ├── switcher_docset_snipped.gif │ │ ├── switcher_version_snipped.gif │ │ ├── test_case_global_configuration.png │ │ ├── test_case_specific_configuration.png │ │ ├── test_cases_menu.png │ │ ├── test_connection.png │ │ ├── test_setup_configuration.png │ │ ├── thingy91_sim_iccid_puk.svg │ │ ├── three_wire_iface.svg │ │ ├── transport_module_states.svg │ │ ├── update_certification_bundle.png │ │ ├── wifi_coex.svg │ │ ├── wifi_coex_ble.png │ │ ├── wifi_coex_wlan.png │ │ ├── wifi_coex_wlan_ble_cd.png │ │ ├── wifi_coex_wlan_ble_ce.png │ │ ├── wifi_provisioning_state_diagram.svg │ │ ├── wifi_quicktrack_test_setup.png │ │ ├── wifi_thread_coex.svg │ │ ├── wifi_throughput_test_setup.png │ │ ├── wireshark_decode_as_nordic_80211.png │ │ ├── zigbee_ncp_sample_overview.svg │ │ └── zigbee_qsg_vsc_create_application_section.png │ ├── includes │ │ ├── Thingy91_91x_features.txt │ │ ├── advanced_conf_matter.txt │ │ ├── application_build_and_run.txt │ │ ├── application_build_and_run_ns.txt │ │ ├── aws_s3_bucket.txt │ │ ├── boardname_tables │ │ │ └── sample_boardnames.txt │ │ ├── build_and_run.txt │ │ ├── build_and_run_bootloader.txt │ │ ├── build_and_run_ns.txt │ │ ├── build_and_run_test.txt │ │ ├── cert-flashing.txt │ │ ├── connecting_soc.txt │ │ ├── external_flash_nrf91.txt │ │ ├── fast_pair_fmdn_rename.txt │ │ ├── guides_complementary_to_app_dev.txt │ │ ├── hid_provider_consumer_system_control.txt │ │ ├── install_sdk_common_prerequisites.txt │ │ ├── ipc_radio_conf.txt │ │ ├── lwm2m_carrier_library.txt │ │ ├── lwm2m_common_server_setup.txt │ │ ├── matter_bridge_testing.txt │ │ ├── matter_building_nrf5340dk_70ek │ │ ├── matter_building_nrf54lm20dk_7002eb2 │ │ ├── matter_custom_board.txt │ │ ├── matter_quick_start.txt │ │ ├── matter_sample_button.txt │ │ ├── matter_sample_state_led.txt │ │ ├── matter_sample_wifi_flash.txt │ │ ├── matter_segger_usb.txt │ │ ├── matter_snippets_note.txt │ │ ├── matter_wifi_nrf5340_deprecation.txt │ │ ├── mesh_device_provisioning.txt │ │ ├── mesh_ext_flash_settings.txt │ │ ├── nRF54H20_erase_UICR.txt │ │ ├── net_connection_manager.txt │ │ ├── nrf_cloud_rest_sample_requirements.txt │ │ ├── offline_net_capture.txt │ │ ├── sample_board_rows.txt │ │ ├── sample_custom_config_intro.txt │ │ ├── sample_dtm_radio_test_fem.txt │ │ ├── sample_dtm_radio_test_skyworks.txt │ │ ├── sample_fem_support.txt │ │ ├── sample_snippets.txt │ │ ├── suit_fota_update_nrfcdm_test_steps.txt │ │ ├── tfm.txt │ │ ├── thread_configure_network.txt │ │ ├── thread_enable_network.txt │ │ ├── vsc_build_and_run.txt │ │ ├── vsc_build_and_run_series.txt │ │ ├── wifi_credentials_shell.txt │ │ ├── wifi_credentials_static.txt │ │ ├── wifi_radio_ficr_prog.txt │ │ ├── wifi_radio_sample_testing.txt │ │ ├── wifi_radio_test_stats.txt │ │ ├── wifi_radio_test_subcommands.txt │ │ ├── wifi_refer_sample_yaml_file.txt │ │ ├── zephyr_sample_test.txt │ │ └── zigbee_deprecation.txt │ ├── index.rst │ ├── installation.rst │ ├── installation │ │ ├── install_ncs.rst │ │ ├── recommended_versions.rst │ │ └── updating.rst │ ├── integrations.rst │ ├── libraries │ │ ├── bin │ │ │ ├── index.rst │ │ │ └── lwm2m_carrier │ │ │ │ ├── API_documentation.rst │ │ │ │ ├── CHANGELOG.rst │ │ │ │ ├── app_integration.rst │ │ │ │ ├── certification.rst │ │ │ │ ├── images │ │ │ │ ├── lwm2m_carrier_msc_bootstrap.svg │ │ │ │ ├── lwm2m_carrier_msc_deferred.svg │ │ │ │ ├── lwm2m_carrier_msc_deferred_bs.svg │ │ │ │ ├── lwm2m_carrier_msc_fota_fail_cert.svg │ │ │ │ ├── lwm2m_carrier_msc_fota_fail_crc.svg │ │ │ │ ├── lwm2m_carrier_msc_fota_success.svg │ │ │ │ ├── lwm2m_carrier_os_abstraction.svg │ │ │ │ ├── lwm2m_carrier_os_abstraction_shell.svg │ │ │ │ ├── lwm2m_carrier_overview.svg │ │ │ │ └── lwm2m_carrier_request.svg │ │ │ │ ├── index.rst │ │ │ │ ├── msc.rst │ │ │ │ └── requirements.rst │ │ ├── bluetooth │ │ │ ├── adv_prov.rst │ │ │ ├── conn_ctx.rst │ │ │ ├── cs_de.rst │ │ │ ├── enocean.rst │ │ │ ├── gatt_dm.rst │ │ │ ├── gatt_pool.rst │ │ │ ├── images │ │ │ │ ├── ConnEvtCb.svg │ │ │ │ └── ConnEvtCbPeripheralLatency.svg │ │ │ ├── index.rst │ │ │ ├── mesh.rst │ │ │ ├── mesh │ │ │ │ ├── dk_prov.rst │ │ │ │ ├── gen_battery.rst │ │ │ │ ├── gen_battery_cli.rst │ │ │ │ ├── gen_battery_srv.rst │ │ │ │ ├── gen_dtt.rst │ │ │ │ ├── gen_dtt_cli.rst │ │ │ │ ├── gen_dtt_srv.rst │ │ │ │ ├── gen_loc.rst │ │ │ │ ├── gen_loc_cli.rst │ │ │ │ ├── gen_loc_srv.rst │ │ │ │ ├── gen_lvl.rst │ │ │ │ ├── gen_lvl_cli.rst │ │ │ │ ├── gen_lvl_srv.rst │ │ │ │ ├── gen_onoff.rst │ │ │ │ ├── gen_onoff_cli.rst │ │ │ │ ├── gen_onoff_srv.rst │ │ │ │ ├── gen_plvl.rst │ │ │ │ ├── gen_plvl_cli.rst │ │ │ │ ├── gen_plvl_srv.rst │ │ │ │ ├── gen_ponoff.rst │ │ │ │ ├── gen_ponoff_cli.rst │ │ │ │ ├── gen_ponoff_srv.rst │ │ │ │ ├── gen_prop.rst │ │ │ │ ├── gen_prop_cli.rst │ │ │ │ ├── gen_prop_srv.rst │ │ │ │ ├── images │ │ │ │ │ ├── CIExy1931.png │ │ │ │ │ ├── bt_mesh_light_ctrl_composition.svg │ │ │ │ │ ├── bt_mesh_light_ctrl_levels.svg │ │ │ │ │ ├── bt_mesh_light_ctrl_nodes.svg │ │ │ │ │ ├── bt_mesh_light_ctrl_reg.svg │ │ │ │ │ └── bt_mesh_light_ctrl_states.svg │ │ │ │ ├── light_ctl.rst │ │ │ │ ├── light_ctl_cli.rst │ │ │ │ ├── light_ctl_srv.rst │ │ │ │ ├── light_ctrl.rst │ │ │ │ ├── light_ctrl_cli.rst │ │ │ │ ├── light_ctrl_reg.rst │ │ │ │ ├── light_ctrl_reg_spec.rst │ │ │ │ ├── light_ctrl_srv.rst │ │ │ │ ├── light_hsl.rst │ │ │ │ ├── light_hsl_cli.rst │ │ │ │ ├── light_hsl_srv.rst │ │ │ │ ├── light_hue_srv.rst │ │ │ │ ├── light_sat_srv.rst │ │ │ │ ├── light_temp_srv.rst │ │ │ │ ├── light_xyl.rst │ │ │ │ ├── light_xyl_cli.rst │ │ │ │ ├── light_xyl_srv.rst │ │ │ │ ├── lightness.rst │ │ │ │ ├── lightness_cli.rst │ │ │ │ ├── lightness_srv.rst │ │ │ │ ├── model_types.rst │ │ │ │ ├── models.rst │ │ │ │ ├── properties.rst │ │ │ │ ├── scene.rst │ │ │ │ ├── scene_cli.rst │ │ │ │ ├── scene_srv.rst │ │ │ │ ├── scheduler.rst │ │ │ │ ├── scheduler_cli.rst │ │ │ │ ├── scheduler_srv.rst │ │ │ │ ├── sensor.rst │ │ │ │ ├── sensor_cli.rst │ │ │ │ ├── sensor_models.rst │ │ │ │ ├── sensor_srv.rst │ │ │ │ ├── sensor_types.rst │ │ │ │ ├── time.rst │ │ │ │ ├── time_cli.rst │ │ │ │ ├── time_srv.rst │ │ │ │ ├── time_tai.rst │ │ │ │ └── vnd │ │ │ │ │ ├── dm.rst │ │ │ │ │ ├── dm_cli.rst │ │ │ │ │ ├── dm_srv.rst │ │ │ │ │ ├── images │ │ │ │ │ ├── bt_mesh_dm_models.svg │ │ │ │ │ └── bt_mesh_le_pair_resp.svg │ │ │ │ │ ├── le_pair_resp.rst │ │ │ │ │ └── silvair_enocean_srv.rst │ │ │ ├── radio_notification_conn_cb.rst │ │ │ ├── rpc.rst │ │ │ ├── scan.rst │ │ │ └── services │ │ │ │ ├── ams_client.rst │ │ │ │ ├── ancs_client.rst │ │ │ │ ├── bas_client.rst │ │ │ │ ├── bms.rst │ │ │ │ ├── cgms.rst │ │ │ │ ├── cts_client.rst │ │ │ │ ├── ddfs.rst │ │ │ │ ├── dfu_smp.rst │ │ │ │ ├── fast_pair │ │ │ │ ├── adv_manager.rst │ │ │ │ ├── core.rst │ │ │ │ └── index.rst │ │ │ │ ├── gattp.rst │ │ │ │ ├── hids.rst │ │ │ │ ├── hogp.rst │ │ │ │ ├── hrs_client.rst │ │ │ │ ├── latency.rst │ │ │ │ ├── latency_client.rst │ │ │ │ ├── lbs.rst │ │ │ │ ├── mds.rst │ │ │ │ ├── nsms.rst │ │ │ │ ├── nus.rst │ │ │ │ ├── nus_client.rst │ │ │ │ ├── rreq.rst │ │ │ │ ├── rrsp.rst │ │ │ │ ├── rscs.rst │ │ │ │ ├── throughput.rst │ │ │ │ └── wifi_prov_ble.rst │ │ ├── caf │ │ │ ├── ble_adv.rst │ │ │ ├── ble_bond.rst │ │ │ ├── ble_smp.rst │ │ │ ├── ble_state.rst │ │ │ ├── ble_state_pm.rst │ │ │ ├── buttons.rst │ │ │ ├── buttons_pm_keep_alive.rst │ │ │ ├── caf_overview.rst │ │ │ ├── caf_shell.rst │ │ │ ├── click_detector.rst │ │ │ ├── images │ │ │ │ ├── caf_ble_state_transitions.svg │ │ │ │ ├── caf_buttons_states.svg │ │ │ │ ├── caf_led_effect_structure.png │ │ │ │ ├── caf_led_effect_structure.svg │ │ │ │ ├── caf_overview.svg │ │ │ │ ├── caf_power_manager_states.svg │ │ │ │ └── caf_sensor_states.svg │ │ │ ├── index.rst │ │ │ ├── leds.rst │ │ │ ├── net_state.rst │ │ │ ├── power_manager.rst │ │ │ ├── sensor_data_aggregator.rst │ │ │ ├── sensor_manager.rst │ │ │ └── settings_loader.rst │ │ ├── debug │ │ │ ├── cpu_load.rst │ │ │ ├── etb_trace.rst │ │ │ ├── index.rst │ │ │ ├── memfault_ncs.rst │ │ │ └── ppi_trace.rst │ │ ├── dfu │ │ │ ├── dfu_extra.rst │ │ │ ├── dfu_multi_image.rst │ │ │ ├── dfu_target.rst │ │ │ ├── fmfu_fdev.rst │ │ │ ├── fmfu_mgmt.rst │ │ │ ├── index.rst │ │ │ └── pcd.rst │ │ ├── gazell │ │ │ ├── gzll_glue.rst │ │ │ ├── gzp.rst │ │ │ └── index.rst │ │ ├── index.rst │ │ ├── modem │ │ │ ├── at_cmd_custom.rst │ │ │ ├── at_host.rst │ │ │ ├── at_monitor.rst │ │ │ ├── at_parser.rst │ │ │ ├── at_shell.rst │ │ │ ├── gcf_sms_lib.rst │ │ │ ├── index.rst │ │ │ ├── location.rst │ │ │ ├── lte_lc.rst │ │ │ ├── modem_antenna.rst │ │ │ ├── modem_attest_token.rst │ │ │ ├── modem_battery.rst │ │ │ ├── modem_info.rst │ │ │ ├── modem_jwt.rst │ │ │ ├── modem_key_mgmt.rst │ │ │ ├── nrf_modem_lib │ │ │ │ ├── index.rst │ │ │ │ ├── nrf_modem_lib_api.rst │ │ │ │ ├── nrf_modem_lib_diagnostic.rst │ │ │ │ ├── nrf_modem_lib_fault.rst │ │ │ │ ├── nrf_modem_lib_lte_net_if.rst │ │ │ │ ├── nrf_modem_lib_os_abstraction.rst │ │ │ │ ├── nrf_modem_lib_pm_integration.rst │ │ │ │ ├── nrf_modem_lib_socket_offloading.rst │ │ │ │ ├── nrf_modem_lib_trace.rst │ │ │ │ └── nrf_modem_lib_wrapper.rst │ │ │ ├── ntn.rst │ │ │ ├── pdn.rst │ │ │ ├── sms.rst │ │ │ ├── uicc_lwm2m.rst │ │ │ └── zzhc.rst │ │ ├── mpsl │ │ │ ├── index.rst │ │ │ ├── mpsl_assert.rst │ │ │ ├── mpsl_lib.rst │ │ │ └── mpsl_work.rst │ │ ├── networking │ │ │ ├── aws_fota.rst │ │ │ ├── aws_iot.rst │ │ │ ├── aws_jobs.rst │ │ │ ├── azure_fota.rst │ │ │ ├── azure_iot_hub.rst │ │ │ ├── coap_utils.rst │ │ │ ├── downloader.rst │ │ │ ├── fota_download.rst │ │ │ ├── ftp_client.rst │ │ │ ├── icalendar_parser.rst │ │ │ ├── images │ │ │ │ ├── aws_fota_dfu_sequence.svg │ │ │ │ ├── gnss_fix_ppk_agnss.png │ │ │ │ ├── gnss_fix_ppk_cold_start.png │ │ │ │ └── lib_lwm2m_client_utils.svg │ │ │ ├── index.rst │ │ │ ├── lwm2m_client_utils.rst │ │ │ ├── lwm2m_location_assistance.rst │ │ │ ├── mqtt_helper.rst │ │ │ ├── nrf_cloud.rst │ │ │ ├── nrf_cloud_agnss.rst │ │ │ ├── nrf_cloud_alert.rst │ │ │ ├── nrf_cloud_coap.rst │ │ │ ├── nrf_cloud_location.rst │ │ │ ├── nrf_cloud_log.rst │ │ │ ├── nrf_cloud_pgps.rst │ │ │ ├── nrf_cloud_rest.rst │ │ │ ├── nrf_provisioning.rst │ │ │ ├── ot_rpc.rst │ │ │ ├── rest_client.rst │ │ │ ├── softap_wifi_provision.rst │ │ │ ├── wifi_mgmt_ext.rst │ │ │ ├── wifi_prov_core.rst │ │ │ ├── wifi_prov_tools.rst │ │ │ └── wifi_ready.rst │ │ ├── nfc │ │ │ ├── index.rst │ │ │ ├── ndef │ │ │ │ ├── ch_msg.rst │ │ │ │ ├── ch_rec_parser.rst │ │ │ │ ├── index.rst │ │ │ │ ├── launchapp.rst │ │ │ │ ├── le_oob_rec.rst │ │ │ │ ├── le_oob_rec_parser.rst │ │ │ │ ├── msg.rst │ │ │ │ ├── msg_parser.rst │ │ │ │ ├── text_rec.rst │ │ │ │ └── uri_msg.rst │ │ │ ├── rpc │ │ │ │ └── index.rst │ │ │ ├── t2t │ │ │ │ ├── index.rst │ │ │ │ └── t2t_parser.rst │ │ │ ├── t4t │ │ │ │ ├── apdu.rst │ │ │ │ ├── cc_file.rst │ │ │ │ ├── hl_procedure.rst │ │ │ │ ├── index.rst │ │ │ │ ├── isodep.rst │ │ │ │ └── ndef_file.rst │ │ │ └── tnep │ │ │ │ ├── ch.rst │ │ │ │ ├── images │ │ │ │ ├── nfc_negotiated_connection_handover.svg │ │ │ │ └── nfc_static_connection_handover.svg │ │ │ │ ├── index.rst │ │ │ │ ├── poller.rst │ │ │ │ └── tag.rst │ │ ├── nrf_rpc │ │ │ ├── index.rst │ │ │ ├── nrf_rpc_ipc.rst │ │ │ ├── nrf_rpc_uart.rst │ │ │ └── nrf_rpc_utils.rst │ │ ├── others │ │ │ ├── adp536x.rst │ │ │ ├── app_event_manager.rst │ │ │ ├── app_event_manager_profiler_tracer.rst │ │ │ ├── app_jwt.rst │ │ │ ├── audio_module.rst │ │ │ ├── contin_array.rst │ │ │ ├── data_fifo.rst │ │ │ ├── date_time.rst │ │ │ ├── dk_buttons_and_leds.rst │ │ │ ├── dm.rst │ │ │ ├── dult.rst │ │ │ ├── ei_wrapper.rst │ │ │ ├── emds.rst │ │ │ ├── esb.rst │ │ │ ├── event_manager_proxy.rst │ │ │ ├── fem_al.rst │ │ │ ├── flash_map_pm.rst │ │ │ ├── hw_id.rst │ │ │ ├── images │ │ │ │ ├── audio_module_example.svg │ │ │ │ ├── audio_module_functions.svg │ │ │ │ ├── audio_module_states.svg │ │ │ │ ├── audio_module_stream.svg │ │ │ │ ├── em_overview.svg │ │ │ │ ├── ncm_register.svg │ │ │ │ ├── nrf_compression_image.png │ │ │ │ ├── qos_sequence.svg │ │ │ │ └── supl_msc.svg │ │ │ ├── index.rst │ │ │ ├── log_rpc.rst │ │ │ ├── network_core_monitor.rst │ │ │ ├── nrf_compression.rst │ │ │ ├── nrf_profiler.rst │ │ │ ├── pcm_mix.rst │ │ │ ├── pcm_stream_channel_modifier.rst │ │ │ ├── qos.rst │ │ │ ├── ram_pwrdn.rst │ │ │ ├── sfloat.rst │ │ │ ├── st25r3911b_nfc.rst │ │ │ ├── supl_os_client.rst │ │ │ ├── tone.rst │ │ │ ├── uart_async_adapter.rst │ │ │ └── wave_gen.rst │ │ ├── security │ │ │ ├── bootloader │ │ │ │ ├── bl_crypto.rst │ │ │ │ ├── bl_storage.rst │ │ │ │ ├── bl_validation.rst │ │ │ │ ├── flash_patch.rst │ │ │ │ ├── fprotect.rst │ │ │ │ ├── fw_info.rst │ │ │ │ └── index.rst │ │ │ ├── fatal_error.rst │ │ │ ├── hw_unique_key.rst │ │ │ ├── identity_key.rst │ │ │ ├── images │ │ │ │ └── trusted_storage.svg │ │ │ ├── index.rst │ │ │ ├── nrf_security │ │ │ │ ├── doc │ │ │ │ │ ├── backend_config.rst │ │ │ │ │ └── configuration.rst │ │ │ │ └── index.rst │ │ │ ├── tfm │ │ │ │ ├── index.rst │ │ │ │ └── tfm_ioctl_api.rst │ │ │ └── trusted_storage.rst │ │ └── shell │ │ │ ├── index.rst │ │ │ ├── shell_bt_nus.rst │ │ │ ├── shell_ipc.rst │ │ │ └── shell_nfc.rst │ ├── links.txt │ ├── nrf.doxyfile.in │ ├── protocols.rst │ ├── protocols │ │ ├── amazon_sidewalk │ │ │ └── index.rst │ │ ├── bt │ │ │ ├── bt_mesh │ │ │ │ ├── configuring.rst │ │ │ │ ├── dfu_over_ble.rst │ │ │ │ ├── dfu_over_bt_mesh.rst │ │ │ │ ├── fota.rst │ │ │ │ ├── images │ │ │ │ │ ├── bt_mesh_access.svg │ │ │ │ │ ├── bt_mesh_and_ble.svg │ │ │ │ │ ├── bt_mesh_basic_architecture.svg │ │ │ │ │ ├── bt_mesh_data_packet_flow.svg │ │ │ │ │ ├── bt_mesh_device_lifecycle.svg │ │ │ │ │ └── bt_mesh_topology.svg │ │ │ │ ├── index.rst │ │ │ │ ├── model_config_app.rst │ │ │ │ ├── node_removal.rst │ │ │ │ ├── overview │ │ │ │ │ ├── architecture.rst │ │ │ │ │ ├── coexistence.rst │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── models.rst │ │ │ │ │ ├── nlc.rst │ │ │ │ │ ├── reserved_ids.rst │ │ │ │ │ ├── security.rst │ │ │ │ │ └── topology.rst │ │ │ │ └── vendor_model │ │ │ │ │ ├── chat_sample_walk_through.rst │ │ │ │ │ ├── dev_overview.rst │ │ │ │ │ ├── images │ │ │ │ │ └── bt_mesh_model_callbacks.svg │ │ │ │ │ └── index.rst │ │ │ ├── bt_qualification │ │ │ │ └── index.rst │ │ │ ├── bt_solutions.rst │ │ │ ├── bt_stack_arch.rst │ │ │ ├── images │ │ │ │ └── bluetooth_arch.svg │ │ │ └── index.rst │ │ ├── coexistence │ │ │ └── index.rst │ │ ├── dect │ │ │ └── index.rst │ │ ├── esb │ │ │ ├── images │ │ │ │ ├── esb_fig1_star_network.svg │ │ │ │ ├── esb_fig2_ptx_trans_ok.svg │ │ │ │ ├── esb_fig3_prx_ptx_trans_fail.svg │ │ │ │ └── esb_packet_format.svg │ │ │ └── index.rst │ │ ├── gazell │ │ │ ├── gzll.rst │ │ │ ├── gzp.rst │ │ │ ├── images │ │ │ │ ├── gzll_fig1_star_network.svg │ │ │ │ ├── gzll_fig2_device_heartbeat.svg │ │ │ │ ├── gzll_fig3_host_heartbeat.svg │ │ │ │ ├── gzll_fig4_device_channel_switch.svg │ │ │ │ ├── gzll_fig7_host_dev_trans_ok.svg │ │ │ │ ├── gzll_fig8_host_dev_trans_fail.svg │ │ │ │ ├── gzll_fig9_gzll_config_example.svg │ │ │ │ ├── gzp_address_exchange.svg │ │ │ │ ├── gzp_factory_defaults.svg │ │ │ │ ├── gzp_host_id_exchange.svg │ │ │ │ ├── gzp_key_exchange.svg │ │ │ │ └── gzp_user_data_exchange.svg │ │ │ └── index.rst │ │ ├── lte │ │ │ ├── images │ │ │ │ ├── app_power_opp_cdrx_normal.png │ │ │ │ ├── app_power_opt_drx_long.png │ │ │ │ ├── app_power_opt_opp_default_20byte_10min.png │ │ │ │ ├── app_power_opt_opp_default_40_byte_20min.png │ │ │ │ ├── app_power_opt_opp_tuned_with_measurements.png │ │ │ │ ├── app_power_opt_ppk_10sec_active_timer.png │ │ │ │ ├── app_power_opt_ppk_120_byte.png │ │ │ │ ├── app_power_opt_ppk_40_byte.png │ │ │ │ ├── app_power_opt_ppk_cdrx_duration_40ms.png │ │ │ │ ├── app_power_opt_ppk_cdrx_interval.png │ │ │ │ ├── app_power_opt_ppk_inactivity_timer.png │ │ │ │ ├── app_power_opt_ppk_psm.png │ │ │ │ ├── as-rai_disabled.png │ │ │ │ ├── as-rai_enabled.png │ │ │ │ ├── eDRX_cycle.png │ │ │ │ └── psm_process.png │ │ │ ├── index.rst │ │ │ ├── lte_ncs.rst │ │ │ ├── overview.rst │ │ │ ├── power_nrf91.rst │ │ │ └── psm.rst │ │ ├── matter │ │ │ ├── end_product │ │ │ │ ├── attestation.rst │ │ │ │ ├── bootloader.rst │ │ │ │ ├── certification.rst │ │ │ │ ├── configuring_cd.rst │ │ │ │ ├── dcl.rst │ │ │ │ ├── ecosystems_certification.rst │ │ │ │ ├── factory_provisioning.rst │ │ │ │ ├── images │ │ │ │ │ ├── matter_device_attestation.svg │ │ │ │ │ ├── matter_device_attestation_ca.svg │ │ │ │ │ ├── matter_device_attestation_ca_dcl_pki.svg │ │ │ │ │ ├── matter_device_attestation_manufacturer_info.svg │ │ │ │ │ ├── matter_device_certification_dcl.svg │ │ │ │ │ ├── matter_device_certification_process.svg │ │ │ │ │ ├── matter_device_certification_process_cbs.svg │ │ │ │ │ ├── matter_device_certification_process_ft.svg │ │ │ │ │ ├── matter_device_certification_process_pf.svg │ │ │ │ │ ├── matter_device_certification_process_rr.svg │ │ │ │ │ └── matter_memory_map_factory_data.svg │ │ │ │ ├── index.rst │ │ │ │ ├── last_fabric_removal_delegate.rst │ │ │ │ ├── platform_dmp_cert.rst │ │ │ │ ├── prerequisites.rst │ │ │ │ ├── security.rst │ │ │ │ ├── test_event_triggers.rst │ │ │ │ ├── versioning.rst │ │ │ │ └── watchdog.rst │ │ │ ├── getting_started │ │ │ │ ├── adding_bt_services.rst │ │ │ │ ├── adding_clusters.rst │ │ │ │ ├── advanced_kconfigs.rst │ │ │ │ ├── custom_clusters.rst │ │ │ │ ├── ecosystem_compatibility_testing.rst │ │ │ │ ├── hw_requirements.rst │ │ │ │ ├── images │ │ │ │ │ ├── matter_create_accessory_add_onoff_cluster.png │ │ │ │ │ ├── matter_create_accessory_add_temperature_measurement.png │ │ │ │ │ ├── matter_create_accessory_create_new_endpoint.png │ │ │ │ │ ├── matter_create_accessory_enable_onoff_commands.png │ │ │ │ │ ├── matter_create_accessory_zcl_configurator.png │ │ │ │ │ ├── matter_creating_custom_cluster_arguments_page.png │ │ │ │ │ ├── matter_creating_custom_cluster_assigned_clusters_page.png │ │ │ │ │ ├── matter_creating_custom_cluster_attributes.png │ │ │ │ │ ├── matter_creating_custom_cluster_attributes_page.png │ │ │ │ │ ├── matter_creating_custom_cluster_cluster_page.png │ │ │ │ │ ├── matter_creating_custom_cluster_commands.png │ │ │ │ │ ├── matter_creating_custom_cluster_commands_page.png │ │ │ │ │ ├── matter_creating_custom_cluster_device_type_cluster_assignment_page.png │ │ │ │ │ ├── matter_creating_custom_cluster_device_type_page.png │ │ │ │ │ ├── matter_creating_custom_cluster_enums_page.png │ │ │ │ │ ├── matter_creating_custom_cluster_event_page.png │ │ │ │ │ ├── matter_creating_custom_cluster_events.png │ │ │ │ │ ├── matter_creating_custom_cluster_fields_page.png │ │ │ │ │ ├── matter_creating_custom_cluster_items_enum_page.png │ │ │ │ │ ├── matter_creating_custom_cluster_items_page.png │ │ │ │ │ ├── matter_creating_custom_cluster_new_cluster.png │ │ │ │ │ ├── matter_creating_custom_cluster_new_endpoint.png │ │ │ │ │ ├── matter_creating_custom_cluster_structure_items_page.png │ │ │ │ │ ├── matter_creating_custom_cluster_structures_page.png │ │ │ │ │ ├── matter_ecosystem_compatibility.png │ │ │ │ │ ├── matter_quickstart_ecosystem_setup.png │ │ │ │ │ └── matter_template_sample.svg │ │ │ │ ├── index.rst │ │ │ │ ├── kconfig.rst │ │ │ │ ├── low_power_configuration.rst │ │ │ │ ├── matter_api.rst │ │ │ │ ├── memory_optimization.rst │ │ │ │ ├── testing │ │ │ │ │ ├── images │ │ │ │ │ │ ├── matter_otbr_controller_same_device.svg │ │ │ │ │ │ ├── matter_otbr_controller_separate_mobile.svg │ │ │ │ │ │ ├── matter_otbr_controller_separate_pc.svg │ │ │ │ │ │ ├── matter_wifi_setup_mobile.png │ │ │ │ │ │ └── matter_wifi_setup_pc.png │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── thread_one_otbr.rst │ │ │ │ │ ├── thread_separate_otbr_linux_macos.rst │ │ │ │ │ └── wifi_pc.rst │ │ │ │ ├── tools.rst │ │ │ │ └── transmission_power.rst │ │ │ ├── index.rst │ │ │ └── overview │ │ │ │ ├── architecture.rst │ │ │ │ ├── bridge.rst │ │ │ │ ├── commissioning.rst │ │ │ │ ├── data_model.rst │ │ │ │ ├── dev_model.rst │ │ │ │ ├── dfu.rst │ │ │ │ ├── group_communication.rst │ │ │ │ ├── images │ │ │ │ ├── matter_architecture.svg │ │ │ │ ├── matter_bridge_architecture.svg │ │ │ │ ├── matter_bridge_topology.svg │ │ │ │ ├── matter_components.svg │ │ │ │ ├── matter_components_DM.svg │ │ │ │ ├── matter_components_DM_doorlock.svg │ │ │ │ ├── matter_components_integration_ncs.svg │ │ │ │ ├── matter_interaction_model.svg │ │ │ │ ├── matter_network_commissioning.svg │ │ │ │ ├── matter_network_topologies.svg │ │ │ │ ├── matter_nrfconnect_overview_simplified_ncs.svg │ │ │ │ ├── matter_ota_all_parties.svg │ │ │ │ ├── matter_ota_roles.svg │ │ │ │ ├── matter_platform_design_nRF53_wifi.svg │ │ │ │ ├── matter_platform_design_nRF53_wifi_switching.svg │ │ │ │ ├── matter_platform_design_nRF54lm20_wifi.svg │ │ │ │ └── matter_setup_controllers_generic.png │ │ │ │ ├── index.rst │ │ │ │ ├── int_model.rst │ │ │ │ ├── integration.rst │ │ │ │ ├── multi_fabrics.rst │ │ │ │ ├── network_topologies.rst │ │ │ │ └── security.rst │ │ ├── multiprotocol │ │ │ └── index.rst │ │ ├── nfc │ │ │ ├── images │ │ │ │ ├── ndef_header_flags.svg │ │ │ │ ├── ndef_msg.svg │ │ │ │ └── nfc_overview.svg │ │ │ └── index.rst │ │ ├── thread │ │ │ ├── certification.rst │ │ │ ├── configuring.rst │ │ │ ├── device_types.rst │ │ │ ├── index.rst │ │ │ ├── overview │ │ │ │ ├── architectures.rst │ │ │ │ ├── commissioning.rst │ │ │ │ ├── communication.rst │ │ │ │ ├── images │ │ │ │ │ ├── Thread_external_commissioning.svg │ │ │ │ │ ├── Thread_on-mesh_commissioning.svg │ │ │ │ │ ├── ot-arch_2x.png │ │ │ │ │ ├── ot-arch_2x.svg │ │ │ │ │ ├── thread_data_flow_rx_spi.svg │ │ │ │ │ ├── thread_data_flow_rx_uart.svg │ │ │ │ │ ├── thread_data_flow_tx_spi.svg │ │ │ │ │ ├── thread_data_flow_tx_uart.svg │ │ │ │ │ ├── thread_platform_design_multi.svg │ │ │ │ │ ├── thread_platform_design_multi_direct.svg │ │ │ │ │ ├── thread_platform_design_nRF53.svg │ │ │ │ │ ├── thread_platform_design_nRF53_direct.svg │ │ │ │ │ ├── thread_platform_design_nRF53_multi.svg │ │ │ │ │ ├── thread_platform_design_nRF53_multi_direct.svg │ │ │ │ │ ├── thread_platform_design_ncp.svg │ │ │ │ │ ├── thread_platform_design_ncp_direct.svg │ │ │ │ │ ├── thread_platform_design_rcp.svg │ │ │ │ │ ├── thread_platform_design_rcp_direct.svg │ │ │ │ │ ├── thread_platform_design_soc.svg │ │ │ │ │ ├── thread_platform_design_soc_direct.svg │ │ │ │ │ ├── thread_sed_ssed_comparison.svg │ │ │ │ │ ├── thread_ssed.svg │ │ │ │ │ ├── zephyr_netstack_openthread-rx_sequence.svg │ │ │ │ │ └── zephyr_netstack_openthread-tx_sequence.svg │ │ │ │ ├── index.rst │ │ │ │ ├── memory_tables │ │ │ │ │ ├── nrf52840.txt │ │ │ │ │ ├── nrf5340.txt │ │ │ │ │ ├── nrf54l15.txt │ │ │ │ │ └── nrf54lm20a.txt │ │ │ │ ├── ot_integration.rst │ │ │ │ ├── ot_memory.rst │ │ │ │ ├── power_consumption.rst │ │ │ │ ├── security.rst │ │ │ │ └── supported_features.rst │ │ │ ├── prebuilt_libs.rst │ │ │ ├── sed_ssed.rst │ │ │ ├── tcat.rst │ │ │ └── tools.rst │ │ ├── wifi │ │ │ ├── advanced_modes │ │ │ │ ├── images │ │ │ │ │ ├── nrf7000_packet_injection_tx_flow.png │ │ │ │ │ ├── nrf7000_packet_promiscuous_operation.png │ │ │ │ │ └── nrf7000_packet_sniffer_operation.png │ │ │ │ ├── index.rst │ │ │ │ ├── mem_requirements_raw.rst │ │ │ │ ├── offloaded_raw_tx.rst │ │ │ │ ├── promiscuous_operation.rst │ │ │ │ ├── raw_tx_operation.rst │ │ │ │ └── sniffer_rx_operation.rst │ │ │ ├── debugging.rst │ │ │ ├── images │ │ │ │ └── wifi_protocol_stack.svg │ │ │ ├── index.rst │ │ │ ├── provisioning │ │ │ │ ├── index.rst │ │ │ │ ├── mem_requirements_ble.rst │ │ │ │ └── mem_requirements_softap.rst │ │ │ ├── regulatory_certification │ │ │ │ ├── adaptivity_test_procedure.rst │ │ │ │ ├── antenna_gain_compensation.rst │ │ │ │ ├── band_edge_compensation.rst │ │ │ │ ├── images │ │ │ │ │ ├── adaptivity_test_setup.svg │ │ │ │ │ ├── antenna_gain.svg │ │ │ │ │ ├── non_signaling_rx_testbed.svg │ │ │ │ │ ├── non_signaling_tx_testbed.svg │ │ │ │ │ ├── nrf7002_dk_front.png │ │ │ │ │ ├── nrf7002_ek_top.png │ │ │ │ │ ├── signaling_testbed_accesspoint.svg │ │ │ │ │ ├── sr_radio_test_port.png │ │ │ │ │ └── wifi_radio_test_port.png │ │ │ │ ├── index.rst │ │ │ │ ├── radio_test_short_range_sample │ │ │ │ │ ├── ble_radio_test_firmware.rst │ │ │ │ │ ├── ble_radio_test_for_per_measurements.rst │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── thread_radio_test_for_per_measurements.rst │ │ │ │ │ └── thread_radio_testing.rst │ │ │ │ ├── regulatory_test_cases.rst │ │ │ │ ├── test_setup.rst │ │ │ │ ├── using_wifi_shell_sample.rst │ │ │ │ ├── using_wifi_station_sample.rst │ │ │ │ └── wifi_radio_test_sample │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── setting_regulatory_domain.rst │ │ │ │ │ ├── wifi_build_instructions.rst │ │ │ │ │ ├── wifi_radio_sample_for_transmit_tests.rst │ │ │ │ │ └── wifi_radio_test_for_per_measurements.rst │ │ │ ├── regulatory_support.rst │ │ │ ├── sap_mode │ │ │ │ ├── index.rst │ │ │ │ ├── mem_requirements_sap.rst │ │ │ │ └── sap.rst │ │ │ ├── scan_mode │ │ │ │ ├── images │ │ │ │ │ ├── nrf7000_scan_operation_energy_consumption.svg │ │ │ │ │ └── nrf7000_scan_operation_scan_time.svg │ │ │ │ ├── index.rst │ │ │ │ ├── mem_requirements_scan.rst │ │ │ │ └── scan_operation.rst │ │ │ ├── stack_configuration.rst │ │ │ ├── station_mode │ │ │ │ ├── images │ │ │ │ │ ├── nRF70_ug_change_wakeup_mode_from_dtim_to_li.png │ │ │ │ │ ├── nRF70_ug_change_wakeup_mode_from_li_to_dtim.png │ │ │ │ │ ├── nRF70_ug_group_frames.svg │ │ │ │ │ ├── nRF70_ug_legacy_power_save.svg │ │ │ │ │ ├── nRF70_ug_twt.svg │ │ │ │ │ ├── nRF70_ug_twt_wake_interval.svg │ │ │ │ │ └── nRF70_ug_wmm_power_save.svg │ │ │ │ ├── index.rst │ │ │ │ ├── mem_requirements_sta.rst │ │ │ │ └── powersave.rst │ │ │ ├── wifi.rst │ │ │ ├── wifi_certification.rst │ │ │ └── wifi_direct.rst │ │ └── zigbee │ │ │ └── index.rst │ ├── releases_and_maturity.rst │ ├── releases_and_maturity │ │ ├── abi_compatibility.rst │ │ ├── known_issues.rst │ │ ├── migration │ │ │ ├── 2.4.99-cs3_to_2.6.99-cs2 │ │ │ │ ├── images │ │ │ │ │ ├── jlink788j_install.png │ │ │ │ │ └── jlink794e_install.png │ │ │ │ ├── migration_guide_2.4.99-cs3_to_2.6.99-cs2_application.rst │ │ │ │ └── migration_guide_2.4.99-cs3_to_2.6.99-cs2_environment.rst │ │ │ ├── migration_3.1_54h_suit_ironside.rst │ │ │ ├── migration_bicr_nRF54H20.rst │ │ │ ├── migration_guide_1.x_to_2.x.rst │ │ │ ├── migration_guide_2.4.99-cs3_to_2.6.99-cs2.rst │ │ │ ├── migration_guide_2.5.rst │ │ │ ├── migration_guide_2.6.rst │ │ │ ├── migration_guide_2.7.rst │ │ │ ├── migration_guide_2.8.rst │ │ │ ├── migration_guide_2.9.0-nRF54H20-1.rst │ │ │ ├── migration_guide_2.9.rst │ │ │ ├── migration_guide_3.0.rst │ │ │ ├── migration_guide_3.1.rst │ │ │ ├── migration_guide_3.2.rst │ │ │ ├── migration_guide_nRF54H20_cs_to_2_7.rst │ │ │ ├── migration_guide_nRF54H20_cs_to_2_7_99-cs1.rst │ │ │ ├── migration_guide_nRF54H20_cs_to_2_7_99-cs2.rst │ │ │ ├── migration_hwmv2.rst │ │ │ ├── migration_sysbuild.rst │ │ │ └── nRF54H20_migration_2.7 │ │ │ │ ├── images │ │ │ │ ├── jlink788j_install.png │ │ │ │ └── jlink794e_install.png │ │ │ │ ├── migration_guide_2.4.99-cs3_to_2.7_application.rst │ │ │ │ ├── migration_guide_2.6.99-cs2_to_2.7_application.rst │ │ │ │ ├── migration_guide_2.6.99-cs2_to_2_7_environment.rst │ │ │ │ └── transition_guide_2.4.99-cs3_to_2.7_environment.rst │ │ ├── migration_guides.rst │ │ ├── release_notes.rst │ │ ├── releases │ │ │ ├── release-notes-0.1.0.rst │ │ │ ├── release-notes-0.3.0.rst │ │ │ ├── release-notes-0.4.0.rst │ │ │ ├── release-notes-1.0.0.rst │ │ │ ├── release-notes-1.1.0.rst │ │ │ ├── release-notes-1.2.0.rst │ │ │ ├── release-notes-1.2.1.rst │ │ │ ├── release-notes-1.3.0.rst │ │ │ ├── release-notes-1.3.1.rst │ │ │ ├── release-notes-1.3.2.rst │ │ │ ├── release-notes-1.4.0.rst │ │ │ ├── release-notes-1.4.1.rst │ │ │ ├── release-notes-1.4.2.rst │ │ │ ├── release-notes-1.5.0.rst │ │ │ ├── release-notes-1.5.1.rst │ │ │ ├── release-notes-1.5.2.rst │ │ │ ├── release-notes-1.6.0.rst │ │ │ ├── release-notes-1.6.1.rst │ │ │ ├── release-notes-1.7.0.rst │ │ │ ├── release-notes-1.7.1.rst │ │ │ ├── release-notes-1.8.0.rst │ │ │ ├── release-notes-1.9.0.rst │ │ │ ├── release-notes-1.9.1.rst │ │ │ ├── release-notes-1.9.2.rst │ │ │ ├── release-notes-2.0.0.rst │ │ │ ├── release-notes-2.0.1.rst │ │ │ ├── release-notes-2.0.2.rst │ │ │ ├── release-notes-2.1.0.rst │ │ │ ├── release-notes-2.1.1.rst │ │ │ ├── release-notes-2.1.2.rst │ │ │ ├── release-notes-2.1.3.rst │ │ │ ├── release-notes-2.1.4.rst │ │ │ ├── release-notes-2.2.0.rst │ │ │ ├── release-notes-2.3.0.rst │ │ │ ├── release-notes-2.4.0.rst │ │ │ ├── release-notes-2.4.1.rst │ │ │ ├── release-notes-2.4.2.rst │ │ │ ├── release-notes-2.4.3.rst │ │ │ ├── release-notes-2.4.4.rst │ │ │ ├── release-notes-2.5.0.rst │ │ │ ├── release-notes-2.5.1.rst │ │ │ ├── release-notes-2.5.2.rst │ │ │ ├── release-notes-2.5.3.rst │ │ │ ├── release-notes-2.6.0.rst │ │ │ ├── release-notes-2.6.1.rst │ │ │ ├── release-notes-2.6.2.rst │ │ │ ├── release-notes-2.6.3.rst │ │ │ ├── release-notes-2.6.4.rst │ │ │ ├── release-notes-2.6.99-cs1.rst │ │ │ ├── release-notes-2.6.99-cs2.rst │ │ │ ├── release-notes-2.7.0.rst │ │ │ ├── release-notes-2.7.99-cs1.rst │ │ │ ├── release-notes-2.7.99-cs2.rst │ │ │ ├── release-notes-2.8.0-preview1.rst │ │ │ ├── release-notes-2.8.0.rst │ │ │ ├── release-notes-2.9.0-nRF54H20-1.rst │ │ │ ├── release-notes-2.9.0.rst │ │ │ ├── release-notes-2.9.1.rst │ │ │ ├── release-notes-2.9.2.rst │ │ │ ├── release-notes-3.0.0-preview1.rst │ │ │ ├── release-notes-3.0.0-preview2.rst │ │ │ ├── release-notes-3.0.0.rst │ │ │ ├── release-notes-3.0.1.rst │ │ │ ├── release-notes-3.0.2.rst │ │ │ ├── release-notes-3.1.0-preview1.rst │ │ │ ├── release-notes-3.1.0-preview2.rst │ │ │ ├── release-notes-3.1.0-preview3.rst │ │ │ ├── release-notes-3.1.0.rst │ │ │ ├── release-notes-3.1.1.rst │ │ │ ├── release-notes-3.2.0-preview1.rst │ │ │ ├── release-notes-3.2.0-preview2.rst │ │ │ ├── release-notes-3.2.0-preview3.rst │ │ │ └── release-notes-changelog.rst │ │ ├── repository_revisions.rst │ │ └── software_maturity.rst │ ├── samples.rst │ ├── samples │ │ ├── amazon_sidewalk.rst │ │ ├── bl.rst │ │ ├── cellular.rst │ │ ├── crypto.rst │ │ ├── debug.rst │ │ ├── dect.rst │ │ ├── dfu.rst │ │ ├── edge.rst │ │ ├── esb.rst │ │ ├── fast_pair.rst │ │ ├── gazell.rst │ │ ├── ironside_se.rst │ │ ├── keys.rst │ │ ├── matter.rst │ │ ├── mesh.rst │ │ ├── net.rst │ │ ├── nfc.rst │ │ ├── nrf5340.rst │ │ ├── other.rst │ │ ├── peripheral.rst │ │ ├── pmic.rst │ │ ├── sensor.rst │ │ ├── serialization.rst │ │ ├── tfm.rst │ │ ├── thread.rst │ │ ├── wifi.rst │ │ ├── wifi_provisioning.rst │ │ ├── wifi_radiotest.rst │ │ ├── wifi_zephyr.rst │ │ └── zigbee.rst │ ├── scripts.rst │ ├── security.rst │ ├── security │ │ ├── ap_protect.rst │ │ ├── crypto │ │ │ ├── crypto_architecture.rst │ │ │ ├── crypto_supported_features.rst │ │ │ ├── driver_config.rst │ │ │ ├── drivers.rst │ │ │ └── index.rst │ │ ├── images │ │ │ ├── driver_arch.svg │ │ │ ├── psa_certified_api_general.png │ │ │ ├── psa_certified_api_lib_selection.svg │ │ │ ├── psa_certified_api_lib_selection_details.svg │ │ │ ├── psa_crypto_api_arch.svg │ │ │ ├── psa_crypto_api_ironside.svg │ │ │ ├── psa_crypto_api_oberon.svg │ │ │ ├── psa_crypto_api_overview.svg │ │ │ ├── psa_crypto_api_tfm.svg │ │ │ ├── psa_want_use_need_flow.svg │ │ │ └── tfm_psa_crypto_api_nspe_spe.svg │ │ ├── key_storage.rst │ │ ├── psa_certified_api_overview.rst │ │ ├── secure_storage.rst │ │ └── tfm │ │ │ ├── images │ │ │ ├── sbs_comparison.png │ │ │ ├── sbs_no_separation.png │ │ │ ├── sbs_separation.png │ │ │ └── tfm_architecture_overview.png │ │ │ ├── index.rst │ │ │ ├── processing_environments.rst │ │ │ ├── tfm_architecture.rst │ │ │ ├── tfm_building.rst │ │ │ ├── tfm_logging.rst │ │ │ ├── tfm_provisioning.rst │ │ │ ├── tfm_services.rst │ │ │ └── tfm_supported_services.rst │ ├── shortcuts.txt │ ├── templates │ │ ├── Integration_template_README.rst │ │ ├── application_README.rst │ │ ├── cheat_sheet.rst │ │ ├── customservice_README.rst │ │ ├── library_template_README.rst │ │ ├── mesh_model_main_README.rst │ │ ├── mesh_model_server_client_template.rst │ │ └── sample_README.rst │ ├── test_and_optimize.rst │ └── test_and_optimize │ │ ├── debugging.rst │ │ ├── logging.rst │ │ ├── optimizing │ │ ├── images │ │ │ ├── app_power_opt_blink_serial_off.png │ │ │ └── app_power_opt_blinky_serial_on.png │ │ ├── index.rst │ │ ├── memory.rst │ │ ├── power.rst │ │ ├── power_general.rst │ │ └── power_opp.rst │ │ └── test_framework │ │ ├── index.rst │ │ ├── running_unit_tests.rst │ │ └── testing_unity_cmock.rst ├── nrfx │ └── nrfx.doxyfile.in ├── nrfxlib │ ├── conf.py │ ├── nrfxlib.doxyfile.in │ └── warnings-inventory.txt ├── requirements.txt ├── tfm │ ├── conf.py │ ├── known-warnings.txt │ └── wrapper.rst ├── versions.json ├── wifi │ └── wifi.doxyfile.in └── zephyr │ ├── conf.py │ └── zephyr.doxyfile.in ├── drivers ├── CMakeLists.txt ├── Kconfig ├── bluetooth │ ├── Kconfig │ └── hci │ │ └── Kconfig ├── entropy │ ├── CMakeLists.txt │ ├── Kconfig │ └── entropy_cc3xx.c ├── flash │ ├── CMakeLists.txt │ ├── Kconfig │ └── flash_rpc │ │ ├── CMakeLists.txt │ │ ├── flash_rpc_common.c │ │ ├── flash_rpc_controller.c │ │ └── flash_rpc_host.c ├── gpio │ ├── CMakeLists.txt │ ├── Kconfig │ ├── gpio_hpf.c │ ├── gpio_hpf.h │ ├── gpio_hpf_icmsg.c │ └── gpio_hpf_mbox.c ├── hw_cc3xx │ ├── CMakeLists.txt │ ├── Kconfig │ └── hw_cc3xx.c ├── mpsl │ ├── CMakeLists.txt │ ├── Kconfig │ ├── clock_control │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── nrfx_clock_mpsl.c │ │ └── nrfx_power_clock.h │ ├── flash_sync │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── flash_sync_mpsl.c │ │ ├── flash_sync_rpc_controller.c │ │ └── flash_sync_rpc_host.c │ └── temp_nrf5 │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── temp_nrf5_mpsl.c ├── mspi │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.hpf │ ├── Kconfig.sqspi │ ├── mspi_hpf.c │ └── mspi_sqspi.c ├── net │ ├── CMakeLists.txt │ ├── Kconfig │ └── eth_rtt.c ├── regulator │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.nrf54l │ └── regulator_nrf54l.c ├── sensor │ ├── CMakeLists.txt │ ├── Kconfig │ ├── bh1749 │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── bh1749.c │ │ ├── bh1749.h │ │ └── bh1749_trigger.c │ ├── bme68x_iaq │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── bme68x_iaq.c │ │ └── bme68x_iaq.h │ ├── paw3212 │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── paw3212.c │ ├── pmw3360 │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── pmw3360.c │ │ └── pmw3360_priv.c │ ├── sensor_sim │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── sensor_sim.c │ └── sensor_stub │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── sensor_stub.c └── serial │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.ipc │ ├── Kconfig.nrf_sw_lpuart │ ├── uart_ipc.c │ └── uart_nrf_sw_lpuart.c ├── dts ├── arm │ ├── nordic │ │ ├── nrf54ls05b_enga_cpuapp.dtsi │ │ ├── nrf54lv10a_enga_cpuapp.dtsi │ │ └── nrf7120_enga_cpuapp.dtsi │ └── sercomm │ │ ├── tpm530m.dtsi │ │ └── tpm530mns.dtsi ├── bindings │ ├── bluetooth │ │ ├── nordic,bt-cs-antenna-switch.yaml │ │ └── nordic,bt-hci-sdc.yaml │ ├── caf │ │ └── caf,aggregator.yaml │ ├── flash │ │ └── nordic,rpc-flash-controller.yaml │ ├── gpio │ │ ├── nordic,gpio-pins.yaml │ │ └── nordic,hpf-gpio.yaml │ ├── mspi │ │ ├── nordic,hpf-mspi-controller.yaml │ │ └── nordic,nrf-sqspi.yaml │ ├── net │ │ ├── nfc │ │ │ └── st,st25r3911b.yaml │ │ └── segger,eth-rtt.yaml │ ├── radio_coex │ │ ├── generic-radio-coex-one-wire.yaml │ │ ├── generic-radio-coex-three-wire.yaml │ │ └── sdc-radio-coex-one-wire.yaml │ ├── radio_fem │ │ ├── nordic,nrf2220-fem-twi.yaml │ │ ├── nordic,nrf2220-fem.yaml │ │ ├── nordic,nrf2240-fem-twi.yaml │ │ ├── nordic,nrf2240-fem.yaml │ │ ├── nordic-nrf22xx-fem-twi-init-reg.yaml │ │ ├── skyworks,sky66112-11.yaml │ │ ├── skyworks,sky66114-11.yaml │ │ ├── skyworks,sky66403-11.yaml │ │ └── skyworks,sky66407-11.yaml │ ├── sensor │ │ ├── nordic,sensor-sim.yaml │ │ ├── nordic,sensor-stub.yaml │ │ ├── pixart,paw3212.yaml │ │ ├── pixart,pmw3360.yaml │ │ └── rohm,bh1749.yaml │ ├── serial │ │ ├── nordic,nrf-ipc-uart.yaml │ │ └── nordic,nrf-sw-lpuart.yaml │ ├── vendor-prefixes.txt │ └── wifi │ │ └── nordic,nrf7120.yaml ├── common │ └── nordic │ │ ├── nrf54ls05b.dtsi │ │ ├── nrf54lv10a.dtsi │ │ ├── nrf7120_enga.dtsi │ │ └── nrf7120_enga_secure_peripherals.dtsi └── riscv │ └── nordic │ ├── nrf54lv10a_enga_cpuflpr.dtsi │ └── nrf7120_enga_cpuflpr.dtsi ├── ext ├── CMakeLists.txt ├── Kconfig ├── curl │ ├── CMakeLists.txt │ ├── Kconfig │ ├── include │ │ ├── Makefile.am │ │ ├── README.md │ │ └── curl │ │ │ ├── .gitignore │ │ │ ├── Makefile.am │ │ │ ├── curl.h │ │ │ ├── curlver.h │ │ │ ├── easy.h │ │ │ ├── mprintf.h │ │ │ ├── multi.h │ │ │ ├── nrf_curl.h │ │ │ ├── options.h │ │ │ ├── stdcheaders.h │ │ │ ├── system.h │ │ │ ├── typecheck-gcc.h │ │ │ └── urlapi.h │ ├── lib │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.inc │ │ ├── Makefile.m32 │ │ ├── Makefile.netware │ │ ├── Makefile.vxworks │ │ ├── altsvc.c │ │ ├── altsvc.h │ │ ├── amigaos.c │ │ ├── amigaos.h │ │ ├── arpa_telnet.h │ │ ├── asyn-ares.c │ │ ├── asyn-thread.c │ │ ├── asyn.h │ │ ├── base64.c │ │ ├── checksrc.pl │ │ ├── config-amigaos.h │ │ ├── config-dos.h │ │ ├── config-mac.h │ │ ├── config-os400.h │ │ ├── config-plan9.h │ │ ├── config-riscos.h │ │ ├── config-tpf.h │ │ ├── config-vxworks.h │ │ ├── config-win32.h │ │ ├── config-win32ce.h │ │ ├── conncache.c │ │ ├── conncache.h │ │ ├── connect.c │ │ ├── connect.h │ │ ├── content_encoding.c │ │ ├── content_encoding.h │ │ ├── cookie.c │ │ ├── cookie.h │ │ ├── curl_addrinfo.c │ │ ├── curl_addrinfo.h │ │ ├── curl_base64.h │ │ ├── curl_config.h │ │ ├── curl_config.h.cmake │ │ ├── curl_config.h.in │ │ ├── curl_ctype.c │ │ ├── curl_ctype.h │ │ ├── curl_des.c │ │ ├── curl_des.h │ │ ├── curl_endian.c │ │ ├── curl_endian.h │ │ ├── curl_fnmatch.c │ │ ├── curl_fnmatch.h │ │ ├── curl_get_line.c │ │ ├── curl_get_line.h │ │ ├── curl_gethostname.c │ │ ├── curl_gethostname.h │ │ ├── curl_gssapi.c │ │ ├── curl_gssapi.h │ │ ├── curl_hmac.h │ │ ├── curl_krb5.h │ │ ├── curl_ldap.h │ │ ├── curl_md4.h │ │ ├── curl_md5.h │ │ ├── curl_memory.h │ │ ├── curl_memrchr.c │ │ ├── curl_memrchr.h │ │ ├── curl_multibyte.c │ │ ├── curl_multibyte.h │ │ ├── curl_ntlm_core.c │ │ ├── curl_ntlm_core.h │ │ ├── curl_ntlm_wb.c │ │ ├── curl_ntlm_wb.h │ │ ├── curl_path.c │ │ ├── curl_path.h │ │ ├── curl_printf.h │ │ ├── curl_range.c │ │ ├── curl_range.h │ │ ├── curl_rtmp.c │ │ ├── curl_rtmp.h │ │ ├── curl_sasl.c │ │ ├── curl_sasl.h │ │ ├── curl_setup.h │ │ ├── curl_setup_once.h │ │ ├── curl_sha256.h │ │ ├── curl_sspi.c │ │ ├── curl_sspi.h │ │ ├── curl_threads.c │ │ ├── curl_threads.h │ │ ├── curlx.h │ │ ├── dict.c │ │ ├── dict.h │ │ ├── doh.c │ │ ├── doh.h │ │ ├── dotdot.c │ │ ├── dotdot.h │ │ ├── dynbuf.c │ │ ├── dynbuf.h │ │ ├── easy.c │ │ ├── easygetopt.c │ │ ├── easyif.h │ │ ├── easyoptions.c │ │ ├── easyoptions.h │ │ ├── escape.c │ │ ├── escape.h │ │ ├── file.c │ │ ├── file.h │ │ ├── fileinfo.c │ │ ├── fileinfo.h │ │ ├── firefox-db2pem.sh │ │ ├── formdata.c │ │ ├── formdata.h │ │ ├── ftp.c │ │ ├── ftp.h │ │ ├── ftplistparser.c │ │ ├── ftplistparser.h │ │ ├── getenv.c │ │ ├── getinfo.c │ │ ├── getinfo.h │ │ ├── gopher.c │ │ ├── gopher.h │ │ ├── hash.c │ │ ├── hash.h │ │ ├── hmac.c │ │ ├── hostasyn.c │ │ ├── hostcheck.c │ │ ├── hostcheck.h │ │ ├── hostip.c │ │ ├── hostip.h │ │ ├── hostip4.c │ │ ├── hostip6.c │ │ ├── hostsyn.c │ │ ├── http.c │ │ ├── http.h │ │ ├── http2.c │ │ ├── http2.h │ │ ├── http_chunks.c │ │ ├── http_chunks.h │ │ ├── http_digest.c │ │ ├── http_digest.h │ │ ├── http_negotiate.c │ │ ├── http_negotiate.h │ │ ├── http_ntlm.c │ │ ├── http_ntlm.h │ │ ├── http_proxy.c │ │ ├── http_proxy.h │ │ ├── idn_win32.c │ │ ├── if2ip.c │ │ ├── if2ip.h │ │ ├── imap.c │ │ ├── imap.h │ │ ├── inet_ntop.c │ │ ├── inet_ntop.h │ │ ├── inet_pton.c │ │ ├── inet_pton.h │ │ ├── krb5.c │ │ ├── ldap.c │ │ ├── libcurl.plist │ │ ├── libcurl.rc │ │ ├── libcurl.vers │ │ ├── libcurl.vers.in │ │ ├── llist.c │ │ ├── llist.h │ │ ├── makefile.amiga │ │ ├── makefile.dj │ │ ├── md4.c │ │ ├── md5.c │ │ ├── memdebug.c │ │ ├── memdebug.h │ │ ├── mime.c │ │ ├── mime.h │ │ ├── mk-ca-bundle.pl │ │ ├── mk-ca-bundle.vbs │ │ ├── mprintf.c │ │ ├── mqtt.c │ │ ├── mqtt.h │ │ ├── multi.c │ │ ├── multihandle.h │ │ ├── multiif.h │ │ ├── netrc.c │ │ ├── netrc.h │ │ ├── non-ascii.c │ │ ├── non-ascii.h │ │ ├── nonblock.c │ │ ├── nonblock.h │ │ ├── nwlib.c │ │ ├── nwos.c │ │ ├── openldap.c │ │ ├── optiontable.pl │ │ ├── parsedate.c │ │ ├── parsedate.h │ │ ├── pingpong.c │ │ ├── pingpong.h │ │ ├── pop3.c │ │ ├── pop3.h │ │ ├── progress.c │ │ ├── progress.h │ │ ├── psl.c │ │ ├── psl.h │ │ ├── quic.h │ │ ├── rand.c │ │ ├── rand.h │ │ ├── rename.c │ │ ├── rename.h │ │ ├── rtsp.c │ │ ├── rtsp.h │ │ ├── select.c │ │ ├── select.h │ │ ├── sendf.c │ │ ├── sendf.h │ │ ├── setopt.c │ │ ├── setopt.h │ │ ├── setup-os400.h │ │ ├── setup-vms.h │ │ ├── setup-win32.h │ │ ├── sha256.c │ │ ├── share.c │ │ ├── share.h │ │ ├── sigpipe.h │ │ ├── slist.c │ │ ├── slist.h │ │ ├── smb.c │ │ ├── smb.h │ │ ├── smtp.c │ │ ├── smtp.h │ │ ├── sockaddr.h │ │ ├── socketpair.c │ │ ├── socketpair.h │ │ ├── socks.c │ │ ├── socks.h │ │ ├── socks_gssapi.c │ │ ├── socks_sspi.c │ │ ├── speedcheck.c │ │ ├── speedcheck.h │ │ ├── splay.c │ │ ├── splay.h │ │ ├── strcase.c │ │ ├── strcase.h │ │ ├── strdup.c │ │ ├── strdup.h │ │ ├── strerror.c │ │ ├── strerror.h │ │ ├── strtok.c │ │ ├── strtok.h │ │ ├── strtoofft.c │ │ ├── strtoofft.h │ │ ├── system_win32.c │ │ ├── system_win32.h │ │ ├── telnet.c │ │ ├── telnet.h │ │ ├── tftp.c │ │ ├── tftp.h │ │ ├── timeval.c │ │ ├── timeval.h │ │ ├── transfer.c │ │ ├── transfer.h │ │ ├── url.c │ │ ├── url.h │ │ ├── urlapi-int.h │ │ ├── urlapi.c │ │ ├── urldata.h │ │ ├── vauth │ │ │ ├── cleartext.c │ │ │ ├── cram.c │ │ │ ├── digest.c │ │ │ ├── digest.h │ │ │ ├── digest_sspi.c │ │ │ ├── krb5_gssapi.c │ │ │ ├── krb5_sspi.c │ │ │ ├── ntlm.c │ │ │ ├── ntlm.h │ │ │ ├── ntlm_sspi.c │ │ │ ├── oauth2.c │ │ │ ├── spnego_gssapi.c │ │ │ ├── spnego_sspi.c │ │ │ ├── vauth.c │ │ │ └── vauth.h │ │ ├── version.c │ │ ├── version_win32.c │ │ ├── version_win32.h │ │ ├── vquic │ │ │ ├── ngtcp2.c │ │ │ ├── ngtcp2.h │ │ │ ├── quiche.c │ │ │ ├── quiche.h │ │ │ ├── vquic.c │ │ │ └── vquic.h │ │ ├── vssh │ │ │ ├── libssh.c │ │ │ ├── libssh2.c │ │ │ ├── ssh.h │ │ │ ├── wolfssh.c │ │ │ └── wolfssh.h │ │ ├── vtls │ │ │ ├── bearssl.c │ │ │ ├── bearssl.h │ │ │ ├── gskit.c │ │ │ ├── gskit.h │ │ │ ├── gtls.c │ │ │ ├── gtls.h │ │ │ ├── keylog.c │ │ │ ├── keylog.h │ │ │ ├── mbedtls.c │ │ │ ├── mbedtls.h │ │ │ ├── mbedtls_threadlock.c │ │ │ ├── mbedtls_threadlock.h │ │ │ ├── mesalink.c │ │ │ ├── mesalink.h │ │ │ ├── nss.c │ │ │ ├── nssg.h │ │ │ ├── openssl.c │ │ │ ├── openssl.h │ │ │ ├── schannel.c │ │ │ ├── schannel.h │ │ │ ├── schannel_verify.c │ │ │ ├── sectransp.c │ │ │ ├── sectransp.h │ │ │ ├── vtls.c │ │ │ ├── vtls.h │ │ │ ├── wolfssl.c │ │ │ └── wolfssl.h │ │ ├── warnless.c │ │ ├── warnless.h │ │ ├── wildcard.c │ │ ├── wildcard.h │ │ ├── x509asn1.c │ │ └── x509asn1.h │ └── tool │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Makefile.am │ │ ├── Makefile.inc │ │ ├── Makefile.m32 │ │ ├── Makefile.netware │ │ ├── curl.rc │ │ ├── makefile.amiga │ │ ├── makefile.dj │ │ ├── mkhelp.pl │ │ ├── slist_wc.c │ │ ├── slist_wc.h │ │ ├── tool_binmode.c │ │ ├── tool_binmode.h │ │ ├── tool_bname.c │ │ ├── tool_bname.h │ │ ├── tool_cb_dbg.c │ │ ├── tool_cb_dbg.h │ │ ├── tool_cb_hdr.c │ │ ├── tool_cb_hdr.h │ │ ├── tool_cb_prg.c │ │ ├── tool_cb_prg.h │ │ ├── tool_cb_rea.c │ │ ├── tool_cb_rea.h │ │ ├── tool_cb_see.c │ │ ├── tool_cb_see.h │ │ ├── tool_cb_wrt.c │ │ ├── tool_cb_wrt.h │ │ ├── tool_cfgable.c │ │ ├── tool_cfgable.h │ │ ├── tool_convert.c │ │ ├── tool_convert.h │ │ ├── tool_dirhie.c │ │ ├── tool_dirhie.h │ │ ├── tool_doswin.c │ │ ├── tool_doswin.h │ │ ├── tool_easysrc.c │ │ ├── tool_easysrc.h │ │ ├── tool_filetime.c │ │ ├── tool_filetime.h │ │ ├── tool_formparse.c │ │ ├── tool_formparse.h │ │ ├── tool_getparam.c │ │ ├── tool_getparam.h │ │ ├── tool_getpass.c │ │ ├── tool_getpass.h │ │ ├── tool_help.c │ │ ├── tool_help.h │ │ ├── tool_helpers.c │ │ ├── tool_helpers.h │ │ ├── tool_homedir.c │ │ ├── tool_homedir.h │ │ ├── tool_hugehelp.h │ │ ├── tool_libinfo.c │ │ ├── tool_libinfo.h │ │ ├── tool_main.c │ │ ├── tool_main.h │ │ ├── tool_metalink.c │ │ ├── tool_metalink.h │ │ ├── tool_msgs.c │ │ ├── tool_msgs.h │ │ ├── tool_operate.c │ │ ├── tool_operate.h │ │ ├── tool_operhlp.c │ │ ├── tool_operhlp.h │ │ ├── tool_panykey.c │ │ ├── tool_panykey.h │ │ ├── tool_paramhlp.c │ │ ├── tool_paramhlp.h │ │ ├── tool_parsecfg.c │ │ ├── tool_parsecfg.h │ │ ├── tool_progress.c │ │ ├── tool_progress.h │ │ ├── tool_sdecls.h │ │ ├── tool_setopt.c │ │ ├── tool_setopt.h │ │ ├── tool_setup.h │ │ ├── tool_sleep.c │ │ ├── tool_sleep.h │ │ ├── tool_strdup.c │ │ ├── tool_strdup.h │ │ ├── tool_urlglob.c │ │ ├── tool_urlglob.h │ │ ├── tool_util.c │ │ ├── tool_util.h │ │ ├── tool_version.h │ │ ├── tool_vms.c │ │ ├── tool_vms.h │ │ ├── tool_writeout.c │ │ ├── tool_writeout.h │ │ ├── tool_writeout_json.c │ │ ├── tool_writeout_json.h │ │ ├── tool_xattr.c │ │ └── tool_xattr.h ├── freebsd-getopt │ ├── CMakeLists.txt │ ├── Kconfig │ ├── getopt.c │ ├── getopt.h │ └── getopt_long.c └── iperf3 │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Makefile.am │ ├── cjson.c │ ├── cjson.h │ ├── dscp.c │ ├── flowlabel.h │ ├── iperf.h │ ├── iperf3.1 │ ├── iperf_api.c │ ├── iperf_api.h │ ├── iperf_auth.c │ ├── iperf_auth.h │ ├── iperf_client_api.c │ ├── iperf_config.h │ ├── iperf_config.h.in │ ├── iperf_error.c │ ├── iperf_locale.c │ ├── iperf_locale.h │ ├── iperf_main.c │ ├── iperf_sctp.c │ ├── iperf_sctp.h │ ├── iperf_server_api.c │ ├── iperf_tcp.c │ ├── iperf_tcp.h │ ├── iperf_time.c │ ├── iperf_time.h │ ├── iperf_udp.c │ ├── iperf_udp.h │ ├── iperf_util.c │ ├── iperf_util.h │ ├── libiperf.3 │ ├── main.c │ ├── net.c │ ├── net.h │ ├── portable_endian.h │ ├── private.pem │ ├── public.pem │ ├── queue.h │ ├── t_api.c │ ├── t_auth.c │ ├── t_timer.c │ ├── t_units.c │ ├── t_uuid.c │ ├── tcp_info.c │ ├── timer.c │ ├── timer.h │ ├── units.c │ ├── units.h │ └── version.h.in ├── include ├── adp536x.h ├── app_event_manager.h ├── app_event_manager_profiler_tracer.h ├── app_jwt.h ├── audio │ └── audio_module_template.h ├── audio_defines.h ├── audio_module │ └── audio_module.h ├── bl_crypto.h ├── bl_storage.h ├── bl_validation.h ├── bluetooth │ ├── adv_prov.h │ ├── adv_prov │ │ ├── fast_pair.h │ │ └── swift_pair.h │ ├── bt_rpc.h │ ├── conn_ctx.h │ ├── cs_de.h │ ├── enocean.h │ ├── gatt_dm.h │ ├── gatt_pool.h │ ├── hci_vs_sdc.h │ ├── mesh │ │ ├── dk_prov.h │ │ ├── gen_battery.h │ │ ├── gen_battery_cli.h │ │ ├── gen_battery_srv.h │ │ ├── gen_dtt.h │ │ ├── gen_dtt_cli.h │ │ ├── gen_dtt_srv.h │ │ ├── gen_loc.h │ │ ├── gen_loc_cli.h │ │ ├── gen_loc_srv.h │ │ ├── gen_lvl.h │ │ ├── gen_lvl_cli.h │ │ ├── gen_lvl_srv.h │ │ ├── gen_onoff.h │ │ ├── gen_onoff_cli.h │ │ ├── gen_onoff_srv.h │ │ ├── gen_plvl.h │ │ ├── gen_plvl_cli.h │ │ ├── gen_plvl_srv.h │ │ ├── gen_ponoff.h │ │ ├── gen_ponoff_cli.h │ │ ├── gen_ponoff_srv.h │ │ ├── gen_prop.h │ │ ├── gen_prop_cli.h │ │ ├── gen_prop_srv.h │ │ ├── light_ctl.h │ │ ├── light_ctl_cli.h │ │ ├── light_ctl_srv.h │ │ ├── light_ctrl.h │ │ ├── light_ctrl_cli.h │ │ ├── light_ctrl_reg.h │ │ ├── light_ctrl_reg_spec.h │ │ ├── light_ctrl_srv.h │ │ ├── light_hsl.h │ │ ├── light_hsl_cli.h │ │ ├── light_hsl_srv.h │ │ ├── light_hue_srv.h │ │ ├── light_sat_srv.h │ │ ├── light_temp_srv.h │ │ ├── light_xyl.h │ │ ├── light_xyl_cli.h │ │ ├── light_xyl_srv.h │ │ ├── lightness.h │ │ ├── lightness_cli.h │ │ ├── lightness_srv.h │ │ ├── model_types.h │ │ ├── models.h │ │ ├── properties.h │ │ ├── scene.h │ │ ├── scene_cli.h │ │ ├── scene_srv.h │ │ ├── scheduler.h │ │ ├── scheduler_cli.h │ │ ├── scheduler_srv.h │ │ ├── sensor.h │ │ ├── sensor_cli.h │ │ ├── sensor_srv.h │ │ ├── sensor_types.h │ │ ├── time.h │ │ ├── time_cli.h │ │ ├── time_srv.h │ │ └── vnd │ │ │ ├── dm_cli.h │ │ │ ├── dm_common.h │ │ │ ├── dm_srv.h │ │ │ ├── le_pair_resp.h │ │ │ └── silvair_enocean_srv.h │ ├── nrf │ │ └── host_extensions.h │ ├── radio_notification_cb.h │ ├── scan.h │ └── services │ │ ├── ams_client.h │ │ ├── ancs_client.h │ │ ├── bas_client.h │ │ ├── bms.h │ │ ├── cgms.h │ │ ├── cts_client.h │ │ ├── ddfs.h │ │ ├── dfu_smp.h │ │ ├── fast_pair │ │ ├── adv_manager.h │ │ ├── fast_pair.h │ │ ├── fmdn.h │ │ └── uuid.h │ │ ├── gattp.h │ │ ├── hids.h │ │ ├── hogp.h │ │ ├── hrs_client.h │ │ ├── latency.h │ │ ├── latency_client.h │ │ ├── lbs.h │ │ ├── mds.h │ │ ├── nsms.h │ │ ├── nus.h │ │ ├── nus_client.h │ │ ├── ras.h │ │ ├── rscs.h │ │ ├── throughput.h │ │ └── wifi_provisioning.h ├── caf │ ├── caf_sensor_common.h │ ├── click_detector.h │ ├── events │ │ ├── ble_common_event.h │ │ ├── ble_smp_event.h │ │ ├── button_event.h │ │ ├── click_event.h │ │ ├── factory_reset_event.h │ │ ├── force_power_down_event.h │ │ ├── keep_alive_event.h │ │ ├── led_event.h │ │ ├── module_state_event.h │ │ ├── module_suspend_event.h │ │ ├── net_state_event.h │ │ ├── power_event.h │ │ ├── power_manager_event.h │ │ ├── sensor_data_aggregator_event.h │ │ └── sensor_event.h │ ├── gpio_pins.h │ ├── key_id.h │ ├── led_effect.h │ └── sensor_manager.h ├── contin_array.h ├── data_fifo.h ├── date_time.h ├── debug │ ├── cpu_load.h │ ├── etb_trace.h │ └── ppi_trace.h ├── dfu │ ├── dfu_multi_image.h │ ├── dfu_target.h │ ├── dfu_target_custom.h │ ├── dfu_target_full_modem.h │ ├── dfu_target_mcuboot.h │ ├── dfu_target_modem_delta.h │ ├── dfu_target_smp.h │ ├── dfu_target_stream.h │ ├── fmfu_fdev.h │ ├── pcd.h │ └── pcd_common.h ├── dk_buttons_and_leds.h ├── dm.h ├── drivers │ ├── bme68x_iaq.h │ ├── flash │ │ └── flash_rpc.h │ ├── gpio │ │ └── hpf_gpio.h │ ├── mspi │ │ └── hpf_mspi.h │ ├── sensor_sim.h │ └── sensor_stub.h ├── dult.h ├── ei_wrapper.h ├── emds │ └── emds.h ├── esb.h ├── event_manager_proxy.h ├── fem_al │ └── fem_al.h ├── flash_map_pm.h ├── fprotect.h ├── fw_info.h ├── fw_info_bare.h ├── gzll_glue.h ├── gzp.h ├── gzp_config.h ├── hpf │ └── hpf_common.h ├── hw_id.h ├── hw_unique_key.h ├── identity_key.h ├── logging │ └── log_rpc.h ├── memfault_ncs.h ├── mgmt │ ├── fmfu_mgmt.h │ └── fmfu_mgmt_stat.h ├── modem │ ├── at_cmd_custom.h │ ├── at_monitor.h │ ├── at_parser.h │ ├── location.h │ ├── lte_lc.h │ ├── lte_lc_trace.h │ ├── modem_attest_token.h │ ├── modem_battery.h │ ├── modem_info.h │ ├── modem_jwt.h │ ├── modem_key_mgmt.h │ ├── nrf_modem_lib.h │ ├── nrf_modem_lib_trace.h │ ├── ntn.h │ ├── pdn.h │ ├── sms.h │ ├── trace_backend.h │ └── uicc_lwm2m.h ├── mpsl │ ├── flash_sync_rpc_host.h │ ├── mpsl_assert.h │ ├── mpsl_cx_nrf700x.h │ ├── mpsl_cx_software.h │ ├── mpsl_lib.h │ └── mpsl_work.h ├── net │ ├── aws_fota.h │ ├── aws_iot.h │ ├── aws_jobs.h │ ├── azure_fota.h │ ├── azure_iot_hub.h │ ├── azure_iot_hub_dps.h │ ├── coap_utils.h │ ├── downloader.h │ ├── downloader_transport.h │ ├── downloader_transport_coap.h │ ├── downloader_transport_http.h │ ├── fota_download.h │ ├── ftp_client.h │ ├── icalendar_parser.h │ ├── l2_wifi_connect.h │ ├── lwm2m_client_utils.h │ ├── lwm2m_client_utils_location.h │ ├── mqtt_helper.h │ ├── nrf_cloud.h │ ├── nrf_cloud_agnss.h │ ├── nrf_cloud_alert.h │ ├── nrf_cloud_coap.h │ ├── nrf_cloud_codec.h │ ├── nrf_cloud_defs.h │ ├── nrf_cloud_fota_poll.h │ ├── nrf_cloud_location.h │ ├── nrf_cloud_log.h │ ├── nrf_cloud_os.h │ ├── nrf_cloud_pgps.h │ ├── nrf_cloud_rest.h │ ├── nrf_provisioning.h │ ├── ot_rpc.h │ ├── rest_client.h │ ├── softap_wifi_provision.h │ ├── wifi_location_common.h │ ├── wifi_mgmt_ext.h │ ├── wifi_prov_core │ │ └── wifi_prov_core.h │ └── wifi_ready.h ├── net_core_monitor.h ├── nfc │ ├── ndef │ │ ├── ch.h │ │ ├── ch_msg.h │ │ ├── ch_rec_parser.h │ │ ├── launchapp_msg.h │ │ ├── launchapp_rec.h │ │ ├── le_oob_rec.h │ │ ├── le_oob_rec_parser.h │ │ ├── msg.h │ │ ├── msg_parser.h │ │ ├── payload_type_common.h │ │ ├── record.h │ │ ├── record_parser.h │ │ ├── text_rec.h │ │ ├── tnep_rec.h │ │ ├── uri_msg.h │ │ └── uri_rec.h │ ├── t2t │ │ ├── parser.h │ │ └── tlv_block.h │ ├── t4t │ │ ├── apdu.h │ │ ├── cc_file.h │ │ ├── hl_procedure.h │ │ ├── isodep.h │ │ ├── ndef_file.h │ │ └── tlv_block.h │ └── tnep │ │ ├── base.h │ │ ├── ch.h │ │ ├── poller.h │ │ └── tag.h ├── nrf_compress │ ├── implementation.h │ └── lzma_types.h ├── nrf_profiler.h ├── nrf_rpc │ ├── nrf_rpc_cbkproxy.h │ ├── nrf_rpc_ipc.h │ ├── nrf_rpc_serialize.h │ ├── nrf_rpc_uart.h │ └── rpc_utils │ │ ├── crash_gen.h │ │ ├── dev_info.h │ │ ├── remote_shell.h │ │ └── system_health.h ├── pcm_mix.h ├── pcm_stream_channel_modifier.h ├── power │ └── reboot.h ├── qos.h ├── ram_pwrdn.h ├── sample_rate_converter.h ├── sensor │ ├── paw3212.h │ └── pmw3360.h ├── sfloat.h ├── shell │ ├── shell_bt_nus.h │ ├── shell_ipc.h │ └── shell_nfc.h ├── st25r3911b_nfca.h ├── supl_os_client.h ├── tfm │ ├── ironside │ │ └── se │ │ │ └── ipc_service.h │ ├── platform_builtin_key_loader_ids.h │ ├── platform_otp_ids.h │ ├── tfm_builtin_key_ids.h │ └── tfm_ioctl_api.h ├── tone.h ├── uart_async_adapter.h ├── util │ ├── util_internal.h │ └── util_macro.h └── wave_gen.h ├── lib ├── CMakeLists.txt ├── Kconfig ├── adp536x │ ├── CMakeLists.txt │ ├── Kconfig │ └── adp536x.c ├── app_jwt │ ├── CMakeLists.txt │ ├── Kconfig │ └── app_jwt.c ├── at_cmd_custom │ ├── CMakeLists.txt │ ├── Kconfig │ ├── at_cmd_custom.c │ └── at_cmd_custom.ld ├── at_host │ ├── CMakeLists.txt │ ├── Kconfig │ └── at_host.c ├── at_monitor │ ├── CMakeLists.txt │ ├── Kconfig │ ├── at_monitor.c │ └── at_monitor.ld ├── at_parser │ ├── CMakeLists.txt │ ├── Kconfig │ ├── at_match.h │ ├── at_match.re │ ├── at_parser.c │ ├── at_token.h │ └── generated │ │ └── at_match.c ├── at_shell │ ├── CMakeLists.txt │ ├── Kconfig │ └── at_shell.c ├── bin │ ├── CMakeLists.txt │ ├── Kconfig │ └── lwm2m_carrier │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── include │ │ ├── lwm2m_carrier.h │ │ ├── lwm2m_os.h │ │ └── lwm2m_settings.h │ │ ├── lib │ │ └── cortex-m33 │ │ │ └── hard-float │ │ │ └── liblwm2m_carrier.a │ │ ├── license.txt │ │ ├── os │ │ ├── lwm2m_carrier.c │ │ ├── lwm2m_os.c │ │ ├── lwm2m_settings.c │ │ └── lwm2m_shell.c │ │ ├── pm.yml.lwm2m_carrier │ │ └── scripts │ │ └── lwm2m_carrier_divided_dfu.py ├── boot_banner │ ├── CMakeLists.txt │ ├── Kconfig │ └── banner.c ├── contin_array │ ├── CMakeLists.txt │ ├── Kconfig │ └── contin_array.c ├── data_fifo │ ├── CMakeLists.txt │ ├── Kconfig │ └── data_fifo.c ├── date_time │ ├── CMakeLists.txt │ ├── Kconfig │ ├── date_time.c │ ├── date_time_core.c │ ├── date_time_core.h │ ├── date_time_modem.c │ ├── date_time_modem.h │ ├── date_time_ntp.c │ └── date_time_ntp.h ├── dk_buttons_and_leds │ ├── CMakeLists.txt │ ├── Kconfig │ └── dk_buttons_and_leds.c ├── edge_impulse │ ├── CMakeLists.ei.template │ ├── CMakeLists.txt │ ├── Kconfig │ └── ei_wrapper.cpp ├── fatal_error │ ├── CMakeLists.txt │ ├── Kconfig │ └── fatal_error.c ├── fem_al │ ├── CMakeLists.txt │ ├── Kconfig │ ├── fem_al.c │ ├── fem_interface.h │ ├── generic_fem.c │ ├── nrf21540.c │ ├── nrf22xx.c │ └── radio_def.h ├── flash_patch │ ├── CMakeLists.txt │ ├── Kconfig │ └── flash_patch.c ├── fprotect │ ├── CMakeLists.txt │ ├── Kconfig │ ├── fprotect_acl.c │ ├── fprotect_bprot.c │ ├── fprotect_rram.c │ ├── fprotect_spu.c │ └── sys_init_fprotect.c ├── gcf_sms │ ├── CMakeLists.txt │ ├── Kconfig │ └── gcf_sms.c ├── hw_id │ ├── CMakeLists.txt │ ├── Kconfig │ └── hw_id.c ├── hw_unique_key │ ├── CMakeLists.txt │ ├── Kconfig │ ├── hw_unique_key_cc3xx.c │ ├── hw_unique_key_cc3xx_acl.c │ ├── hw_unique_key_cc3xx_kmu.c │ ├── hw_unique_key_cracen_kmu.c │ ├── hw_unique_key_internal.h │ └── pm.yml.huk_cc3xx ├── identity_key │ ├── CMakeLists.txt │ ├── Kconfig │ └── identity_key.c ├── location │ ├── CMakeLists.txt │ ├── Kconfig │ ├── cloud_service.c │ ├── cloud_service.h │ ├── location.c │ ├── location_core.c │ ├── location_core.h │ ├── location_utils.c │ ├── location_utils.h │ ├── method_cloud_location.c │ ├── method_cloud_location.h │ ├── method_gnss.c │ ├── method_gnss.h │ ├── scan_cellular.c │ ├── scan_cellular.h │ ├── scan_wifi.c │ └── scan_wifi.h ├── lte_link_control │ ├── CMakeLists.txt │ ├── Kconfig │ ├── common │ │ ├── CMakeLists.txt │ │ ├── event_handler_list.c │ │ ├── helpers.c │ │ └── work_q.c │ ├── include │ │ ├── common │ │ │ ├── event_handler_list.h │ │ │ ├── helpers.h │ │ │ └── work_q.h │ │ └── modules │ │ │ ├── cereg.h │ │ │ ├── cfun.h │ │ │ ├── coneval.h │ │ │ ├── cscon.h │ │ │ ├── dns.h │ │ │ ├── edrx.h │ │ │ ├── enveval.h │ │ │ ├── mdmev.h │ │ │ ├── ncellmeas.h │ │ │ ├── pdn.h │ │ │ ├── periodicsearchconf.h │ │ │ ├── psm.h │ │ │ ├── rai.h │ │ │ ├── xmodemsleep.h │ │ │ ├── xsystemmode.h │ │ │ └── xt3412.h │ ├── lte_lc.c │ ├── lte_lc_modem_hooks.c │ ├── lte_lc_shell.c │ ├── lte_lc_trace.c │ └── modules │ │ ├── CMakeLists.txt │ │ ├── cellular_profile.c │ │ ├── cereg.c │ │ ├── cfun.c │ │ ├── coneval.c │ │ ├── cscon.c │ │ ├── dns.c │ │ ├── edrx.c │ │ ├── enveval.c │ │ ├── esm.c │ │ ├── mdmev.c │ │ ├── ncellmeas.c │ │ ├── pdn.c │ │ ├── periodicsearchconf.c │ │ ├── psm.c │ │ ├── rai.c │ │ ├── xmodemsleep.c │ │ ├── xsystemmode.c │ │ └── xt3412.c ├── modem_antenna │ ├── CMakeLists.txt │ ├── Kconfig │ └── modem_antenna.c ├── modem_attest_token │ ├── CMakeLists.txt │ ├── Kconfig │ └── modem_attest_token.c ├── modem_battery │ ├── CMakeLists.txt │ ├── Kconfig │ └── modem_battery.c ├── modem_info │ ├── CMakeLists.txt │ ├── Kconfig │ ├── modem_info.c │ └── modem_info_params.c ├── modem_jwt │ ├── CMakeLists.txt │ ├── Kconfig │ └── modem_jwt.c ├── modem_key_mgmt │ ├── CMakeLists.txt │ ├── Kconfig │ └── modem_key_mgmt.c ├── multithreading_lock │ ├── CMakeLists.txt │ ├── Kconfig │ ├── multithreading_lock.c │ └── multithreading_lock.h ├── nrf_modem_lib │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.modemlib │ ├── cfun_hooks.c │ ├── cfun_hooks.ld │ ├── diag.c │ ├── fault.c │ ├── lte_net_if │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── lte_ip_addr_helper.c │ │ ├── lte_ip_addr_helper.h │ │ └── lte_net_if.c │ ├── nrf9x_sockets.c │ ├── nrf_modem_lib.c │ ├── nrf_modem_lib.ld │ ├── nrf_modem_lib_trace.c │ ├── nrf_modem_os.c │ ├── nrf_modem_os_rpc.c │ ├── sanity.c │ ├── shell │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── trace.c │ └── trace_backends │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── flash │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── flash.c │ │ ├── ram │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── ram.c │ │ ├── rtt │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── rtt.c │ │ └── uart │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── uart.c ├── ntn │ ├── CMakeLists.txt │ ├── Kconfig │ └── ntn.c ├── pcm_mix │ ├── CMakeLists.txt │ ├── Kconfig │ └── pcm_mix.c ├── pcm_stream_channel_modifier │ ├── CMakeLists.txt │ ├── Kconfig │ └── pcm_stream_channel_modifier.c ├── pdn │ ├── CMakeLists.txt │ ├── Kconfig │ ├── esm.c │ └── pdn.c ├── qos │ ├── CMakeLists.txt │ ├── Kconfig │ └── qos.c ├── ram_pwrdn │ ├── CMakeLists.txt │ ├── Kconfig │ └── ram_pwrdn.c ├── sample_rate_converter │ ├── CMakeLists.txt │ ├── Kconfig │ ├── sample_rate_converter.c │ ├── sample_rate_converter_filter.c │ └── sample_rate_converter_filter.h ├── sfloat │ ├── CMakeLists.txt │ ├── Kconfig │ └── sfloat.c ├── sms │ ├── CMakeLists.txt │ ├── Kconfig │ ├── parser.c │ ├── parser.h │ ├── sms.c │ ├── sms_deliver.c │ ├── sms_deliver.h │ ├── sms_internal.h │ ├── sms_submit.c │ ├── sms_submit.h │ ├── string_conversion.c │ └── string_conversion.h ├── st25r3911b │ ├── CMakeLists.txt │ ├── Kconfig │ ├── st25r3911b_common.c │ ├── st25r3911b_common.h │ ├── st25r3911b_dt.h │ ├── st25r3911b_interrupt.c │ ├── st25r3911b_interrupt.h │ ├── st25r3911b_nfca.c │ ├── st25r3911b_reg.h │ ├── st25r3911b_spi.c │ └── st25r3911b_spi.h ├── supl │ ├── CMakeLists.txt │ ├── Kconfig │ ├── include │ │ ├── lte_params.h │ │ └── utils.h │ └── os │ │ ├── lte_params.c │ │ ├── supl_os_client.c │ │ └── utils.c ├── tone │ ├── CMakeLists.txt │ ├── Kconfig │ └── tone.c ├── uicc_lwm2m │ ├── CMakeLists.txt │ ├── Kconfig │ ├── asn1_decode.c │ ├── asn1_decode.h │ ├── pkcs15_decode.c │ ├── pkcs15_decode.h │ └── uicc_lwm2m.c └── wave_gen │ ├── CMakeLists.txt │ ├── Kconfig │ └── wave_gen.c ├── modules ├── CMakeLists.txt ├── Kconfig ├── azure-sdk-for-c │ ├── CMakeLists.txt │ └── Kconfig ├── cjson │ ├── CMakeLists.txt │ ├── Kconfig │ ├── include │ │ └── cJSON_os.h │ └── os │ │ └── cJSON_os.c ├── coremark │ ├── CMakeLists.txt │ ├── Kconfig │ ├── core_portme.c │ ├── core_portme.h │ └── coremark_zephyr.h ├── hal_nordic │ ├── CMakeLists.txt │ ├── nrfx │ │ └── CMakeLists.txt │ └── nrfx_config_ext.h ├── mcuboot │ ├── CMakeLists.txt │ ├── Kconfig │ ├── boot │ │ └── zephyr │ │ │ └── Kconfig │ ├── flash_sim.overlay │ ├── hooks │ │ ├── CMakeLists.txt │ │ ├── hooks_find_next_slot.c │ │ └── nrf53_hooks.c │ ├── hw_counters.conf │ ├── nrf5340_exip_image.conf │ ├── tfm.conf │ └── usb.overlay ├── memfault-firmware-sdk │ ├── CMakeLists.txt │ ├── Kconfig │ ├── config │ │ ├── memfault_metrics_heartbeat_extra.def │ │ └── memfault_platform_config_extra.h │ ├── include │ │ ├── memfault_bt_metrics.h │ │ ├── memfault_location_metrics.h │ │ ├── memfault_lte_coredump_modem_trace.h │ │ ├── memfault_lte_metrics.h │ │ └── memfault_ncs_metrics.h │ ├── memfault_bt_metrics.c │ ├── memfault_etb_trace_capture.c │ ├── memfault_flash_coredump_storage.c │ ├── memfault_integration.c │ ├── memfault_location_metrics.c │ ├── memfault_lte_coredump.c │ ├── memfault_lte_coredump_modem_trace.c │ ├── memfault_lte_metrics.c │ └── memfault_ncs_metrics.c ├── modules.cmake ├── nrfxlib │ ├── CMakeLists.txt │ └── nrf_802154 │ │ ├── CMakeLists.txt │ │ └── sl │ │ └── platform │ │ ├── nrf_802154_hp_timer.c │ │ ├── nrf_802154_platform_sl_lptimer_grtc.c │ │ ├── nrf_802154_platform_sl_lptimer_grtc_hw_task.c │ │ ├── nrf_802154_platform_sl_lptimer_grtc_hw_task.h │ │ ├── nrf_802154_platform_sl_lptimer_zephyr.c │ │ └── nrf_802154_platform_timestamper.c ├── openthread │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.features.nrf │ ├── Kconfig.nrf5 │ └── platform │ │ ├── CMakeLists.txt │ │ ├── crypto_psa.c │ │ ├── radio_nrf5.c │ │ └── radio_nrf5.h ├── trusted-firmware-m │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.mbedtls.defconfig │ ├── Kconfig.mbedtls_minimal.defconfig │ ├── Kconfig.peripheral_secure │ ├── Kconfig.psa.defconfig │ ├── Kconfig.template.peripheral_secure │ ├── Kconfig.tfm.defconfig │ ├── Kconfig.tfm.pm │ ├── Kconfig.tfm_minimal.defconfig │ ├── fault.c │ ├── tfm_boards │ │ ├── CMakeLists.txt │ │ ├── board │ │ │ ├── RTE_Device.h │ │ │ ├── device_cfg.h │ │ │ ├── nrf_board.h │ │ │ └── tfm_peripherals_config.h │ │ ├── common │ │ │ ├── assert.c │ │ │ ├── attest_hal.c │ │ │ ├── config.cmake │ │ │ ├── crypto_keys.c │ │ │ ├── dummy_otp.c │ │ │ ├── dummy_provisioning.c │ │ │ ├── dummy_tfm_sp_log_raw.c │ │ │ ├── dummy_uart_stdout.c │ │ │ ├── nrf_provisioning.c │ │ │ ├── nrf_provisioning.h │ │ │ ├── ns_fault_service.c │ │ │ ├── tfm_hal_platform.c │ │ │ └── tfm_hal_reset_halt.c │ │ ├── external_core.cmake │ │ ├── external_core_install.cmake │ │ ├── include │ │ │ └── zephyr │ │ │ │ ├── irq.h │ │ │ │ ├── kernel.h │ │ │ │ ├── logging │ │ │ │ └── log.h │ │ │ │ └── sys │ │ │ │ ├── __assert.h │ │ │ │ ├── check.h │ │ │ │ └── printk.h │ │ ├── nrf5340_cpuapp │ │ │ ├── CMakeLists.txt │ │ │ ├── config.cmake │ │ │ ├── cpuarch.cmake │ │ │ └── ns │ │ │ │ └── cpuarch_ns.cmake │ │ ├── nrf54l10_cpuapp │ │ │ ├── CMakeLists.txt │ │ │ ├── config.cmake │ │ │ ├── cpuarch.cmake │ │ │ └── ns │ │ │ │ └── cpuarch_ns.cmake │ │ ├── nrf54l15_cpuapp │ │ │ ├── CMakeLists.txt │ │ │ ├── config.cmake │ │ │ ├── cpuarch.cmake │ │ │ └── ns │ │ │ │ └── cpuarch_ns.cmake │ │ ├── nrf54lm20a_cpuapp │ │ │ ├── CMakeLists.txt │ │ │ ├── config.cmake │ │ │ ├── cpuarch.cmake │ │ │ └── ns │ │ │ │ └── cpuarch_ns.cmake │ │ ├── nrf54lv10a_cpuapp │ │ │ ├── CMakeLists.txt │ │ │ ├── config.cmake │ │ │ ├── cpuarch.cmake │ │ │ └── ns │ │ │ │ └── cpuarch_ns.cmake │ │ ├── nrf7120_cpuapp │ │ │ ├── CMakeLists.txt │ │ │ ├── config.cmake │ │ │ ├── cpuarch.cmake │ │ │ └── ns │ │ │ │ └── cpuarch_ns.cmake │ │ ├── nrf9120 │ │ │ ├── CMakeLists.txt │ │ │ ├── config.cmake │ │ │ ├── cpuarch.cmake │ │ │ └── ns │ │ │ │ └── cpuarch_ns.cmake │ │ ├── nrf9160 │ │ │ ├── CMakeLists.txt │ │ │ ├── config.cmake │ │ │ ├── cpuarch.cmake │ │ │ └── ns │ │ │ │ └── cpuarch_ns.cmake │ │ ├── ns │ │ │ └── CMakeLists.txt │ │ ├── partition │ │ │ ├── flash_layout.h │ │ │ └── region_defs.h │ │ ├── services │ │ │ └── include │ │ │ │ ├── ns_fault_service.h │ │ │ │ └── tfm_platform_user_memory_ranges.h │ │ └── src │ │ │ ├── log_memory_protection.c │ │ │ ├── tfm_ioctl_ns_api.c │ │ │ ├── tfm_ioctl_s_api.c │ │ │ └── tfm_platform_system.c │ ├── tfm_config.h.in │ └── tfm_ns_fault.h └── wfa-qt │ ├── CMakeLists.txt │ ├── Kconfig │ └── src │ ├── common.h │ ├── indigo_api_callback_dut.c │ ├── main.c │ ├── utils.c │ ├── vendor_specific_dut.c │ └── wpas_events.c ├── samples ├── CMakeLists.txt ├── Kconfig ├── app_event_manager │ ├── CMakeLists.txt │ ├── README.rst │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ ├── events │ │ ├── ack_event.c │ │ ├── ack_event.h │ │ ├── config_event.c │ │ ├── config_event.h │ │ ├── control_event.c │ │ ├── control_event.h │ │ ├── measurement_event.c │ │ └── measurement_event.h │ │ ├── main.c │ │ └── modules │ │ ├── controller.c │ │ ├── sensor_simulated.c │ │ └── stats.c ├── app_event_manager_profiler_tracer │ ├── CMakeLists.txt │ ├── README.rst │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ ├── events │ │ ├── burst_event.c │ │ ├── burst_event.h │ │ ├── config_event.c │ │ ├── config_event.h │ │ ├── five_sec_event.c │ │ ├── five_sec_event.h │ │ ├── one_sec_event.c │ │ └── one_sec_event.h │ │ ├── main.c │ │ └── modules │ │ ├── module_a.c │ │ └── module_b.c ├── app_jwt │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── boards │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ ├── prj.conf │ ├── sample.yaml │ ├── src │ │ └── main.c │ └── uart_logging.conf ├── basic │ └── empty │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ └── main.c ├── benchmarks │ └── coremark │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── app.overlay │ │ ├── boards │ │ ├── app_aliases_common.dtsi │ │ ├── nrf52833dk_nrf52833.conf │ │ ├── nrf52840dk_nrf52840.conf │ │ ├── nrf52dk_nrf52832.conf │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ ├── nrf5340dk_nrf5340_cpunet.conf │ │ ├── nrf5340dk_nrf5340_cpunet.overlay │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ ├── nrf54h20dk_nrf54h20_cpuflpr.conf │ │ ├── nrf54h20dk_nrf54h20_cpuflpr.overlay │ │ ├── nrf54h20dk_nrf54h20_cpuppr.conf │ │ ├── nrf54h20dk_nrf54h20_cpuppr.overlay │ │ ├── nrf54h20dk_nrf54h20_cpurad.conf │ │ ├── nrf54h20dk_nrf54h20_cpurad.overlay │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ ├── nrf54l15dk_nrf54l15_cpuflpr.conf │ │ ├── nrf54l15dk_nrf54l15_cpuflpr.overlay │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ ├── nrf54lm20dk_nrf54lm20a_cpuflpr.conf │ │ ├── nrf54lm20dk_nrf54lm20a_cpuflpr.overlay │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ ├── nrf7120pdk_nrf7120_cpuapp.conf │ │ ├── nrf7120pdk_nrf7120_cpuapp.overlay │ │ ├── nrf7120pdk_nrf7120_cpuflpr.conf │ │ └── nrf7120pdk_nrf7120_cpuflpr.overlay │ │ ├── prj.conf │ │ ├── prj_flash_and_run.conf │ │ ├── prj_heap_memory.conf │ │ ├── prj_multiple_threads.conf │ │ ├── prj_static_memory.conf │ │ ├── sample.yaml │ │ ├── src │ │ └── main.c │ │ ├── sysbuild.cmake │ │ └── sysbuild.conf ├── bluetooth │ ├── central_and_peripheral_hrs │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.conf │ │ ├── hr_service.ncs │ │ ├── hrs_adv_setup.ncs │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild │ │ │ └── ipc_radio.conf │ ├── central_bas │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── hids_keyboard.ncs │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── central_hids │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp_ns.conf │ │ ├── hids_keyboard.ncs │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── central_hr_coded │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild │ │ │ └── ipc_radio │ │ │ └── prj.conf │ ├── central_nfc_pairing │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── images │ │ │ ├── nfc_negotiated_connection_handover.svg │ │ │ └── nfc_static_connection_handover.svg │ │ ├── nrf52833dk_nrf52833.overlay │ │ ├── nrf52840dk_nrf52840.overlay │ │ ├── nrf52dk_nrf52832.overlay │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ ├── main.c │ │ │ ├── nfc_poller.c │ │ │ └── nfc_poller.h │ ├── central_smp_client │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── central_uart │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── app.overlay │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp_ns.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ ├── sysbuild │ │ │ └── ipc_radio │ │ │ │ ├── prj.conf │ │ │ │ └── prj_bt_rpc.conf │ │ └── sysbuild_bt_rpc.conf │ ├── channel_sounding_ras_initiator │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp_ns.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild │ │ │ └── ipc_radio │ │ │ ├── boards │ │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ └── prj.conf │ ├── channel_sounding_ras_reflector │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── android_ranging.conf │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp_ns.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild │ │ │ └── ipc_radio │ │ │ ├── boards │ │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ └── prj.conf │ ├── conn_time_sync │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf52833dk_nrf52833.conf │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ ├── nrf5340_audio_dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ ├── include │ │ │ └── conn_time_sync.h │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── central.c │ │ │ ├── controller_time_nrf52.c │ │ │ ├── controller_time_nrf53_app.c │ │ │ ├── controller_time_nrf54.c │ │ │ ├── main.c │ │ │ ├── peripheral.c │ │ │ └── timed_led_toggle.c │ │ └── sysbuild │ │ │ └── ipc_radio │ │ │ ├── boards │ │ │ └── nrf54h20dk_nrf54h20_cpurad.conf │ │ │ └── prj.conf │ ├── direct_test_mode │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── app.overlay │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpunet.conf │ │ │ ├── nrf5340dk_nrf5340_cpunet.overlay │ │ │ ├── nrf5340dk_nrf5340_cpunet_hci.conf │ │ │ ├── nrf5340dk_nrf5340_cpunet_hci.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpurad.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpurad_usb_54h20.overlay │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ ├── no-dfe.overlay │ │ ├── prj.conf │ │ ├── prj_hci.conf │ │ ├── prj_usb_5340.conf │ │ ├── prj_usb_54h20.conf │ │ ├── remote_hci │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── boards │ │ │ │ └── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ └── src │ │ │ │ └── main.c │ │ ├── rpc │ │ │ └── dtm_serialization.h │ │ ├── sample.yaml │ │ ├── socs │ │ │ └── nrf52840.conf │ │ ├── src │ │ │ ├── dtm.c │ │ │ ├── dtm.h │ │ │ ├── dtm_hw.c │ │ │ ├── dtm_hw.h │ │ │ ├── dtm_hw_config.h │ │ │ ├── main.c │ │ │ └── transport │ │ │ │ ├── dtm_hci.c │ │ │ │ ├── dtm_transport.h │ │ │ │ ├── dtm_uart_twowire.c │ │ │ │ ├── hci_uart.c │ │ │ │ ├── hci_uart.h │ │ │ │ └── hci_uart_remote.c │ │ ├── sysbuild.cmake │ │ ├── sysbuild.conf │ │ ├── sysbuild │ │ │ └── remote_shell │ │ │ │ ├── boards │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp_usb_5340.overlay │ │ │ │ └── usb.dts │ │ │ │ ├── prj.conf │ │ │ │ └── prj_usb_5340.conf │ │ └── sysbuild_hci.conf │ ├── direction_finding_central │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf52833dk_nrf52820.conf │ │ │ ├── nrf52833dk_nrf52820.overlay │ │ │ ├── nrf52833dk_nrf52833.conf │ │ │ ├── nrf52833dk_nrf52833.overlay │ │ │ └── nrf5340dk_nrf5340_cpuapp.overlay │ │ ├── overlay-aod.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ ├── sysbuild.cmake │ │ └── sysbuild │ │ │ └── ipc_radio │ │ │ ├── boards │ │ │ └── nrf5340dk_nrf5340_cpunet.overlay │ │ │ └── prj.conf │ ├── direction_finding_connectionless_rx │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf52833dk_nrf52820.conf │ │ │ ├── nrf52833dk_nrf52820.overlay │ │ │ ├── nrf52833dk_nrf52833.conf │ │ │ ├── nrf52833dk_nrf52833.overlay │ │ │ └── nrf5340dk_nrf5340_cpuapp.overlay │ │ ├── overlay-aod.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ ├── sysbuild.cmake │ │ └── sysbuild │ │ │ └── ipc_radio │ │ │ ├── boards │ │ │ └── nrf5340dk_nrf5340_cpunet.overlay │ │ │ └── prj.conf │ ├── direction_finding_connectionless_tx │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf52833dk_nrf52820.conf │ │ │ ├── nrf52833dk_nrf52820.overlay │ │ │ ├── nrf52833dk_nrf52833.conf │ │ │ ├── nrf52833dk_nrf52833.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp_ns.conf │ │ ├── overlay-aod.conf │ │ ├── overlay-bt_ll_sw_split.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild │ │ │ └── ipc_radio │ │ │ ├── boards │ │ │ └── nrf5340dk_nrf5340_cpunet.overlay │ │ │ └── prj.conf │ ├── direction_finding_peripheral │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf52833dk_nrf52820.conf │ │ │ ├── nrf52833dk_nrf52820.overlay │ │ │ ├── nrf52833dk_nrf52833.conf │ │ │ ├── nrf52833dk_nrf52833.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp_ns.conf │ │ ├── overlay-aod.conf │ │ ├── overlay-bt_ll_sw_split.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild │ │ │ └── ipc_radio │ │ │ ├── boards │ │ │ └── nrf5340dk_nrf5340_cpunet.overlay │ │ │ └── prj.conf │ ├── enocean │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── event_trigger │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf52dk_nrf52832.overlay │ │ │ ├── nrf5340dk_nrf5340_cpunet.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp_ns.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── fast_pair │ │ ├── input_device │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.sysbuild │ │ │ ├── README.rst │ │ │ ├── boards │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── include │ │ │ │ ├── battery_module.h │ │ │ │ ├── bt_adv_helper.h │ │ │ │ └── hids_helper.h │ │ │ ├── prj.conf │ │ │ ├── sample.yaml │ │ │ ├── src │ │ │ │ ├── battery_module.c │ │ │ │ ├── bt_adv_helper.c │ │ │ │ ├── bt_le_adv_prov_uuid16.c │ │ │ │ ├── hids_helper.c │ │ │ │ └── main.c │ │ │ └── sysbuild │ │ │ │ └── ipc_radio │ │ │ │ └── prj.conf │ │ └── locator_tag │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.sysbuild │ │ │ ├── README.rst │ │ │ ├── VERSION │ │ │ ├── boards │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── configuration │ │ │ ├── boards │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp_common.dtsi │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns_release.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ ├── thingy53_nrf5340_cpuapp.conf │ │ │ │ ├── thingy53_nrf5340_cpuapp.overlay │ │ │ │ ├── thingy53_nrf5340_cpuapp_common.dtsi │ │ │ │ ├── thingy53_nrf5340_cpuapp_ns.conf │ │ │ │ ├── thingy53_nrf5340_cpuapp_ns.overlay │ │ │ │ ├── thingy53_nrf5340_cpuapp_ns_release.conf │ │ │ │ └── thingy53_nrf5340_cpuapp_release.conf │ │ │ ├── pm_static_nrf52833dk_nrf52833_release.yml │ │ │ ├── pm_static_nrf52840dk_nrf52840.yml │ │ │ ├── pm_static_nrf52dk_nrf52832_release.yml │ │ │ ├── pm_static_nrf5340dk_nrf5340_cpuapp.yml │ │ │ ├── pm_static_nrf5340dk_nrf5340_cpuapp_ns.yml │ │ │ ├── pm_static_nrf54l15dk_nrf54l05_cpuapp_release.yml │ │ │ ├── pm_static_nrf54l15dk_nrf54l10_cpuapp.yml │ │ │ ├── pm_static_nrf54l15dk_nrf54l15_cpuapp.yml │ │ │ ├── pm_static_nrf54lm20dk_nrf54lm20a_cpuapp.yml │ │ │ ├── pm_static_thingy53_nrf5340_cpuapp.yml │ │ │ ├── pm_static_thingy53_nrf5340_cpuapp_ns.yml │ │ │ ├── prj.conf │ │ │ └── prj_release.conf │ │ │ ├── include │ │ │ ├── app_dfu.h │ │ │ ├── app_factory_reset.h │ │ │ └── app_ring.h │ │ │ ├── sample.yaml │ │ │ ├── src │ │ │ ├── Kconfig.dfu │ │ │ ├── battery │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig.battery │ │ │ │ ├── common.c │ │ │ │ ├── include │ │ │ │ │ └── app_battery.h │ │ │ │ ├── include_priv │ │ │ │ │ └── app_battery_priv.h │ │ │ │ ├── platform_dk.c │ │ │ │ └── platform_thingy.c │ │ │ ├── dfu.c │ │ │ ├── factory_reset.c │ │ │ ├── factory_reset_callbacks.ld │ │ │ ├── main.c │ │ │ ├── motion_detector │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── include │ │ │ │ │ └── app_motion_detector.h │ │ │ │ ├── platform_dk.c │ │ │ │ └── platform_thingy.c │ │ │ ├── ring.c │ │ │ └── ui │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig.ui │ │ │ │ ├── common.c │ │ │ │ ├── include │ │ │ │ └── app_ui.h │ │ │ │ ├── include_priv │ │ │ │ ├── app_ui_priv.h │ │ │ │ └── app_ui_speaker.h │ │ │ │ ├── platform_dk.c │ │ │ │ ├── platform_thingy.c │ │ │ │ ├── platform_thingy_speaker.c │ │ │ │ └── request_listener.ld │ │ │ ├── sysbuild.cmake │ │ │ └── sysbuild │ │ │ ├── CMakeLists.txt │ │ │ ├── b0n │ │ │ └── prj.conf │ │ │ ├── common │ │ │ └── dfu_speedup_fragment.conf │ │ │ ├── configuration │ │ │ ├── nrf52833dk_nrf52833 │ │ │ │ ├── boot_signature_key_file_rsa2048.pem │ │ │ │ └── sysbuild_release.conf │ │ │ ├── nrf52840dk_nrf52840 │ │ │ │ ├── boot_signature_key_file_ecdsa_p256.pem │ │ │ │ └── sysbuild.conf │ │ │ ├── nrf52dk_nrf52832 │ │ │ │ ├── boot_signature_key_file_rsa2048.pem │ │ │ │ └── sysbuild_release.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp │ │ │ │ ├── boot_signature_key_file_rsa2048.pem │ │ │ │ └── sysbuild.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns │ │ │ │ ├── boot_signature_key_file_rsa2048.pem │ │ │ │ └── sysbuild.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp │ │ │ │ └── sysbuild.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp │ │ │ │ ├── boot_signature_key_file_ed25519.pem │ │ │ │ └── sysbuild_release.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp │ │ │ │ ├── boot_signature_key_file_ed25519.pem │ │ │ │ └── sysbuild.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp │ │ │ │ ├── boot_signature_key_file_ed25519.pem │ │ │ │ └── sysbuild.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp │ │ │ │ ├── boot_signature_key_file_ed25519.pem │ │ │ │ └── sysbuild.conf │ │ │ ├── thingy53_nrf5340_cpuapp │ │ │ │ ├── boot_signature_key_file_rsa2048.pem │ │ │ │ └── sysbuild.conf │ │ │ └── thingy53_nrf5340_cpuapp_ns │ │ │ │ ├── boot_signature_key_file_rsa2048.pem │ │ │ │ └── sysbuild.conf │ │ │ ├── ipc_radio │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpurad.conf │ │ │ │ ├── thingy53_nrf5340_cpunet.conf │ │ │ │ └── thingy53_nrf5340_cpunet_release.conf │ │ │ ├── prj.conf │ │ │ └── prj_release.conf │ │ │ └── mcuboot │ │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── thingy53_nrf5340_cpuapp.conf │ │ │ └── thingy53_nrf5340_cpuapp.overlay │ │ │ └── prj.conf │ ├── hci_lpuart │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf9160dk_nrf52840.conf │ │ │ ├── nrf9160dk_nrf52840.overlay │ │ │ ├── nrf9160dk_nrf52840_0_14_0.overlay │ │ │ ├── thingy91_nrf52840.conf │ │ │ └── thingy91_nrf52840.overlay │ │ ├── debug.conf │ │ ├── prj.conf │ │ └── sample.yaml │ ├── iso_combined_bis_and_cis │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── include │ │ │ └── iso_combined_bis_and_cis.h │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── combined_bis_cis.c │ │ │ ├── iso_rx.c │ │ │ ├── iso_tx.c │ │ │ └── main.c │ │ └── sysbuild │ │ │ └── ipc_radio │ │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpurad.conf │ │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ └── prj.conf │ ├── iso_time_sync │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf52833dk_nrf52833.conf │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ ├── nrf5340_audio_dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ ├── include │ │ │ └── iso_time_sync.h │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── bis_receiver.c │ │ │ ├── bis_transmitter.c │ │ │ ├── cis_central.c │ │ │ ├── cis_peripheral.c │ │ │ ├── controller_time_nrf52.c │ │ │ ├── controller_time_nrf53_app.c │ │ │ ├── controller_time_nrf54.c │ │ │ ├── iso_rx.c │ │ │ ├── iso_tx.c │ │ │ ├── main.c │ │ │ └── timed_led_toggle.c │ │ ├── sysbuild.cmake │ │ └── sysbuild │ │ │ └── ipc_radio │ │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpunet.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpurad.conf │ │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ └── prj.conf │ ├── llpm │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf52840dongle_nrf52840.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild │ │ │ └── ipc_radio │ │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpurad.conf │ │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ └── prj.conf │ ├── mesh │ │ ├── ble_peripheral_lbs_coex │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── README.rst │ │ │ ├── VERSION │ │ │ ├── app_settings_ext_flash.overlay │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840_settings_ext_flash.conf │ │ │ │ ├── nrf52dk_nrf52832.conf │ │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp_settings_ext_flash.conf │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp_settings_ext_flash.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_settings_ext_flash.conf │ │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── include │ │ │ │ ├── lb_service_handler.h │ │ │ │ └── model_handler.h │ │ │ ├── prj.conf │ │ │ ├── sample.yaml │ │ │ └── src │ │ │ │ ├── lb_service_handler.c │ │ │ │ ├── main.c │ │ │ │ └── model_handler.c │ │ ├── chat │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.sysbuild │ │ │ ├── README.rst │ │ │ ├── VERSION │ │ │ ├── app_settings_ext_flash.overlay │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840_settings_ext_flash.conf │ │ │ │ ├── nrf52dk_nrf52832.conf │ │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp_settings_ext_flash.conf │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp_settings_ext_flash.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_settings_ext_flash.conf │ │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── chat_cli.rst │ │ │ ├── include │ │ │ │ ├── chat_cli.h │ │ │ │ └── model_handler.h │ │ │ ├── prj.conf │ │ │ ├── sample.yaml │ │ │ ├── sample_description.rst │ │ │ └── src │ │ │ │ ├── chat_cli.c │ │ │ │ ├── main.c │ │ │ │ └── model_handler.c │ │ ├── common │ │ │ ├── smp_bt.c │ │ │ ├── smp_bt.h │ │ │ ├── smp_bt_auth.c │ │ │ └── smp_bt_auth.h │ │ ├── dfu │ │ │ ├── common │ │ │ │ └── src │ │ │ │ │ ├── dfu_target.c │ │ │ │ │ └── dfu_target.h │ │ │ ├── distributor │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig.sysbuild │ │ │ │ ├── README.rst │ │ │ │ ├── VERSION │ │ │ │ ├── app_dfu_ext_flash.overlay │ │ │ │ ├── app_settings_ext_flash.overlay │ │ │ │ ├── boards │ │ │ │ │ ├── nrf52840dk_nrf52840_settings_ext_flash.conf │ │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp_settings_ext_flash.conf │ │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_dfu_ext_flash.conf │ │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_settings_ext_flash.conf │ │ │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ │ ├── overlay-smp-bt-auth.conf │ │ │ │ ├── prj.conf │ │ │ │ ├── sample.yaml │ │ │ │ ├── src │ │ │ │ │ ├── dfu_dist.c │ │ │ │ │ ├── dfu_dist.h │ │ │ │ │ └── main.c │ │ │ │ ├── sysbuild.conf │ │ │ │ ├── sysbuild │ │ │ │ │ └── mcuboot │ │ │ │ │ │ ├── app.overlay │ │ │ │ │ │ ├── app_dfu_ext_flash.overlay │ │ │ │ │ │ ├── boards │ │ │ │ │ │ ├── nrf52840dk_nrf52840_dfu_ext_flash.conf │ │ │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_dfu_ext_flash.conf │ │ │ │ │ │ └── nrf54l15dk_nrf54l15_cpuapp_dfu_ext_flash.overlay │ │ │ │ │ │ ├── prj.conf │ │ │ │ │ │ └── socs │ │ │ │ │ │ ├── nrf54l10_cpuapp.conf │ │ │ │ │ │ └── nrf54l15_cpuapp.conf │ │ │ │ └── sysbuild_dfu_ext_flash.conf │ │ │ └── target │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig.sysbuild │ │ │ │ ├── README.rst │ │ │ │ ├── VERSION │ │ │ │ ├── app_dfu_ext_flash.overlay │ │ │ │ ├── app_settings_ext_flash.overlay │ │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840_settings_ext_flash.conf │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp_settings_ext_flash.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_dfu_ext_flash.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_settings_ext_flash.conf │ │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ │ ├── overlay-ptp_dfu.conf │ │ │ │ ├── pm_static_nrf52840dongle_nrf52840.yml │ │ │ │ ├── prj.conf │ │ │ │ ├── sample.yaml │ │ │ │ ├── src │ │ │ │ └── main.c │ │ │ │ ├── sysbuild.conf │ │ │ │ ├── sysbuild │ │ │ │ └── mcuboot │ │ │ │ │ ├── app.overlay │ │ │ │ │ ├── app_dfu_ext_flash.overlay │ │ │ │ │ ├── boards │ │ │ │ │ ├── nrf52840dk_nrf52840_dfu_ext_flash.conf │ │ │ │ │ ├── nrf52840dongle_nrf52840.conf │ │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_dfu_ext_flash.conf │ │ │ │ │ └── nrf54l15dk_nrf54l15_cpuapp_dfu_ext_flash.overlay │ │ │ │ │ ├── prj.conf │ │ │ │ │ └── socs │ │ │ │ │ ├── nrf54l10_cpuapp.conf │ │ │ │ │ └── nrf54l15_cpuapp.conf │ │ │ │ └── sysbuild_dfu_ext_flash.conf │ │ ├── light │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.sysbuild │ │ │ ├── README.rst │ │ │ ├── VERSION │ │ │ ├── app_settings_ext_flash.overlay │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840_settings_ext_flash.conf │ │ │ │ ├── nrf52dk_nrf52832.conf │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp_settings_ext_flash.conf │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp_settings_ext_flash.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_settings_ext_flash.conf │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ │ └── thingy53_nrf5340_cpuapp.conf │ │ │ ├── include │ │ │ │ └── model_handler.h │ │ │ ├── overlay-dfu.conf │ │ │ ├── prj.conf │ │ │ ├── sample.yaml │ │ │ ├── src │ │ │ │ ├── main.c │ │ │ │ └── model_handler.c │ │ │ ├── sysbuild-dfu.conf │ │ │ └── sysbuild │ │ │ │ └── ipc_radio │ │ │ │ ├── overlay-dfu.conf │ │ │ │ └── prj.conf │ │ ├── light_ctrl │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── README.rst │ │ │ ├── VERSION │ │ │ ├── app_settings_ext_flash.overlay │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840_settings_ext_flash.conf │ │ │ │ ├── nrf52dk_nrf52832.conf │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.overlay │ │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp_settings_ext_flash.conf │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp_settings_ext_flash.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_settings_ext_flash.conf │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ │ └── thingy53_nrf5340_cpuapp.conf │ │ │ ├── images │ │ │ │ └── bt_mesh_light_ctrl_levels.svg │ │ │ ├── include │ │ │ │ ├── lc_pwm_led.h │ │ │ │ └── model_handler.h │ │ │ ├── overlay-emds.conf │ │ │ ├── pm_static_nrf52840dongle_nrf52840.yml │ │ │ ├── prj.conf │ │ │ ├── sample.yaml │ │ │ ├── src │ │ │ │ ├── lc_pwm_led.c │ │ │ │ ├── main.c │ │ │ │ └── model_handler.c │ │ │ └── sysbuild │ │ │ │ └── ipc_radio │ │ │ │ └── prj.conf │ │ ├── light_dimmer │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── README.rst │ │ │ ├── VERSION │ │ │ ├── app_settings_ext_flash.overlay │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840_settings_ext_flash.conf │ │ │ │ ├── nrf52dk_nrf52832.conf │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp_settings_ext_flash.conf │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp_settings_ext_flash.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_settings_ext_flash.conf │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ │ └── thingy53_nrf5340_cpuapp.conf │ │ │ ├── include │ │ │ │ └── model_handler.h │ │ │ ├── pm_static_nrf52840dongle_nrf52840.yml │ │ │ ├── prj.conf │ │ │ ├── sample.yaml │ │ │ ├── src │ │ │ │ ├── main.c │ │ │ │ └── model_handler.c │ │ │ └── sysbuild │ │ │ │ └── ipc_radio │ │ │ │ └── prj.conf │ │ ├── light_switch │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── README.rst │ │ │ ├── VERSION │ │ │ ├── app_settings_ext_flash.overlay │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840_settings_ext_flash.conf │ │ │ │ ├── nrf52dk_nrf52832.conf │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp_settings_ext_flash.conf │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp_settings_ext_flash.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_settings_ext_flash.conf │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ │ └── thingy53_nrf5340_cpuapp.conf │ │ │ ├── img │ │ │ │ ├── lpn_52840ppk.png │ │ │ │ └── standard_52840ppk.png │ │ │ ├── include │ │ │ │ └── model_handler.h │ │ │ ├── overlay-lpn.conf │ │ │ ├── prj.conf │ │ │ ├── sample.yaml │ │ │ ├── src │ │ │ │ ├── main.c │ │ │ │ └── model_handler.c │ │ │ └── sysbuild │ │ │ │ └── ipc_radio │ │ │ │ └── prj.conf │ │ ├── sensor_client │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── README.rst │ │ │ ├── VERSION │ │ │ ├── app_settings_ext_flash.overlay │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840_settings_ext_flash.conf │ │ │ │ ├── nrf52dk_nrf52832.conf │ │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp_settings_ext_flash.conf │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp_settings_ext_flash.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_settings_ext_flash.conf │ │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── include │ │ │ │ └── model_handler.h │ │ │ ├── prj.conf │ │ │ ├── sample.yaml │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ └── model_handler.c │ │ ├── sensor_server │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── README.rst │ │ │ ├── VERSION │ │ │ ├── app_settings_ext_flash.overlay │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840_settings_ext_flash.conf │ │ │ │ ├── nrf52dk_nrf52832.conf │ │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp_settings_ext_flash.conf │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp_settings_ext_flash.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_settings_ext_flash.conf │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ │ ├── thingy53_nrf5340_cpuapp.conf │ │ │ │ └── thingy53_nrf5340_cpuapp.overlay │ │ │ ├── include │ │ │ │ └── model_handler.h │ │ │ ├── prj.conf │ │ │ ├── sample.yaml │ │ │ ├── src │ │ │ │ ├── main.c │ │ │ │ └── model_handler.c │ │ │ └── sysbuild │ │ │ │ └── ipc_radio │ │ │ │ └── prj.conf │ │ └── silvair_enocean │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── README.rst │ │ │ ├── VERSION │ │ │ ├── app_settings_ext_flash.overlay │ │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840_settings_ext_flash.conf │ │ │ ├── nrf52dk_nrf52832.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp_settings_ext_flash.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp_settings_ext_flash.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_settings_ext_flash.conf │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── include │ │ │ └── model_handler.h │ │ │ ├── prj.conf │ │ │ ├── sample.yaml │ │ │ ├── src │ │ │ ├── main.c │ │ │ └── model_handler.c │ │ │ └── sysbuild │ │ │ └── ipc_radio │ │ │ └── prj.conf │ ├── multiple_adv_sets │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild │ │ │ └── ipc_radio │ │ │ └── prj.conf │ ├── nrf_auraconfig │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── include │ │ │ ├── nrf_auraconfig.h │ │ │ └── presets.h │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── main.c │ │ │ └── nrf_auraconfig.c │ │ └── sysbuild │ │ │ └── ipc_radio │ │ │ └── prj.conf │ ├── nrf_dm │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── app.overlay │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ └── nrf5340dk_nrf5340_cpuapp.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── main.c │ │ │ ├── peer.c │ │ │ ├── peer.h │ │ │ ├── pwm_led.c │ │ │ ├── pwm_led.h │ │ │ ├── service.c │ │ │ └── service.h │ │ └── sysbuild │ │ │ └── ipc_radio │ │ │ ├── boards │ │ │ └── nrf5340dk_nrf5340_cpunet.overlay │ │ │ └── prj.conf │ ├── path_loss_monitoring │ │ ├── README.rst │ │ ├── central │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── prj.conf │ │ │ ├── sample.yaml │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── sysbuild │ │ │ │ └── ipc_radio │ │ │ │ └── prj.conf │ │ └── peripheral │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── prj.conf │ │ │ ├── sample.yaml │ │ │ ├── src │ │ │ └── main.c │ │ │ └── sysbuild │ │ │ └── ipc_radio │ │ │ └── prj.conf │ ├── peripheral_ams_client │ │ ├── AMS_central.ncs │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── peripheral_ancs_client │ │ ├── ANCS_central.ncs │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── peripheral_bms │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── peripheral_cgms │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── peripheral_cts_client │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.conf │ │ ├── cts_central.ncs │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── peripheral_gatt_dm │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── peripheral_hids_keyboard │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp_ns.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── app_nfc.c │ │ │ ├── app_nfc.h │ │ │ └── main.c │ │ └── sysbuild │ │ │ └── ipc_radio │ │ │ └── prj.conf │ ├── peripheral_hids_mouse │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp_ns.conf │ │ ├── prj.conf │ │ ├── prj_bt_rpc.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ ├── sysbuild │ │ │ └── ipc_radio │ │ │ │ ├── prj.conf │ │ │ │ └── prj_bt_rpc.conf │ │ └── sysbuild_bt_rpc.conf │ ├── peripheral_hr_coded │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild │ │ │ └── ipc_radio │ │ │ └── prj.conf │ ├── peripheral_lbs │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── VERSION │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── thingy53_nrf5340_cpuapp.conf │ │ │ └── thingy53_nrf5340_cpuapp_ns.conf │ │ ├── prj.conf │ │ ├── prj_minimal.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── peripheral_mds │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ └── nrf5340dk_nrf5340_cpuapp.conf │ │ ├── memfault_config │ │ │ ├── memfault_metrics_heartbeat_config.def │ │ │ ├── memfault_platform_config.h │ │ │ └── memfault_trace_reason_user_config.def │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild │ │ │ └── ipc_radio │ │ │ └── prj.conf │ ├── peripheral_nfc_pairing │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ ├── images │ │ │ ├── nfc_negotiated_connection_handover.svg │ │ │ └── nfc_static_connection_handover.svg │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── peripheral_power_profiling │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── app.overlay │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_auto_conn_advert.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_auto_non_conn_advert.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_auto_conn_advert.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_non_conn_advert.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_auto_conn_advert.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_non_conn_advert.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns.conf │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp_ns.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── main.c │ │ │ ├── pwr_service.c │ │ │ └── pwr_service.h │ │ └── sysbuild │ │ │ └── ipc_radio │ │ │ └── prj.conf │ ├── peripheral_rscs │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── peripheral_status │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── VERSION │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── thingy53_nrf5340_cpuapp.conf │ │ │ ├── thingy53_nrf5340_cpuapp.overlay │ │ │ ├── thingy53_nrf5340_cpuapp_ns.conf │ │ │ └── thingy53_nrf5340_cpuapp_ns.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild │ │ │ ├── ipc_radio │ │ │ ├── boards │ │ │ │ └── thingy53_nrf5340_cpunet.conf │ │ │ └── prj.conf │ │ │ └── mcuboot │ │ │ ├── app.overlay │ │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ ├── thingy53_nrf5340_cpuapp.conf │ │ │ └── thingy53_nrf5340_cpuapp.overlay │ │ │ └── prj.conf │ ├── peripheral_uart │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── VERSION │ │ ├── app.overlay │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns.overlay │ │ │ ├── thingy53_nrf5340_cpuapp.conf │ │ │ ├── thingy53_nrf5340_cpuapp.overlay │ │ │ ├── thingy53_nrf5340_cpuapp_ns.conf │ │ │ └── thingy53_nrf5340_cpuapp_ns.overlay │ │ ├── nrf5340dk_app_sr_net.conf │ │ ├── nrf5340dk_mcuboot_sr_net.conf │ │ ├── prj.conf │ │ ├── prj_cdc.conf │ │ ├── prj_minimal.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ ├── sysbuild │ │ │ └── ipc_radio │ │ │ │ ├── prj.conf │ │ │ │ └── prj_bt_rpc.conf │ │ ├── sysbuild_bt_rpc.conf │ │ └── usb.overlay │ ├── peripheral_with_multiple_identities │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild │ │ │ └── ipc_radio │ │ │ └── prj.conf │ ├── radio_coex_1wire │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp_ns.overlay │ │ ├── dts │ │ │ └── bindings │ │ │ │ └── coex-pta-grant-gpios.yaml │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── radio_notification_cb │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ ├── central.c │ │ │ ├── main.c │ │ │ └── peripheral.c │ ├── rpc_host │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── overlay-debugging.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── rssi_power_control │ │ ├── README.rst │ │ ├── central │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── sample.yaml │ │ │ └── src │ │ │ │ └── main.c │ │ ├── peripheral │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── sample.yaml │ │ │ └── src │ │ │ │ └── main.c │ │ └── tools │ │ │ └── plot_path_loss.py │ ├── scanning_while_connecting │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild │ │ │ └── ipc_radio │ │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpurad.conf │ │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ └── prj.conf │ ├── shell_bt_nus │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── shorter_conn_intervals │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild │ │ │ └── ipc_radio │ │ │ └── prj.conf │ ├── subrating │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild │ │ │ └── ipc_radio │ │ │ └── prj.conf │ └── throughput │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── app.overlay │ │ ├── boards │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ ├── nrf54l15dk_nrf54l05_cpuapp.overlay │ │ ├── nrf54l15dk_nrf54l10_cpuapp.overlay │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp_ns.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ ├── cmds.c │ │ ├── main.c │ │ └── main.h │ │ └── sysbuild │ │ └── ipc_radio │ │ └── prj.conf ├── bootloader │ ├── CMakeLists.txt │ ├── README.rst │ ├── boards │ │ ├── nrf5340_audio_dk_nrf5340_cpuapp.conf │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ ├── nrf5340dk_nrf5340_cpuapp_minimal.conf │ │ ├── nrf54l15dk_nrf54l15_cpuapp_minimal.conf │ │ ├── thingy91x_nrf5340_cpuapp.conf │ │ └── thingy91x_nrf5340_cpuapp_minimal.conf │ ├── pm.yml │ ├── prj.conf │ ├── prj_minimal.conf │ ├── sample.yaml │ ├── socs │ │ ├── nrf54l05_cpuapp.conf │ │ ├── nrf54l10_cpuapp.conf │ │ ├── nrf54l15_cpuapp.conf │ │ ├── nrf54lm20a_cpuapp.conf │ │ └── nrf54lv10a_cpuapp.conf │ └── src │ │ └── main.c ├── caf │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── boards │ │ ├── nrf52840dk_nrf52840.overlay │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ ├── configuration │ │ ├── nrf52840dk_nrf52840 │ │ │ ├── buttons_def.h │ │ │ └── led_state_def.h │ │ ├── nrf5340dk_nrf5340_cpuapp │ │ │ ├── buttons_def.h │ │ │ └── led_state_def.h │ │ └── nrf54h20dk_nrf54h20_cpuapp │ │ │ ├── buttons_def.h │ │ │ └── led_state_def.h │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ ├── main.c │ │ └── modules │ │ ├── Kconfig │ │ └── led_state.c ├── caf_sensor_manager │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.sysbuild │ ├── README.rst │ ├── app.overlay │ ├── boards │ │ ├── nrf52840dk_nrf52840.conf │ │ ├── nrf52840dk_nrf52840.overlay │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ ├── nrf5340dk_nrf5340_cpuapp_singlecore.conf │ │ ├── nrf5340dk_nrf5340_cpuapp_singlecore.overlay │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ ├── nrf54h20dk_nrf54h20_cpuapp_singlecore.conf │ │ ├── nrf54h20dk_nrf54h20_cpuapp_singlecore.overlay │ │ ├── qemu_cortex_m3.conf │ │ └── qemu_cortex_m3.overlay │ ├── configuration │ │ └── sensor_manager_def.h │ ├── prj.conf │ ├── remote │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpunet.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpuppr.conf │ │ │ └── nrf54h20dk_nrf54h20_cpuppr.overlay │ │ ├── prj.conf │ │ └── src │ │ │ └── main.c │ ├── sample.yaml │ ├── src │ │ ├── main.c │ │ └── modules │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── event_proxy_init.c │ │ │ ├── event_proxy_init.h │ │ │ ├── sensor_stub_gen.c │ │ │ └── workload_sim.c │ ├── sysbuild.cmake │ ├── sysbuild │ │ └── empty_net_core │ │ │ ├── boards │ │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ └── prj.conf │ └── sysbuild_singlecore.conf ├── cellular │ ├── at_client │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── at_monitor │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── battery │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── fmfu_smp_svr │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ ├── sysbuild.conf │ │ ├── uart.overlay │ │ └── update_modem.py │ ├── gnss │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── overlay-pgps.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ ├── assistance.c │ │ │ ├── assistance.h │ │ │ ├── assistance_minimal.c │ │ │ ├── assistance_supl.c │ │ │ ├── factory_almanac_v2.h │ │ │ ├── factory_almanac_v3.h │ │ │ ├── main.c │ │ │ ├── mcc_location_table.c │ │ │ └── mcc_location_table.h │ ├── http_update │ │ ├── application_update │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── README.rst │ │ │ ├── boards │ │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ │ └── nrf9161dk_nrf9161_ns.conf │ │ │ ├── cert │ │ │ │ └── AmazonRootCA1 │ │ │ ├── overlay-carrier.conf │ │ │ ├── prj.conf │ │ │ ├── sample.yaml │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── sysbuild.conf │ │ ├── modem_delta_update │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── README.rst │ │ │ ├── boards │ │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ │ └── nrf9161dk_nrf9161_ns.conf │ │ │ ├── cert │ │ │ │ └── AmazonRootCA1 │ │ │ ├── prj.conf │ │ │ ├── sample.yaml │ │ │ └── src │ │ │ │ └── main.c │ │ └── modem_full_update │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── README.rst │ │ │ ├── boards │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9151dk_nrf9151_ns.overlay │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ ├── nrf9160dk_nrf9160_ns.overlay │ │ │ ├── nrf9161dk_nrf9161_ns.conf │ │ │ ├── nrf9161dk_nrf9161_ns.overlay │ │ │ └── nrf9161dk_nrf9161_ns_0_7_0.overlay │ │ │ ├── cert │ │ │ └── AmazonRootCA1 │ │ │ ├── prj.conf │ │ │ ├── sample.yaml │ │ │ └── src │ │ │ └── main.c │ ├── location │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── thingy91x_nrf9151_ns.conf │ │ │ └── thingy91x_nrf9151_ns.overlay │ │ ├── overlay-nrf700x-wifi-scan-only.conf │ │ ├── overlay-pgps.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── lwm2m_carrier │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── certs │ │ │ ├── DSTRootCA-X3.pem │ │ │ ├── DigiCertGlobalRootCA.pem │ │ │ └── DigiCertGlobalRootG2.pem │ │ ├── overlay-lgu.conf │ │ ├── overlay-shell.conf │ │ ├── overlay-softbank.conf │ │ ├── prj.conf │ │ ├── provisioning.rst │ │ ├── sample.yaml │ │ ├── sample_description.rst │ │ ├── src │ │ │ ├── carrier_certs.c │ │ │ ├── carrier_certs.h │ │ │ └── main.c │ │ ├── sysbuild-lgu.conf │ │ └── sysbuild-softbank.conf │ ├── lwm2m_client │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9151dk_nrf9151_ns.overlay │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ ├── nrf9160dk_nrf9160_ns.overlay │ │ │ ├── nrf9161dk_nrf9161_ns.conf │ │ │ ├── nrf9161dk_nrf9161_ns.overlay │ │ │ ├── nrf9161dk_nrf9161_ns_0_7_0.overlay │ │ │ ├── thingy91_nrf9160_ns.conf │ │ │ ├── thingy91_nrf9160_ns.overlay │ │ │ ├── thingy91x_nrf9151_ns.conf │ │ │ └── thingy91x_nrf9151_ns.overlay │ │ ├── dts │ │ │ └── bindings │ │ │ │ └── pwm-buzzer.yaml │ │ ├── fota.rst │ │ ├── fota_external_mcu.rst │ │ ├── nrf9160dk_mcumgr_client_uart2.overlay │ │ ├── nrf9160dk_recovery.overlay │ │ ├── overlay-adv-firmware.conf │ │ ├── overlay-aggressive-psm.conf │ │ ├── overlay-assist-agnss.conf │ │ ├── overlay-assist-cell.conf │ │ ├── overlay-assist-pgps.conf │ │ ├── overlay-assist-wifi.conf │ │ ├── overlay-avsystem-bootstrap.conf │ │ ├── overlay-avsystem.conf │ │ ├── overlay-fota_helper.conf │ │ ├── overlay-leshan-bootstrap.conf │ │ ├── overlay-lowpower.conf │ │ ├── overlay-lwm2m-1.1-core-interop.conf │ │ ├── overlay-lwm2m-1.1-object-interop.conf │ │ ├── overlay-lwm2m-1.1.conf │ │ ├── overlay-mcumgr_client.conf │ │ ├── overlay-mcumgr_reset.conf │ │ ├── overlay-nbiot.conf │ │ ├── prj.conf │ │ ├── provisioning.rst │ │ ├── sample.yaml │ │ ├── sample_description.rst │ │ ├── scripts │ │ │ ├── atclient.py │ │ │ ├── coiote.py │ │ │ ├── device.py │ │ │ ├── fota.py │ │ │ ├── leshan.py │ │ │ └── provision.py │ │ ├── src │ │ │ ├── events │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── gnss_pvt_event.c │ │ │ │ ├── include │ │ │ │ │ ├── gnss_pvt_event.h │ │ │ │ │ ├── location_events.h │ │ │ │ │ └── ui_input_event.h │ │ │ │ ├── location_event_handler.c │ │ │ │ ├── location_events.c │ │ │ │ └── ui_input_event.c │ │ │ ├── fota_external │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── client.c │ │ │ │ └── include │ │ │ │ │ └── fota_app_external.h │ │ │ ├── ipso │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig.ipso_colour_sensor │ │ │ │ └── ipso_colour_sensor.c │ │ │ ├── lwm2m │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── include │ │ │ │ │ ├── lwm2m_app_utils.h │ │ │ │ │ └── lwm2m_client_app.h │ │ │ │ ├── lwm2m_accelerometer.c │ │ │ │ ├── lwm2m_app_utils.c │ │ │ │ ├── lwm2m_buzzer.c │ │ │ │ ├── lwm2m_device.c │ │ │ │ ├── lwm2m_gas_res_sensor.c │ │ │ │ ├── lwm2m_humid_sensor.c │ │ │ │ ├── lwm2m_light_control.c │ │ │ │ ├── lwm2m_light_sensor.c │ │ │ │ ├── lwm2m_location.c │ │ │ │ ├── lwm2m_onoff_switch.c │ │ │ │ ├── lwm2m_portfolio_object.c │ │ │ │ ├── lwm2m_press_sensor.c │ │ │ │ ├── lwm2m_push_button.c │ │ │ │ └── lwm2m_temp_sensor.c │ │ │ ├── main.c │ │ │ ├── modules │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── sensor_module.c │ │ │ ├── sensors │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig.accelerometer │ │ │ │ ├── Kconfig.env_sensor │ │ │ │ ├── Kconfig.gnss │ │ │ │ ├── Kconfig.light_sensor │ │ │ │ ├── accelerometer.c │ │ │ │ ├── env_sensor.c │ │ │ │ ├── gnss_module.c │ │ │ │ ├── include │ │ │ │ │ ├── accelerometer.h │ │ │ │ │ ├── env_sensor.h │ │ │ │ │ ├── gnss_module.h │ │ │ │ │ └── light_sensor.h │ │ │ │ └── light_sensor.c │ │ │ ├── shell.c │ │ │ └── ui │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── Kconfig.ui_led │ │ │ │ ├── include │ │ │ │ ├── ui_buzzer.h │ │ │ │ ├── ui_input.h │ │ │ │ ├── ui_led.h │ │ │ │ └── ui_sense_led.h │ │ │ │ ├── ui_buzzer.c │ │ │ │ ├── ui_input.c │ │ │ │ ├── ui_led.c │ │ │ │ └── ui_sense_led.c │ │ └── sysbuild.conf │ ├── modem_callbacks │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── modem_shell │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── boards │ │ │ ├── thingy91_nrf9160_ns.conf │ │ │ ├── thingy91x_nrf9151_ns.conf │ │ │ └── tpm530mevk_tpm530m_ns.conf │ │ ├── bt.overlay │ │ ├── ext_gnss_uart.overlay │ │ ├── nrf9151dk_ext_flash.overlay │ │ ├── nrf9160dk_ext_flash.overlay │ │ ├── nrf9161dk_0_7_0_ext_flash.overlay │ │ ├── nrf9161dk_ext_flash.overlay │ │ ├── overlay-app_fota.conf │ │ ├── overlay-bt.conf │ │ ├── overlay-carrier.conf │ │ ├── overlay-cloud_coap.conf │ │ ├── overlay-cloud_mqtt.conf │ │ ├── overlay-debug.conf │ │ ├── overlay-lwm2m.conf │ │ ├── overlay-lwm2m_bootstrap.conf │ │ ├── overlay-lwm2m_pgps.conf │ │ ├── overlay-memfault.conf │ │ ├── overlay-modem-trace-ram.conf │ │ ├── overlay-modem_fota_full.conf │ │ ├── overlay-non-offloading.conf │ │ ├── overlay-nrf700x-wifi-scan-only.conf │ │ ├── overlay-pgps.conf │ │ ├── overlay-ppp.conf │ │ ├── overlay-rtt.conf │ │ ├── ppp.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── at │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── at_cmd_mode.c │ │ │ │ ├── at_cmd_mode.h │ │ │ │ ├── at_cmd_mode_custom.c │ │ │ │ ├── at_cmd_mode_sett.c │ │ │ │ ├── at_cmd_mode_sett.h │ │ │ │ └── at_shell.c │ │ │ ├── cloud │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── cloud_coap_shell.c │ │ │ │ ├── cloud_lwm2m.c │ │ │ │ ├── cloud_lwm2m.h │ │ │ │ ├── cloud_lwm2m_shell.c │ │ │ │ ├── cloud_mqtt_shell.c │ │ │ │ └── cloud_rest_shell.c │ │ │ ├── drivers │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── nrf91_non_offloaded_dev.c │ │ │ ├── fota │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── fota.c │ │ │ │ ├── fota.h │ │ │ │ └── fota_shell.c │ │ │ ├── gnss │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── gnss.c │ │ │ │ ├── gnss.h │ │ │ │ ├── gnss_shell.c │ │ │ │ ├── gnss_supl_support.c │ │ │ │ └── gnss_supl_support.h │ │ │ ├── gpio_count │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── gpio_count.c │ │ │ │ ├── gpio_count.h │ │ │ │ └── gpio_count_shell.c │ │ │ ├── link │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── link.c │ │ │ │ ├── link.h │ │ │ │ ├── link_api.c │ │ │ │ ├── link_api.h │ │ │ │ ├── link_settings.c │ │ │ │ ├── link_settings.h │ │ │ │ ├── link_shell.c │ │ │ │ ├── link_shell.h │ │ │ │ ├── link_shell_pdn.c │ │ │ │ ├── link_shell_pdn.h │ │ │ │ ├── link_shell_print.c │ │ │ │ └── link_shell_print.h │ │ │ ├── location │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── location_cmd_utils.c │ │ │ │ ├── location_cmd_utils.h │ │ │ │ ├── location_details.c │ │ │ │ ├── location_details.h │ │ │ │ ├── location_shell.c │ │ │ │ ├── location_shell.h │ │ │ │ ├── location_srv_ext.h │ │ │ │ ├── location_srv_ext_lwm2m.c │ │ │ │ └── location_srv_ext_nrf_cloud.c │ │ │ ├── main.c │ │ │ ├── mosh_defines.h │ │ │ ├── ntn │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ntn.c │ │ │ │ ├── ntn.h │ │ │ │ └── ntn_shell.c │ │ │ ├── ping │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── icmp_ping.c │ │ │ │ ├── icmp_ping.h │ │ │ │ ├── icmp_ping_print.c │ │ │ │ ├── icmp_ping_print.h │ │ │ │ ├── icmp_ping_shell.c │ │ │ │ └── icmp_ping_shell.h │ │ │ ├── ppp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ppp_ctrl.c │ │ │ │ ├── ppp_ctrl.h │ │ │ │ ├── ppp_mdm_data_rcv.c │ │ │ │ ├── ppp_mdm_data_snd.c │ │ │ │ ├── ppp_settings.c │ │ │ │ ├── ppp_settings.h │ │ │ │ └── ppp_shell.c │ │ │ ├── print │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── print_shell.c │ │ │ ├── rest │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── rest_shell.c │ │ │ ├── shell.c │ │ │ ├── sms │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── sms.c │ │ │ │ ├── sms.h │ │ │ │ └── sms_shell.c │ │ │ ├── sock │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── sock.c │ │ │ │ ├── sock.h │ │ │ │ └── sock_shell.c │ │ │ ├── startup_cmd │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── startup_cmd_ctrl.c │ │ │ │ ├── startup_cmd_ctrl.h │ │ │ │ ├── startup_cmd_settings.c │ │ │ │ ├── startup_cmd_settings.h │ │ │ │ └── startup_cmd_shell.c │ │ │ ├── th │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── th_ctrl.c │ │ │ │ ├── th_ctrl.h │ │ │ │ └── th_shell.c │ │ │ ├── uart │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── uart_shell.c │ │ │ │ └── uart_shell.h │ │ │ └── utils │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── mosh_print.c │ │ │ │ ├── mosh_print.h │ │ │ │ ├── net_utils.c │ │ │ │ ├── net_utils.h │ │ │ │ ├── str_utils.c │ │ │ │ └── str_utils.h │ │ └── thingy91x_wifi.overlay │ ├── modem_trace_backend │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.trace_print_stats │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ ├── main.c │ │ │ └── trace_print_stats.c │ ├── modem_trace_flash │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9151dk_nrf9151_ns.overlay │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ ├── nrf9160dk_nrf9160_ns.overlay │ │ │ ├── nrf9161dk_nrf9161_ns.conf │ │ │ ├── nrf9161dk_nrf9161_ns.overlay │ │ │ └── nrf9161dk_nrf9161_ns_0_7_0.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── nidd │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── nrf_cloud_coap_cell_location │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── VERSION │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── nrf_cloud_coap_device_message │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── VERSION │ │ ├── nrfcloud_logging.conf │ │ ├── prj.conf │ │ ├── rtt.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── nrf_cloud_coap_fota │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── VERSION │ │ ├── boards │ │ │ ├── nrf9151dk_nrf9151_ns.overlay │ │ │ ├── nrf9160dk_nrf9160_ns_0_14_0.overlay │ │ │ ├── nrf9161dk_nrf9161_ns.overlay │ │ │ ├── nrf9161dk_nrf9161_ns_0_7_0.overlay │ │ │ ├── thingy91x_nrf9151_ns.conf │ │ │ └── thingy91x_nrf9151_ns.overlay │ │ ├── full_modem_fota.conf │ │ ├── nrf9160dk_mcumgr_client_uart2.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── smp_fota.conf │ │ ├── src │ │ │ ├── main.c │ │ │ ├── smp_reset.c │ │ │ └── smp_reset.h │ │ └── sysbuild.conf │ ├── nrf_cloud_mqtt_cell_location │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── VERSION │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── nrf_cloud_mqtt_device_message │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── VERSION │ │ ├── nrfcloud_logging.conf │ │ ├── prj.conf │ │ ├── rtt.conf │ │ ├── sample.yaml │ │ └── src │ │ │ ├── main.c │ │ │ ├── nrf_cloud_shadow.c │ │ │ └── nrf_cloud_shadow.h │ ├── nrf_cloud_mqtt_fota │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── VERSION │ │ ├── boards │ │ │ ├── nrf9151dk_nrf9151_ns.overlay │ │ │ ├── nrf9160dk_nrf9160_ns_0_14_0.overlay │ │ │ ├── nrf9161dk_nrf9161_ns.overlay │ │ │ ├── nrf9161dk_nrf9161_ns_0_7_0.overlay │ │ │ ├── thingy91x_nrf9151_ns.conf │ │ │ └── thingy91x_nrf9151_ns.overlay │ │ ├── full_modem_fota.conf │ │ ├── nrf9160dk_mcumgr_client_uart2.overlay │ │ ├── prj.conf │ │ ├── rtt.conf │ │ ├── sample.yaml │ │ ├── smp_fota.conf │ │ ├── src │ │ │ ├── main.c │ │ │ ├── smp_reset.c │ │ │ └── smp_reset.h │ │ └── sysbuild.conf │ ├── nrf_cloud_multi_service │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── native_sim.conf │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9151dk_nrf9151_ns.overlay │ │ │ ├── nrf9160dk_nrf9160_ns_0_14_0.overlay │ │ │ ├── nrf9161dk_nrf9161_ns.conf │ │ │ ├── nrf9161dk_nrf9161_ns.overlay │ │ │ ├── nrf9161dk_nrf9161_ns_0_7_0.overlay │ │ │ ├── thingy91_nrf9160_ns.conf │ │ │ ├── thingy91_nrf9160_ns.overlay │ │ │ ├── thingy91x_nrf9151_ns.conf │ │ │ └── thingy91x_nrf9151_ns.overlay │ │ ├── overlay-coap_nrf_provisioning.conf │ │ ├── overlay-http_nrf_provisioning.conf │ │ ├── overlay-nrf7002ek-wifi-scan-only.conf │ │ ├── overlay_coap.conf │ │ ├── overlay_full_modem_fota.conf │ │ ├── overlay_mcuboot_ext_flash.conf │ │ ├── overlay_min_coap.conf │ │ ├── overlay_min_mqtt.conf │ │ ├── overlay_native_sim.conf │ │ ├── overlay_native_sim_coap.conf │ │ ├── overlay_nrf700x_wifi_coap_no_lte.conf │ │ ├── overlay_nrf700x_wifi_mqtt_no_lte.conf │ │ ├── overlay_nrfcloud_logging.conf │ │ ├── overlay_pgps_ext_flash.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── application.c │ │ │ ├── application.h │ │ │ ├── at_commands.c │ │ │ ├── at_commands.h │ │ │ ├── cloud_connection.c │ │ │ ├── cloud_connection.h │ │ │ ├── fota_support.c │ │ │ ├── fota_support.h │ │ │ ├── fota_support_coap.c │ │ │ ├── fota_support_coap.h │ │ │ ├── led_control.c │ │ │ ├── led_control.h │ │ │ ├── location_tracking.c │ │ │ ├── location_tracking.h │ │ │ ├── main.c │ │ │ ├── message_queue.c │ │ │ ├── message_queue.h │ │ │ ├── provisioning_support.c │ │ │ ├── provisioning_support.h │ │ │ ├── sample_reboot.c │ │ │ ├── sample_reboot.h │ │ │ ├── shadow_config.c │ │ │ ├── shadow_config.h │ │ │ ├── shadow_support_coap.c │ │ │ ├── shadow_support_coap.h │ │ │ ├── temperature.c │ │ │ └── temperature.h │ │ ├── sysbuild.conf │ │ ├── sysbuild │ │ │ └── mcuboot │ │ │ │ ├── app.overlay │ │ │ │ ├── boards │ │ │ │ ├── nrf9151dk_nrf9151.conf │ │ │ │ ├── nrf9151dk_nrf9151.overlay │ │ │ │ ├── nrf9160dk_nrf9160.conf │ │ │ │ ├── nrf9160dk_nrf9160_0_14_0.overlay │ │ │ │ ├── nrf9161dk_nrf9161.conf │ │ │ │ ├── nrf9161dk_nrf9161.overlay │ │ │ │ ├── nrf9161dk_nrf9161_0_7_0.overlay │ │ │ │ ├── thingy91_nrf9160.conf │ │ │ │ ├── thingy91x_nrf9151.conf │ │ │ │ └── thingy91x_nrf9151.overlay │ │ │ │ └── prj.conf │ │ ├── sysbuild_ext_flash.conf │ │ ├── sysbuild_native_sim.conf │ │ ├── sysbuild_nrf700x-wifi-conn.conf │ │ └── sysbuild_nrf700x-wifi-scan.conf │ ├── nrf_cloud_rest_cell_location │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── VERSION │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── nrf_cloud_rest_device_message │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf9151dk_nrf9151_ns.overlay │ │ │ ├── nrf9160dk_nrf9160_ns.overlay │ │ │ ├── nrf9161dk_nrf9161_ns.overlay │ │ │ ├── thingy91x_nrf9151_ns.conf │ │ │ └── thingy91x_nrf9151_ns.overlay │ │ ├── include │ │ │ ├── buttons_def.h │ │ │ └── leds_def.h │ │ ├── overlay-rtt.conf │ │ ├── overlay_nrfcloud_logging.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── nrf_cloud_rest_fota │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf9151dk_nrf9151_ns.overlay │ │ │ ├── nrf9160dk_nrf9160_ns_0_14_0.overlay │ │ │ ├── nrf9161dk_nrf9161_ns.overlay │ │ │ ├── nrf9161dk_nrf9161_ns_0_7_0.overlay │ │ │ ├── thingy91x_nrf9151_ns.conf │ │ │ └── thingy91x_nrf9151_ns.overlay │ │ ├── nrf9160dk_mcumgr_client_uart2.overlay │ │ ├── overlay_fota_test.conf │ │ ├── overlay_full_modem_fota.conf │ │ ├── overlay_smp_fota.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── main.c │ │ │ ├── smp_reset.c │ │ │ └── smp_reset.h │ │ ├── sysbuild.conf │ │ └── sysbuild │ │ │ └── mcuboot │ │ │ ├── app.overlay │ │ │ ├── boards │ │ │ ├── thingy91x_nrf9151.conf │ │ │ └── thingy91x_nrf9151.overlay │ │ │ └── prj.conf │ ├── nrf_device_provisioning │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── overlay-at_shell.conf │ │ ├── overlay-coap.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── pdn │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── smp_svr │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── nrf9160dk_nrf52840_mcumgr_srv.overlay │ │ ├── nrf9160dk_nrf52840_recovery.overlay │ │ ├── overlay-serial.conf │ │ ├── pm_static_nrf9160dk_nrf52840.yml │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ ├── sysbuild.conf │ │ └── sysbuild │ │ │ └── mcuboot │ │ │ └── prj.conf │ ├── sms │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── tls_ciphersuites │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── cert │ │ │ └── DigiCertGlobalG2.pem │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild │ │ │ └── mcuboot │ │ │ ├── app.overlay │ │ │ └── prj.conf │ ├── udp │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ └── uicc_lwm2m │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ └── main.c ├── common │ ├── CMakeLists.txt │ ├── Kconfig │ └── mcumgr_bt_ota_dfu │ │ ├── CMakeLists.txt │ │ └── Kconfig ├── crypto │ ├── aes_cbc │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.conf │ │ │ ├── nrf9151dk_nrf9151.conf │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9160dk_nrf9160.conf │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ ├── nrf9161dk_nrf9161.conf │ │ │ └── nrf9161dk_nrf9161_ns.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── aes_ccm │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.conf │ │ │ ├── nrf9151dk_nrf9151.conf │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9160dk_nrf9160.conf │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ ├── nrf9161dk_nrf9161.conf │ │ │ └── nrf9161dk_nrf9161_ns.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── aes_ctr │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.conf │ │ │ ├── nrf9151dk_nrf9151.conf │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9160dk_nrf9160.conf │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ ├── nrf9161dk_nrf9161.conf │ │ │ └── nrf9161dk_nrf9161_ns.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── aes_gcm │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_iron.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.conf │ │ │ ├── nrf9151dk_nrf9151.conf │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9160dk_nrf9160.conf │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ ├── nrf9161dk_nrf9161.conf │ │ │ └── nrf9161dk_nrf9161_ns.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── chachapoly │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.conf │ │ │ ├── nrf9151dk_nrf9151.conf │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9160dk_nrf9160.conf │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ ├── nrf9161dk_nrf9161.conf │ │ │ └── nrf9161dk_nrf9161_ns.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── ecdh │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_iron.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.conf │ │ │ ├── nrf9151dk_nrf9151.conf │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9160dk_nrf9160.conf │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ ├── nrf9161dk_nrf9161.conf │ │ │ └── nrf9161dk_nrf9161_ns.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── ecdsa │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf5340dk_nrf5340_cpunet.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_iron.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.conf │ │ │ ├── nrf9151dk_nrf9151.conf │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9160dk_nrf9160.conf │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ ├── nrf9161dk_nrf9161.conf │ │ │ └── nrf9161dk_nrf9161_ns.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── ecjpake │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.conf │ │ │ ├── nrf9151dk_nrf9151.conf │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9160dk_nrf9160.conf │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ ├── nrf9161dk_nrf9161.conf │ │ │ └── nrf9161dk_nrf9161_ns.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── eddsa │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf5340dk_nrf5340_cpunet.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.conf │ │ │ ├── nrf9151dk_nrf9151.conf │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9160dk_nrf9160.conf │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ ├── nrf9161dk_nrf9161.conf │ │ │ └── nrf9161dk_nrf9161_ns.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── hkdf │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.conf │ │ │ ├── nrf9151dk_nrf9151.conf │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9160dk_nrf9160.conf │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ ├── nrf9161dk_nrf9161.conf │ │ │ └── nrf9161dk_nrf9161_ns.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── hmac │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.conf │ │ │ ├── nrf9151dk_nrf9151.conf │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9160dk_nrf9160.conf │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ ├── nrf9161dk_nrf9161.conf │ │ │ └── nrf9161dk_nrf9161_ns.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── kmu_cracen_usage │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ └── nrf7120pdk_nrf7120_cpuapp.conf │ │ ├── keys │ │ │ ├── keys.json │ │ │ └── sources │ │ │ │ ├── aes_128_key.txt │ │ │ │ └── my_ed25519_priv_key.pem │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ ├── key_operations.c │ │ │ ├── key_operations.h │ │ │ ├── main.c │ │ │ └── main.h │ ├── pbkdf2 │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.conf │ │ │ ├── nrf9151dk_nrf9151.conf │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9160dk_nrf9160.conf │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ ├── nrf9161dk_nrf9161.conf │ │ │ └── nrf9161dk_nrf9161_ns.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── persistent_key_usage │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_ns.conf │ │ │ ├── nrf54lm20dk_nrf54lm20_cpuapp_ns.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.conf │ │ │ ├── nrf9151dk_nrf9151.conf │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9160dk_nrf9160.conf │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ ├── nrf9161dk_nrf9161.conf │ │ │ └── nrf9161dk_nrf9161_ns.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── init.c │ │ │ ├── init.h │ │ │ └── main.c │ │ └── sysbuild │ │ │ └── uicr │ │ │ ├── boards │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ └── prj.conf │ ├── psa_tls │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── app.overlay │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpurad.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp_ns.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp_ns.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_ns.conf │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10_cpuapp_ns.conf │ │ │ ├── nrf9151dk_nrf9151.conf │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9160dk_nrf9160.conf │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ ├── nrf9161dk_nrf9161.conf │ │ │ └── nrf9161dk_nrf9161_ns.conf │ │ ├── certs │ │ │ ├── ec-root-cert_secp256r1.der │ │ │ ├── ec-root-cert_secp384r1.der │ │ │ ├── ec-server-cert-key_secp256r1.der │ │ │ ├── ec-server-cert-key_secp384r1.der │ │ │ ├── ec-server-cert_secp256r1.der │ │ │ ├── ec-server-cert_secp384r1.der │ │ │ ├── ecdsa │ │ │ │ ├── secp256r1 │ │ │ │ │ ├── cert.key │ │ │ │ │ ├── cert.pem │ │ │ │ │ └── root_cert.pem │ │ │ │ └── secp384r1 │ │ │ │ │ ├── cert.csr │ │ │ │ │ ├── cert.key │ │ │ │ │ ├── cert.pem │ │ │ │ │ ├── root_cert.key │ │ │ │ │ └── root_cert.pem │ │ │ ├── rsa-root-cert.der │ │ │ ├── rsa-server-cert-key.der │ │ │ ├── rsa-server-cert.der │ │ │ └── rsa │ │ │ │ ├── cert.key │ │ │ │ ├── cert.pem │ │ │ │ ├── dhparams.pem │ │ │ │ └── root_cert.pem │ │ ├── eth_rtt_link │ │ ├── include │ │ │ ├── certificate.h │ │ │ ├── dummy_psk.h │ │ │ ├── psa_tls_credentials.h │ │ │ └── psa_tls_functions.h │ │ ├── overlays │ │ │ ├── cc3xx-legacy.conf │ │ │ ├── cc3xx-oberon-psa.conf │ │ │ ├── cc3xx-psa.conf │ │ │ ├── client.conf │ │ │ ├── cracen-oberon-psa.conf │ │ │ ├── cracen-psa.conf │ │ │ ├── dtls.conf │ │ │ ├── ecdsa.conf │ │ │ ├── ecdsa_secp384r1.conf │ │ │ ├── oberon-legacy.conf │ │ │ ├── oberon-psa.conf │ │ │ ├── rsa.conf │ │ │ ├── server.conf │ │ │ └── tls_1_3.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ ├── main.c │ │ │ ├── non-secure │ │ │ ├── psa_tls_credentials_client.c │ │ │ └── psa_tls_credentials_server.c │ │ │ ├── psa_dtls_functions_client.c │ │ │ ├── psa_dtls_functions_server.c │ │ │ ├── psa_tls_common.c │ │ │ ├── psa_tls_functions_client.c │ │ │ ├── psa_tls_functions_server.c │ │ │ └── secure │ │ │ ├── psa_tls_credentials_client.c │ │ │ └── psa_tls_credentials_server.c │ ├── rng │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.conf │ │ │ ├── nrf9151dk_nrf9151.conf │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9160dk_nrf9160.conf │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ ├── nrf9161dk_nrf9161.conf │ │ │ └── nrf9161dk_nrf9161_ns.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── rsa │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.conf │ │ │ ├── nrf9151dk_nrf9151.conf │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9160dk_nrf9160.conf │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ ├── nrf9161dk_nrf9161.conf │ │ │ └── nrf9161dk_nrf9161_ns.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ ├── key.h │ │ │ └── main.c │ ├── sha256 │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf5340dk_nrf5340_cpunet.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_iron.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.conf │ │ │ ├── nrf9151dk_nrf9151.conf │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9160dk_nrf9160.conf │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ ├── nrf9161dk_nrf9161.conf │ │ │ └── nrf9161dk_nrf9161_ns.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ └── spake2p │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ ├── nrf52840dk_nrf52840.conf │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.conf │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ ├── nrf7120pdk_nrf7120_cpuapp.conf │ │ ├── nrf9151dk_nrf9151.conf │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ ├── nrf9160dk_nrf9160.conf │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ ├── nrf9161dk_nrf9161.conf │ │ └── nrf9161dk_nrf9161_ns.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ └── main.c ├── debug │ ├── memfault │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf7002dk_nrf5340_cpuapp.conf │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9151dk_nrf9151_ns.overlay │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ ├── nrf9161dk_nrf9161_ns.conf │ │ │ ├── thingy91_nrf9160_ns.conf │ │ │ └── thingy91x_nrf9151_ns.conf │ │ ├── config │ │ │ ├── memfault_metrics_heartbeat_config.def │ │ │ ├── memfault_platform_config.h │ │ │ └── memfault_trace_reason_user_config.def │ │ ├── overlay-etb.conf │ │ ├── overlay-modem-trace-to-memfault.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ └── main.c │ └── ppi_trace │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── boards │ │ ├── nrf21540dk_nrf52840.conf │ │ ├── nrf21540dk_nrf52840.overlay │ │ ├── nrf52840dk_nrf52840.conf │ │ ├── nrf52840dk_nrf52840.overlay │ │ ├── nrf52dk_nrf52832.conf │ │ ├── nrf52dk_nrf52832.overlay │ │ └── nrf9160dk_nrf9160.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ ├── bluetooth.c │ │ └── main.c │ │ └── sysbuild.cmake ├── dect │ └── dect_phy │ │ ├── dect_shell │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── boards │ │ │ └── thingy91x_nrf9151_ns.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ ├── dect │ │ │ ├── CMakeLists.txt │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── dect_app_time.c │ │ │ │ ├── dect_app_time.h │ │ │ │ ├── dect_common.h │ │ │ │ ├── dect_common_pdu.c │ │ │ │ ├── dect_common_pdu.h │ │ │ │ ├── dect_common_settings.c │ │ │ │ ├── dect_common_settings.h │ │ │ │ ├── dect_common_utils.c │ │ │ │ ├── dect_common_utils.h │ │ │ │ ├── dect_phy_api_scheduler.c │ │ │ │ ├── dect_phy_api_scheduler.h │ │ │ │ ├── dect_phy_api_scheduler_integration.h │ │ │ │ ├── dect_phy_common.h │ │ │ │ ├── dect_phy_common_rx.c │ │ │ │ └── dect_phy_common_rx.h │ │ │ ├── dect_phy_ctrl.c │ │ │ ├── dect_phy_ctrl.h │ │ │ ├── dect_phy_ctrl_scheduler_integration.c │ │ │ ├── dect_phy_rx.c │ │ │ ├── dect_phy_rx.h │ │ │ ├── dect_phy_scan.c │ │ │ ├── dect_phy_scan.h │ │ │ ├── dect_phy_shell.c │ │ │ ├── dect_phy_shell.h │ │ │ ├── mac │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── dect_phy_mac.c │ │ │ │ ├── dect_phy_mac.h │ │ │ │ ├── dect_phy_mac_client.c │ │ │ │ ├── dect_phy_mac_client.h │ │ │ │ ├── dect_phy_mac_cluster_beacon.c │ │ │ │ ├── dect_phy_mac_cluster_beacon.h │ │ │ │ ├── dect_phy_mac_common.h │ │ │ │ ├── dect_phy_mac_ctrl.c │ │ │ │ ├── dect_phy_mac_ctrl.h │ │ │ │ ├── dect_phy_mac_nbr.c │ │ │ │ ├── dect_phy_mac_nbr.h │ │ │ │ ├── dect_phy_mac_nbr_bg_scan.c │ │ │ │ ├── dect_phy_mac_nbr_bg_scan.h │ │ │ │ ├── dect_phy_mac_pdu.c │ │ │ │ ├── dect_phy_mac_pdu.h │ │ │ │ └── dect_phy_mac_shell.c │ │ │ ├── perf │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── dect_phy_perf.c │ │ │ │ ├── dect_phy_perf.h │ │ │ │ ├── dect_phy_perf_pdu.c │ │ │ │ └── dect_phy_perf_pdu.h │ │ │ ├── ping │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── dect_phy_ping.c │ │ │ │ ├── dect_phy_ping.h │ │ │ │ ├── dect_phy_ping_pdu.c │ │ │ │ └── dect_phy_ping_pdu.h │ │ │ └── rf_tool │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── dect_phy_rf_tool.c │ │ │ │ └── dect_phy_rf_tool.h │ │ │ ├── desh_defines.h │ │ │ ├── main.c │ │ │ ├── print │ │ │ ├── CMakeLists.txt │ │ │ └── print_shell.c │ │ │ ├── shell.c │ │ │ ├── startup_cmd │ │ │ ├── CMakeLists.txt │ │ │ ├── startup_cmd_ctrl.c │ │ │ ├── startup_cmd_ctrl.h │ │ │ ├── startup_cmd_settings.c │ │ │ ├── startup_cmd_settings.h │ │ │ └── startup_cmd_shell.c │ │ │ └── utils │ │ │ ├── CMakeLists.txt │ │ │ ├── desh_print.c │ │ │ └── desh_print.h │ │ └── hello_dect │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── overlay-eu.conf │ │ ├── overlay-us.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ └── main.c ├── dfu │ ├── ab │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── ab_utils.c │ │ │ ├── ab_utils.h │ │ │ └── main.c │ │ ├── sysbuild.conf │ │ └── sysbuild │ │ │ ├── ipc_radio.overlay │ │ │ ├── mcuboot │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ └── prj.conf │ │ │ ├── nrf54h20dk_nrf54h20_memory_map.dtsi │ │ │ └── nrf54l15dk_nrf54l15_cpuapp_common.dtsi │ ├── ab_split │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── boards │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── ab_utils.c │ │ │ ├── ab_utils.h │ │ │ └── main.c │ │ ├── sysbuild.conf │ │ └── sysbuild │ │ │ ├── mcuboot │ │ │ ├── boards │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ └── prj.conf │ │ │ └── nrf54h20dk_nrf54h20_memory_map.dtsi │ ├── dfu_multi_image │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ ├── modules │ │ │ └── net_build_time_log │ │ │ │ └── zephyr │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── module.yml │ │ │ │ └── src │ │ │ │ └── net_build_time_log.c │ │ ├── pm_static_nrf5340dk_nrf5340_cpuapp.yml │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── dfu_multi_image_sample_common.h │ │ │ ├── dfu_multi_image_shell.c │ │ │ └── main.c │ │ ├── sysbuild.cmake │ │ ├── sysbuild.conf │ │ └── sysbuild │ │ │ ├── empty_net_core │ │ │ ├── boards │ │ │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ └── prj.conf │ │ │ ├── mcuboot │ │ │ ├── boards │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ └── prj.conf │ │ │ └── nrf54h20dk_nrf54h20_memory_map.dtsi │ ├── dfu_target │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ ├── pm_static_nrf52840dk_nrf52840.yml │ │ ├── pm_static_nrf54l15dk_nrf54l15_cpuapp.yml │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── dfu_target_shell.c │ │ │ └── main.c │ │ └── sysbuild.conf │ ├── fw_loader │ │ └── ble_mcumgr │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── README.rst │ │ │ ├── pm_static_nrf54l15dk_nrf54l15_cpuapp.yml │ │ │ ├── prj.conf │ │ │ ├── sample.yaml │ │ │ ├── sysbuild.conf │ │ │ └── sysbuild │ │ │ └── ipc_radio.conf │ ├── mcuboot_with_encryption │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ ├── kmu.sysbuild.conf │ │ ├── overlay-bt.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── sysbuild.conf │ │ └── sysbuild │ │ │ └── mcuboot │ │ │ ├── app.overlay │ │ │ ├── boards │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ └── prj.conf │ └── single_slot │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ ├── pm_static_nrf54l15dk_nrf54l15_cpuapp.yml │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ └── main.c │ │ ├── sysbuild.conf │ │ └── sysbuild │ │ ├── ble_mcumgr │ │ ├── boards │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ └── prj.conf │ │ ├── fw_loader_ipc_radio.overlay │ │ ├── mcuboot │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ └── prj.conf │ │ ├── nrf54h20.overlay │ │ └── uicr.overlay ├── edge_impulse │ ├── data_forwarder │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── app.overlay │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.overlay │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ └── wrapper │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ ├── include │ │ └── input_data.h │ │ └── main.c ├── esb │ ├── esb_monitor │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ ├── main.c │ │ │ ├── sniffer.c │ │ │ ├── sniffer.h │ │ │ └── sniffer_shell.c │ ├── esb_prx │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpurad.conf │ │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild.cmake │ └── esb_ptx │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── boards │ │ ├── nrf54h20dk_nrf54h20_cpurad.conf │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ └── main.c │ │ └── sysbuild.cmake ├── event_manager_proxy │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.sysbuild │ ├── README.rst │ ├── boards │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ ├── nrf5340dk_nrf5340_cpuapp_icmsg.conf │ │ ├── nrf5340dk_nrf5340_cpuapp_icmsg.overlay │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ ├── common_events │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── ack_event.c │ │ ├── ack_event.h │ │ ├── config_event.c │ │ ├── config_event.h │ │ ├── control_event.c │ │ ├── control_event.h │ │ ├── measurement_event.c │ │ └── measurement_event.h │ ├── modules │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── controller.c │ │ ├── sensor_simulated.c │ │ └── stats.c │ ├── prj.conf │ ├── remote │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpunet.conf │ │ │ ├── nrf5340dk_nrf5340_cpunet_icmsg.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpuppr.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuppr.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuflpr.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuflpr.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuflpr.conf │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuflpr.overlay │ │ ├── prj.conf │ │ └── src │ │ │ └── main.c │ ├── sample.yaml │ ├── src │ │ └── main.c │ └── sysbuild.cmake ├── gazell │ ├── gzll_ack_payload_device │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── gzll_ack_payload_host │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── gzp_dynamic_pairing_device │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ └── gzp_dynamic_pairing_host │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ └── main.c ├── hw_id │ ├── CMakeLists.txt │ ├── README.rst │ ├── overlay-ble-mac.conf │ ├── overlay-imei.conf │ ├── overlay-uuid.conf │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ └── main.c ├── ipc │ └── ipc_service │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.common │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ ├── nrf5340dk_nrf5340_cpuapp_icbmsg.conf │ │ ├── nrf5340dk_nrf5340_cpuapp_icbmsg.overlay │ │ ├── nrf5340dk_nrf5340_cpuapp_icmsg.conf │ │ ├── nrf5340dk_nrf5340_cpuapp_icmsg.overlay │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ ├── nrf54h20dk_nrf54h20_cpuapp_cpuppr.overlay │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ ├── nrf54l15dk_nrf54l15_cpuapp_icbmsg.overlay │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_icbmsg.overlay │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_icbmsg.overlay │ │ ├── nrf7002dk_nrf5340_cpuapp.conf │ │ ├── nrf7002dk_nrf5340_cpuapp_icbmsg.conf │ │ ├── nrf7002dk_nrf5340_cpuapp_icbmsg.overlay │ │ ├── nrf7002dk_nrf5340_cpuapp_icmsg.conf │ │ ├── nrf7002dk_nrf5340_cpuapp_icmsg.overlay │ │ └── nrf7002dk_nrf5340_cpuapp_ns.conf │ │ ├── prj.conf │ │ ├── remote │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpunet.conf │ │ │ ├── nrf5340dk_nrf5340_cpunet_icbmsg.conf │ │ │ ├── nrf5340dk_nrf5340_cpunet_icbmsg.overlay │ │ │ ├── nrf5340dk_nrf5340_cpunet_icmsg.conf │ │ │ ├── nrf5340dk_nrf5340_cpunet_icmsg.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpuppr.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuppr.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpurad.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuflpr.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuflpr_icbmsg.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuflpr.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuflpr_icbmsg.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuflpr.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuflpr_icbmsg.overlay │ │ │ ├── nrf7002dk_nrf5340_cpunet.conf │ │ │ ├── nrf7002dk_nrf5340_cpunet_icbmsg.conf │ │ │ ├── nrf7002dk_nrf5340_cpunet_icbmsg.overlay │ │ │ ├── nrf7002dk_nrf5340_cpunet_icmsg.conf │ │ │ └── nrf7002dk_nrf5340_cpunet_icmsg.overlay │ │ └── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ └── main.c │ │ ├── sysbuild.cmake │ │ └── sysbuild_cpuppr.conf ├── ironside_se │ ├── protectedmem_periphconf │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── app.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── secondary │ │ │ ├── CMakeLists.txt │ │ │ ├── app.overlay │ │ │ ├── prj.conf │ │ │ └── src │ │ │ │ └── main.c │ │ ├── src │ │ │ └── main.c │ │ ├── sysbuild.cmake │ │ └── sysbuild │ │ │ └── uicr.conf │ ├── secondary_boot_gen_uicr │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── secondary │ │ │ ├── CMakeLists.txt │ │ │ ├── app.overlay │ │ │ ├── prj.conf │ │ │ └── src │ │ │ │ └── main.c │ │ ├── src │ │ │ └── main.c │ │ ├── sysbuild.cmake │ │ └── sysbuild │ │ │ └── uicr.conf │ └── secondary_boot_trigger_lockup │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── secondary │ │ ├── CMakeLists.txt │ │ ├── app.overlay │ │ ├── prj.conf │ │ └── src │ │ │ └── main.c │ │ ├── src │ │ └── main.c │ │ ├── sysbuild.cmake │ │ └── sysbuild │ │ └── uicr.conf ├── keys │ ├── hw_unique_key │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf21540dk_nrf52840.conf │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf9151dk_nrf9151.conf │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9160dk_nrf9160.conf │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ ├── nrf9161dk_nrf9161.conf │ │ │ └── nrf9161dk_nrf9161_ns.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── derive_key.c │ │ │ ├── derive_key.h │ │ │ ├── derive_key_tfm.c │ │ │ └── main.c │ │ └── sysbuild │ │ │ └── b0 │ │ │ ├── boards │ │ │ ├── nrf5340_audio_dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ └── nrf5340dk_nrf5340_cpuapp_minimal.conf │ │ │ └── prj.conf │ ├── identity_key_generation │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ └── identity_key_usage │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ └── main.c ├── matter │ ├── .clang-format │ ├── closure │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── VERSION │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp_internal.overlay │ │ ├── pm_static_nrf52840dk_nrf52840.yml │ │ ├── pm_static_nrf5340dk_nrf5340_cpuapp.yml │ │ ├── pm_static_nrf54l15dk_nrf54l15_cpuapp.yml │ │ ├── pm_static_nrf54lm20dk_nrf54lm20a_cpuapp.yml │ │ ├── pm_static_nrf54lm20dk_nrf54lm20a_cpuapp_internal.yml │ │ ├── prj.conf │ │ ├── prj_release.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── app_task.cpp │ │ │ ├── app_task.h │ │ │ ├── chip_project_config.h │ │ │ ├── closure_control_endpoint.cpp │ │ │ ├── closure_control_endpoint.h │ │ │ ├── closure_manager.cpp │ │ │ ├── closure_manager.h │ │ │ ├── default_zap │ │ │ │ ├── closure.matter │ │ │ │ ├── closure.zap │ │ │ │ └── zap-generated │ │ │ │ │ ├── CodeDrivenCallback.h │ │ │ │ │ ├── CodeDrivenInitShutdown.cpp │ │ │ │ │ ├── IMClusterCommandHandler.cpp │ │ │ │ │ ├── PluginApplicationCallbacks.h │ │ │ │ │ ├── access.h │ │ │ │ │ ├── callback-stub.cpp │ │ │ │ │ ├── endpoint_config.h │ │ │ │ │ └── gen_config.h │ │ │ ├── garage_door_impl.cpp │ │ │ ├── garage_door_impl.h │ │ │ ├── main.cpp │ │ │ ├── persistent_percent.cpp │ │ │ ├── persistent_percent.h │ │ │ ├── physical_device.h │ │ │ └── physical_device_observer.h │ │ ├── sysbuild.conf │ │ ├── sysbuild │ │ │ ├── ipc_radio │ │ │ │ ├── boards │ │ │ │ │ └── nrf5340dk_nrf5340_cpunet.conf │ │ │ │ ├── prj.conf │ │ │ │ └── prj_release.conf │ │ │ └── mcuboot │ │ │ │ ├── app.overlay │ │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_internal.conf │ │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp_internal.overlay │ │ │ │ └── prj.conf │ │ └── sysbuild_internal.conf │ ├── common │ │ ├── cmake │ │ │ ├── data_model.cmake │ │ │ ├── source_common.cmake │ │ │ └── zap_helpers.cmake │ │ ├── config.rst │ │ ├── config_matter_stack.rst │ │ └── src │ │ │ ├── Kconfig │ │ │ ├── app │ │ │ ├── fabric_table_delegate.h │ │ │ ├── group_data_provider.h │ │ │ ├── matter_event_handler.cpp │ │ │ ├── matter_event_handler.h │ │ │ ├── matter_init.cpp │ │ │ ├── matter_init.h │ │ │ ├── task_executor.cpp │ │ │ └── task_executor.h │ │ │ ├── binding │ │ │ ├── binding_handler.cpp │ │ │ └── binding_handler.h │ │ │ ├── board │ │ │ ├── board.cpp │ │ │ ├── board.h │ │ │ ├── board_config.h │ │ │ ├── board_consts.h │ │ │ ├── led_util.h │ │ │ ├── led_widget.cpp │ │ │ └── led_widget.h │ │ │ ├── bt_nus │ │ │ ├── bt_nus_service.cpp │ │ │ └── bt_nus_service.h │ │ │ ├── certification │ │ │ ├── certification_hooks.cpp │ │ │ ├── certification_hooks.h │ │ │ ├── certs │ │ │ │ ├── CD.der │ │ │ │ ├── dac_cert.der │ │ │ │ ├── dac_cert.pem │ │ │ │ ├── dac_key.der │ │ │ │ ├── dac_key.pem │ │ │ │ ├── paa_cert.der │ │ │ │ ├── paa_cert.pem │ │ │ │ ├── paa_key.pem │ │ │ │ ├── pai_cert.der │ │ │ │ ├── pai_cert.pem │ │ │ │ ├── pai_key.der │ │ │ │ └── pai_key.pem │ │ │ ├── chip_project_config.h │ │ │ └── thread_platform │ │ │ │ ├── device_data_model.txt │ │ │ │ ├── overlay-thread_platform.conf │ │ │ │ ├── thread_certification.matter │ │ │ │ ├── thread_certification.zap │ │ │ │ └── zap-generated │ │ │ │ ├── CodeDrivenCallback.h │ │ │ │ ├── CodeDrivenInitShutdown.cpp │ │ │ │ ├── IMClusterCommandHandler.cpp │ │ │ │ ├── PluginApplicationCallbacks.h │ │ │ │ ├── access.h │ │ │ │ ├── callback-stub.cpp │ │ │ │ ├── endpoint_config.h │ │ │ │ └── gen_config.h │ │ │ ├── clusters │ │ │ └── identify.h │ │ │ ├── dfu │ │ │ ├── ota │ │ │ │ ├── ota_image_processor_base_impl.h │ │ │ │ ├── ota_util.cpp │ │ │ │ └── ota_util.h │ │ │ └── smp │ │ │ │ ├── dfu_over_smp.cpp │ │ │ │ └── dfu_over_smp.h │ │ │ ├── diagnostic │ │ │ ├── Kconfig │ │ │ ├── diagnostic_logs_crash.cpp │ │ │ ├── diagnostic_logs_crash.h │ │ │ ├── diagnostic_logs_intent_iface.h │ │ │ ├── diagnostic_logs_provider.cpp │ │ │ ├── diagnostic_logs_provider.h │ │ │ ├── diagnostic_logs_retention.cpp │ │ │ ├── diagnostic_logs_retention.h │ │ │ └── log_backend_diagnostic.cpp │ │ │ ├── event_triggers │ │ │ ├── default_event_triggers.cpp │ │ │ ├── default_event_triggers.h │ │ │ ├── event_triggers.cpp │ │ │ └── event_triggers.h │ │ │ ├── migration │ │ │ ├── migration_manager.cpp │ │ │ └── migration_manager.h │ │ │ ├── persistent_storage │ │ │ ├── Kconfig │ │ │ ├── backends │ │ │ │ ├── persistent_storage_secure.cpp │ │ │ │ ├── persistent_storage_secure.h │ │ │ │ ├── persistent_storage_settings.cpp │ │ │ │ └── persistent_storage_settings.h │ │ │ ├── persistent_storage.h │ │ │ ├── persistent_storage_common.h │ │ │ ├── persistent_storage_impl.h │ │ │ ├── persistent_storage_shell.cpp │ │ │ └── persistent_storage_shell.h │ │ │ ├── pwm │ │ │ ├── pwm_device.cpp │ │ │ └── pwm_device.h │ │ │ ├── test │ │ │ ├── test_shell.cpp │ │ │ └── test_shell.h │ │ │ ├── util │ │ │ └── finite_map.h │ │ │ ├── watchdog │ │ │ ├── Kconfig │ │ │ ├── watchdog.cpp │ │ │ └── watchdog.h │ │ │ └── zap_samples.yml │ ├── contact_sensor │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── VERSION │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp_internal.overlay │ │ ├── pm_static_nrf52840dk_nrf52840.yml │ │ ├── pm_static_nrf5340dk_nrf5340_cpuapp.yml │ │ ├── pm_static_nrf54l15dk_nrf54l15_cpuapp.yml │ │ ├── pm_static_nrf54lm20dk_nrf54lm20a_cpuapp.yml │ │ ├── pm_static_nrf54lm20dk_nrf54lm20a_cpuapp_internal.yml │ │ ├── prj.conf │ │ ├── prj_release.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── app_task.cpp │ │ │ ├── app_task.h │ │ │ ├── chip_project_config.h │ │ │ ├── default_zap │ │ │ │ ├── contact_sensor.matter │ │ │ │ ├── contact_sensor.zap │ │ │ │ └── zap-generated │ │ │ │ │ ├── CodeDrivenCallback.h │ │ │ │ │ ├── CodeDrivenInitShutdown.cpp │ │ │ │ │ ├── IMClusterCommandHandler.cpp │ │ │ │ │ ├── PluginApplicationCallbacks.h │ │ │ │ │ ├── access.h │ │ │ │ │ ├── callback-stub.cpp │ │ │ │ │ ├── endpoint_config.h │ │ │ │ │ └── gen_config.h │ │ │ └── main.cpp │ │ ├── sysbuild.conf │ │ ├── sysbuild │ │ │ ├── ipc_radio │ │ │ │ ├── boards │ │ │ │ │ └── nrf5340dk_nrf5340_cpunet.conf │ │ │ │ ├── prj.conf │ │ │ │ └── prj_release.conf │ │ │ └── mcuboot │ │ │ │ ├── app.overlay │ │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_internal.conf │ │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp_internal.overlay │ │ │ │ └── prj.conf │ │ └── sysbuild_internal.conf │ ├── light_bulb │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── VERSION │ │ ├── boards │ │ │ ├── nrf21540dk_nrf52840.conf │ │ │ ├── nrf21540dk_nrf52840.overlay │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_ns.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_internal.overlay │ │ │ ├── nrf7002dk_nrf5340_cpuapp.conf │ │ │ └── nrf7002dk_nrf5340_cpuapp.overlay │ │ ├── overlay-aws-iot-integration.conf │ │ ├── pm_static_nrf52840dk_nrf52840.yml │ │ ├── pm_static_nrf5340dk_nrf5340_cpuapp.yml │ │ ├── pm_static_nrf5340dk_nrf5340_cpuapp_nrf70ek.yml │ │ ├── pm_static_nrf54l15dk_nrf54l15_cpuapp.yml │ │ ├── pm_static_nrf54l15dk_nrf54l15_cpuapp_ns.yml │ │ ├── pm_static_nrf54lm20dk_nrf54lm20a_cpuapp.yml │ │ ├── pm_static_nrf54lm20dk_nrf54lm20a_cpuapp_internal.yml │ │ ├── pm_static_nrf7002dk_nrf5340_cpuapp.yml │ │ ├── prj.conf │ │ ├── prj_release.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── app_task.cpp │ │ │ ├── app_task.h │ │ │ ├── aws_iot_integration │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── aws_iot_integration.c │ │ │ │ ├── aws_iot_integration.h │ │ │ │ └── codec │ │ │ │ │ ├── codec.c │ │ │ │ │ └── codec.h │ │ │ ├── chip_project_config.h │ │ │ ├── default_zap │ │ │ │ ├── light_bulb.matter │ │ │ │ ├── light_bulb.zap │ │ │ │ └── zap-generated │ │ │ │ │ ├── CodeDrivenCallback.h │ │ │ │ │ ├── CodeDrivenInitShutdown.cpp │ │ │ │ │ ├── IMClusterCommandHandler.cpp │ │ │ │ │ ├── PluginApplicationCallbacks.h │ │ │ │ │ ├── access.h │ │ │ │ │ ├── callback-stub.cpp │ │ │ │ │ ├── endpoint_config.h │ │ │ │ │ └── gen_config.h │ │ │ ├── main.cpp │ │ │ └── zcl_callbacks.cpp │ │ ├── sysbuild.conf │ │ ├── sysbuild │ │ │ ├── ipc_radio │ │ │ │ ├── boards │ │ │ │ │ ├── nrf5340dk_nrf5340_cpunet.conf │ │ │ │ │ └── nrf7002dk_nrf5340_cpunet.conf │ │ │ │ ├── prj.conf │ │ │ │ └── prj_release.conf │ │ │ └── mcuboot │ │ │ │ ├── app.overlay │ │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_internal.conf │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_internal.overlay │ │ │ │ ├── nrf7002dk_nrf5340_cpuapp.conf │ │ │ │ └── nrf7002dk_nrf5340_cpuapp.overlay │ │ │ │ └── prj.conf │ │ └── sysbuild_internal.conf │ ├── light_switch │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── VERSION │ │ ├── boards │ │ │ ├── nrf21540dk_nrf52840.conf │ │ │ ├── nrf21540dk_nrf52840.overlay │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_ns.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_internal.overlay │ │ │ ├── nrf7002dk_nrf5340_cpuapp.conf │ │ │ └── nrf7002dk_nrf5340_cpuapp.overlay │ │ ├── pm_static_nrf52840dk_nrf52840.yml │ │ ├── pm_static_nrf5340dk_nrf5340_cpuapp.yml │ │ ├── pm_static_nrf5340dk_nrf5340_cpuapp_nrf70ek.yml │ │ ├── pm_static_nrf54l15dk_nrf54l15_cpuapp.yml │ │ ├── pm_static_nrf54l15dk_nrf54l15_cpuapp_ns.yml │ │ ├── pm_static_nrf54lm20dk_nrf54lm20a_cpuapp.yml │ │ ├── pm_static_nrf54lm20dk_nrf54lm20a_cpuapp_internal.yml │ │ ├── pm_static_nrf7002dk_nrf5340_cpuapp.yml │ │ ├── prj.conf │ │ ├── prj_release.conf │ │ ├── sample.yaml │ │ ├── snippets │ │ │ └── lit_icd │ │ │ │ ├── light_switch.matter │ │ │ │ ├── light_switch.zap │ │ │ │ ├── lit_icd.conf │ │ │ │ ├── snippet.yml │ │ │ │ └── zap-generated │ │ │ │ ├── CodeDrivenCallback.h │ │ │ │ ├── CodeDrivenInitShutdown.cpp │ │ │ │ ├── IMClusterCommandHandler.cpp │ │ │ │ ├── PluginApplicationCallbacks.h │ │ │ │ ├── access.h │ │ │ │ ├── callback-stub.cpp │ │ │ │ ├── endpoint_config.h │ │ │ │ └── gen_config.h │ │ ├── src │ │ │ ├── app_task.cpp │ │ │ ├── app_task.h │ │ │ ├── chip_project_config.h │ │ │ ├── default_zap │ │ │ │ ├── light_switch.matter │ │ │ │ ├── light_switch.zap │ │ │ │ └── zap-generated │ │ │ │ │ ├── CodeDrivenCallback.h │ │ │ │ │ ├── CodeDrivenInitShutdown.cpp │ │ │ │ │ ├── IMClusterCommandHandler.cpp │ │ │ │ │ ├── PluginApplicationCallbacks.h │ │ │ │ │ ├── access.h │ │ │ │ │ ├── callback-stub.cpp │ │ │ │ │ ├── endpoint_config.h │ │ │ │ │ └── gen_config.h │ │ │ ├── light_switch.cpp │ │ │ ├── light_switch.h │ │ │ ├── main.cpp │ │ │ ├── shell_commands.cpp │ │ │ └── shell_commands.h │ │ ├── sysbuild.conf │ │ ├── sysbuild │ │ │ ├── ipc_radio │ │ │ │ ├── boards │ │ │ │ │ ├── nrf5340dk_nrf5340_cpunet.conf │ │ │ │ │ └── nrf7002dk_nrf5340_cpunet.conf │ │ │ │ └── prj.conf │ │ │ └── mcuboot │ │ │ │ ├── app.overlay │ │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_internal.conf │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_internal.overlay │ │ │ │ ├── nrf7002dk_nrf5340_cpuapp.conf │ │ │ │ └── nrf7002dk_nrf5340_cpuapp.overlay │ │ │ │ └── prj.conf │ │ └── sysbuild_internal.conf │ ├── lock │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── VERSION │ │ ├── boards │ │ │ ├── nrf21540dk_nrf52840.conf │ │ │ ├── nrf21540dk_nrf52840.overlay │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_ns.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_internal.overlay │ │ │ ├── nrf7002dk_nrf5340_cpuapp.conf │ │ │ ├── nrf7002dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf7002dk_nrf5340_cpuapp_nrf7001.conf │ │ │ ├── nrf7002dk_nrf5340_cpuapp_nrf7001.overlay │ │ │ ├── nrf7002dk_nrf5340_cpuapp_nrf7001_release.conf │ │ │ └── nrf7002dk_nrf5340_cpuapp_release.conf │ │ ├── pm_static_nrf52840dk_nrf52840.yml │ │ ├── pm_static_nrf5340dk_nrf5340_cpuapp.yml │ │ ├── pm_static_nrf5340dk_nrf5340_cpuapp_nrf70ek.yml │ │ ├── pm_static_nrf5340dk_nrf5340_cpuapp_thread_wifi_switched.yml │ │ ├── pm_static_nrf54l15dk_nrf54l15_cpuapp.yml │ │ ├── pm_static_nrf54l15dk_nrf54l15_cpuapp_ns.yml │ │ ├── pm_static_nrf54lm20dk_nrf54lm20a_cpuapp.yml │ │ ├── pm_static_nrf54lm20dk_nrf54lm20a_cpuapp_internal.yml │ │ ├── pm_static_nrf7002dk_nrf5340_cpuapp.yml │ │ ├── pm_static_nrf7002dk_nrf5340_cpuapp_nrf7001.yml │ │ ├── prj.conf │ │ ├── prj_release.conf │ │ ├── prj_thread_wifi_switched.conf │ │ ├── sample.yaml │ │ ├── snippets │ │ │ └── schedules │ │ │ │ ├── lock.matter │ │ │ │ ├── lock.zap │ │ │ │ ├── schedules.conf │ │ │ │ ├── snippet.yml │ │ │ │ └── zap-generated │ │ │ │ ├── CodeDrivenCallback.h │ │ │ │ ├── CodeDrivenInitShutdown.cpp │ │ │ │ ├── IMClusterCommandHandler.cpp │ │ │ │ ├── PluginApplicationCallbacks.h │ │ │ │ ├── access.h │ │ │ │ ├── callback-stub.cpp │ │ │ │ ├── endpoint_config.h │ │ │ │ └── gen_config.h │ │ ├── src │ │ │ ├── access │ │ │ │ ├── access_data_types.cpp │ │ │ │ ├── access_data_types.h │ │ │ │ ├── access_manager.cpp │ │ │ │ ├── access_manager.h │ │ │ │ ├── access_manager_credentials.cpp │ │ │ │ ├── access_manager_schedules.cpp │ │ │ │ ├── access_manager_users.cpp │ │ │ │ ├── access_storage.cpp │ │ │ │ └── access_storage.h │ │ │ ├── app_task.cpp │ │ │ ├── app_task.h │ │ │ ├── bolt_lock_manager.cpp │ │ │ ├── bolt_lock_manager.h │ │ │ ├── chip_project_config.h │ │ │ ├── default_zap │ │ │ │ ├── lock.matter │ │ │ │ ├── lock.zap │ │ │ │ └── zap-generated │ │ │ │ │ ├── CodeDrivenCallback.h │ │ │ │ │ ├── CodeDrivenInitShutdown.cpp │ │ │ │ │ ├── IMClusterCommandHandler.cpp │ │ │ │ │ ├── PluginApplicationCallbacks.h │ │ │ │ │ ├── access.h │ │ │ │ │ ├── callback-stub.cpp │ │ │ │ │ ├── endpoint_config.h │ │ │ │ │ └── gen_config.h │ │ │ ├── main.cpp │ │ │ ├── thread_wifi_switch.cpp │ │ │ ├── thread_wifi_switch.h │ │ │ └── zcl_callbacks.cpp │ │ ├── sysbuild.conf │ │ ├── sysbuild │ │ │ ├── ipc_radio │ │ │ │ ├── boards │ │ │ │ │ ├── nrf5340dk_nrf5340_cpunet.conf │ │ │ │ │ ├── nrf5340dk_nrf5340_cpunet_thread_wifi_switched.conf │ │ │ │ │ ├── nrf7002dk_nrf5340_cpunet.conf │ │ │ │ │ └── nrf7002dk_nrf5340_cpunet_nrf7001.conf │ │ │ │ ├── prj.conf │ │ │ │ └── prj_release.conf │ │ │ └── mcuboot │ │ │ │ ├── app.overlay │ │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_internal.conf │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_internal.overlay │ │ │ │ ├── nrf7002dk_nrf5340_cpuapp.conf │ │ │ │ ├── nrf7002dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf7002dk_nrf5340_cpuapp_nrf7001.conf │ │ │ │ └── nrf7002dk_nrf5340_cpuapp_nrf7001.overlay │ │ │ │ └── prj.conf │ │ └── sysbuild_internal.conf │ ├── manufacturer_specific │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── VERSION │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_ns.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_internal.overlay │ │ │ ├── nrf7002dk_nrf5340_cpuapp.conf │ │ │ └── nrf7002dk_nrf5340_cpuapp.overlay │ │ ├── pm_static_nrf52840dk_nrf52840.yml │ │ ├── pm_static_nrf5340dk_nrf5340_cpuapp.yml │ │ ├── pm_static_nrf5340dk_nrf5340_cpuapp_nrf70ek.yml │ │ ├── pm_static_nrf54l15dk_nrf54l10_cpuapp.yml │ │ ├── pm_static_nrf54l15dk_nrf54l15_cpuapp.yml │ │ ├── pm_static_nrf54l15dk_nrf54l15_cpuapp_ns.yml │ │ ├── pm_static_nrf54lm20dk_nrf54lm20a_cpuapp.yml │ │ ├── pm_static_nrf54lm20dk_nrf54lm20a_cpuapp_internal.yml │ │ ├── pm_static_nrf7002dk_nrf5340_cpuapp.yml │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── app_task.cpp │ │ │ ├── app_task.h │ │ │ ├── basic_information_extension.cpp │ │ │ ├── basic_information_extension.h │ │ │ ├── chip_project_config.h │ │ │ ├── default_zap │ │ │ │ ├── NordicDevKitCluster.xml │ │ │ │ ├── manufacturer_specific.matter │ │ │ │ ├── manufacturer_specific.zap │ │ │ │ ├── zap-generated │ │ │ │ │ ├── CodeDrivenCallback.h │ │ │ │ │ ├── CodeDrivenInitShutdown.cpp │ │ │ │ │ ├── IMClusterCommandHandler.cpp │ │ │ │ │ ├── PluginApplicationCallbacks.h │ │ │ │ │ ├── access.h │ │ │ │ │ ├── app-common │ │ │ │ │ │ └── zap-generated │ │ │ │ │ │ │ ├── attribute-type.h │ │ │ │ │ │ │ ├── attributes │ │ │ │ │ │ │ ├── Accessors.cpp │ │ │ │ │ │ │ └── Accessors.h │ │ │ │ │ │ │ ├── callback.h │ │ │ │ │ │ │ ├── cluster-enums-check.h │ │ │ │ │ │ │ ├── cluster-enums.h │ │ │ │ │ │ │ ├── cluster-objects.cpp │ │ │ │ │ │ │ ├── cluster-objects.h │ │ │ │ │ │ │ └── ids │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Clusters.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ └── Events.h │ │ │ │ │ ├── callback-stub.cpp │ │ │ │ │ ├── clusters │ │ │ │ │ │ ├── AccessControl │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── AccountLogin │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── Actions │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── ActivatedCarbonFilterMonitoring │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── AdministratorCommissioning │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── AirQuality │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── ApplicationBasic │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── ApplicationLauncher │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── AudioOutput │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ ├── BallastConfiguration │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── BasicInformation │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── Binding │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── BooleanState │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── BooleanStateConfiguration │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── BridgedDeviceBasicInformation │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── CameraAvSettingsUserLevelManagement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── CameraAvStreamManagement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── CarbonDioxideConcentrationMeasurement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── CarbonMonoxideConcentrationMeasurement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── Channel │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── Chime │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── ClosureControl │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── ClosureDimension │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── ColorControl │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── CommissionerControl │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── CommodityMetering │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── CommodityPrice │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── CommodityTariff │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── ContentAppObserver │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── ContentControl │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── ContentLauncher │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── Descriptor │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── DeviceEnergyManagement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── DeviceEnergyManagementMode │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── DiagnosticLogs │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── DishwasherAlarm │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── DishwasherMode │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── DoorLock │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── EcosystemInformation │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── ElectricalEnergyMeasurement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── ElectricalGridConditions │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── ElectricalPowerMeasurement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── EnergyEvse │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── EnergyEvseMode │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── EnergyPreference │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── EthernetNetworkDiagnostics │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── FanControl │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── FaultInjection │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── FixedLabel │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── FlowMeasurement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── FormaldehydeConcentrationMeasurement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── GeneralCommissioning │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── GeneralDiagnostics │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── GroupKeyManagement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── Groupcast │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── Groups │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── HepaFilterMonitoring │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── IcdManagement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── Identify │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── IlluminanceMeasurement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── JointFabricAdministrator │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── JointFabricDatastore │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── KeypadInput │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── LaundryDryerControls │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── LaundryWasherControls │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── LaundryWasherMode │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── LevelControl │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── LocalizationConfiguration │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── LowPower │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── MediaInput │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── MediaPlayback │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── Messages │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── MetadataQuery.h │ │ │ │ │ │ ├── MeterIdentification │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── MicrowaveOvenControl │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── MicrowaveOvenMode │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── ModeSelect │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── NetworkCommissioning │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── NitrogenDioxideConcentrationMeasurement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── NordicDevKit │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── OccupancySensing │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── OnOff │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── OperationalCredentials │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── OperationalState │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── OtaSoftwareUpdateProvider │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── OtaSoftwareUpdateRequestor │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── OvenCavityOperationalState │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── OvenMode │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── OzoneConcentrationMeasurement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── Pm10ConcentrationMeasurement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── Pm1ConcentrationMeasurement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── Pm25ConcentrationMeasurement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── PowerSource │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── PowerSourceConfiguration │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── PowerTopology │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── PressureMeasurement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── ProxyConfiguration │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── ProxyDiscovery │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── ProxyValid │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── PulseWidthModulation │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── PumpConfigurationAndControl │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── PushAvStreamTransport │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── RadonConcentrationMeasurement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── RefrigeratorAlarm │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── RefrigeratorAndTemperatureControlledCabinetMode │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── RelativeHumidityMeasurement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── RvcCleanMode │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── RvcOperationalState │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── RvcRunMode │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── SampleMei │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── ScenesManagement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── ServiceArea │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── SmokeCoAlarm │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── SoftwareDiagnostics │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── SoilMeasurement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── Switch │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── TargetNavigator │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── TemperatureControl │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── TemperatureMeasurement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── Thermostat │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── ThermostatUserInterfaceConfiguration │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── ThreadBorderRouterManagement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── ThreadNetworkDiagnostics │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── ThreadNetworkDirectory │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── TimeFormatLocalization │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── TimeSynchronization │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── Timer │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── TlsCertificateManagement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── TlsClientManagement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── TotalVolatileOrganicCompoundsConcentrationMeasurement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── UnitLocalization │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── UnitTesting │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── UserLabel │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── ValveConfigurationAndControl │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── WakeOnLan │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── WaterHeaterManagement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── WaterHeaterMode │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── WaterTankLevelMonitoring │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── WebRTCTransportProvider │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── WebRTCTransportRequestor │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── WiFiNetworkDiagnostics │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── WiFiNetworkManagement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── WindowCovering │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ ├── ZoneManagement │ │ │ │ │ │ │ ├── AttributeIds.h │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Attributes.ipp │ │ │ │ │ │ │ ├── BUILD.gn │ │ │ │ │ │ │ ├── ClusterId.h │ │ │ │ │ │ │ ├── CommandIds.h │ │ │ │ │ │ │ ├── Commands.h │ │ │ │ │ │ │ ├── Commands.ipp │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── EventIds.h │ │ │ │ │ │ │ ├── Events.h │ │ │ │ │ │ │ ├── Events.ipp │ │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ │ ├── Metadata.h │ │ │ │ │ │ │ ├── MetadataProvider.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ │ └── shared │ │ │ │ │ │ │ ├── Attributes.h │ │ │ │ │ │ │ ├── Enums.h │ │ │ │ │ │ │ ├── EnumsCheck.h │ │ │ │ │ │ │ ├── GlobalIds.h │ │ │ │ │ │ │ ├── Structs.h │ │ │ │ │ │ │ └── Structs.ipp │ │ │ │ │ ├── devices │ │ │ │ │ │ ├── Ids.h │ │ │ │ │ │ └── Types.h │ │ │ │ │ ├── endpoint_config.h │ │ │ │ │ └── gen_config.h │ │ │ │ └── zcl.json │ │ │ ├── main.cpp │ │ │ └── zcl_callbacks.cpp │ │ ├── sysbuild.conf │ │ ├── sysbuild │ │ │ ├── ipc_radio │ │ │ │ ├── boards │ │ │ │ │ ├── nrf5340dk_nrf5340_cpunet.conf │ │ │ │ │ └── nrf7002dk_nrf5340_cpunet.conf │ │ │ │ └── prj.conf │ │ │ └── mcuboot │ │ │ │ ├── app.overlay │ │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_internal.conf │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_internal.overlay │ │ │ │ ├── nrf7002dk_nrf5340_cpuapp.conf │ │ │ │ └── nrf7002dk_nrf5340_cpuapp.overlay │ │ │ │ └── prj.conf │ │ └── sysbuild_internal.conf │ ├── smoke_co_alarm │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── VERSION │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp_internal.overlay │ │ ├── pm_static_nrf52840dk_nrf52840.yml │ │ ├── pm_static_nrf5340dk_nrf5340_cpuapp.yml │ │ ├── pm_static_nrf54l15dk_nrf54l10_cpuapp.yml │ │ ├── pm_static_nrf54l15dk_nrf54l15_cpuapp.yml │ │ ├── pm_static_nrf54lm20dk_nrf54lm20a_cpuapp.yml │ │ ├── pm_static_nrf54lm20dk_nrf54lm20a_cpuapp_internal.yml │ │ ├── prj.conf │ │ ├── prj_release.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── app_task.cpp │ │ │ ├── app_task.h │ │ │ ├── chip_project_config.h │ │ │ ├── default_zap │ │ │ │ ├── smoke_co_alarm.matter │ │ │ │ ├── smoke_co_alarm.zap │ │ │ │ └── zap-generated │ │ │ │ │ ├── CodeDrivenCallback.h │ │ │ │ │ ├── CodeDrivenInitShutdown.cpp │ │ │ │ │ ├── IMClusterCommandHandler.cpp │ │ │ │ │ ├── PluginApplicationCallbacks.h │ │ │ │ │ ├── access.h │ │ │ │ │ ├── callback-stub.cpp │ │ │ │ │ ├── endpoint_config.h │ │ │ │ │ └── gen_config.h │ │ │ ├── main.cpp │ │ │ └── zcl_callbacks.cpp │ │ ├── sysbuild.conf │ │ ├── sysbuild │ │ │ ├── ipc_radio │ │ │ │ ├── boards │ │ │ │ │ └── nrf5340dk_nrf5340_cpunet.conf │ │ │ │ ├── prj.conf │ │ │ │ └── prj_release.conf │ │ │ └── mcuboot │ │ │ │ ├── app.overlay │ │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_internal.conf │ │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp_internal.overlay │ │ │ │ └── prj.conf │ │ └── sysbuild_internal.conf │ ├── temperature_sensor │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── VERSION │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp_internal.overlay │ │ ├── pm_static_nrf52840dk_nrf52840.yml │ │ ├── pm_static_nrf5340dk_nrf5340_cpuapp.yml │ │ ├── pm_static_nrf54l15dk_nrf54l15_cpuapp.yml │ │ ├── pm_static_nrf54lm20dk_nrf54lm20a_cpuapp.yml │ │ ├── pm_static_nrf54lm20dk_nrf54lm20a_cpuapp_internal.yml │ │ ├── prj.conf │ │ ├── prj_release.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── app_task.cpp │ │ │ ├── app_task.h │ │ │ ├── chip_project_config.h │ │ │ ├── default_zap │ │ │ │ ├── temperature_sensor.matter │ │ │ │ ├── temperature_sensor.zap │ │ │ │ └── zap-generated │ │ │ │ │ ├── CodeDrivenCallback.h │ │ │ │ │ ├── CodeDrivenInitShutdown.cpp │ │ │ │ │ ├── IMClusterCommandHandler.cpp │ │ │ │ │ ├── PluginApplicationCallbacks.h │ │ │ │ │ ├── access.h │ │ │ │ │ ├── callback-stub.cpp │ │ │ │ │ ├── endpoint_config.h │ │ │ │ │ └── gen_config.h │ │ │ └── main.cpp │ │ ├── sysbuild.conf │ │ ├── sysbuild │ │ │ ├── ipc_radio │ │ │ │ ├── boards │ │ │ │ │ └── nrf5340dk_nrf5340_cpunet.conf │ │ │ │ ├── prj.conf │ │ │ │ └── prj_release.conf │ │ │ └── mcuboot │ │ │ │ ├── app.overlay │ │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_internal.conf │ │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp_internal.overlay │ │ │ │ └── prj.conf │ │ └── sysbuild_internal.conf │ ├── template │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── VERSION │ │ ├── boards │ │ │ ├── nrf21540dk_nrf52840.conf │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_internal.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_internal.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_ns.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_internal.overlay │ │ │ ├── nrf7002dk_nrf5340_cpuapp.conf │ │ │ └── nrf7002dk_nrf5340_cpuapp.overlay │ │ ├── pm_static_nrf52840dk_nrf52840.yml │ │ ├── pm_static_nrf5340dk_nrf5340_cpuapp.yml │ │ ├── pm_static_nrf5340dk_nrf5340_cpuapp_nrf70ek.yml │ │ ├── pm_static_nrf54l15dk_nrf54l10_cpuapp.yml │ │ ├── pm_static_nrf54l15dk_nrf54l15_cpuapp.yml │ │ ├── pm_static_nrf54l15dk_nrf54l15_cpuapp_internal.yml │ │ ├── pm_static_nrf54l15dk_nrf54l15_cpuapp_ns.yml │ │ ├── pm_static_nrf54lm20dk_nrf54lm20a_cpuapp.yml │ │ ├── pm_static_nrf54lm20dk_nrf54lm20a_cpuapp_internal.yml │ │ ├── pm_static_nrf7002dk_nrf5340_cpuapp.yml │ │ ├── prj.conf │ │ ├── prj_release.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── app_task.cpp │ │ │ ├── app_task.h │ │ │ ├── chip_project_config.h │ │ │ ├── default_zap │ │ │ │ ├── template.matter │ │ │ │ ├── template.zap │ │ │ │ └── zap-generated │ │ │ │ │ ├── CodeDrivenCallback.h │ │ │ │ │ ├── CodeDrivenInitShutdown.cpp │ │ │ │ │ ├── IMClusterCommandHandler.cpp │ │ │ │ │ ├── PluginApplicationCallbacks.h │ │ │ │ │ ├── access.h │ │ │ │ │ ├── callback-stub.cpp │ │ │ │ │ ├── endpoint_config.h │ │ │ │ │ └── gen_config.h │ │ │ └── main.cpp │ │ ├── sysbuild.conf │ │ ├── sysbuild │ │ │ ├── ipc_radio │ │ │ │ ├── boards │ │ │ │ │ ├── nrf5340dk_nrf5340_cpunet.conf │ │ │ │ │ └── nrf7002dk_nrf5340_cpunet.conf │ │ │ │ ├── prj.conf │ │ │ │ └── prj_release.conf │ │ │ └── mcuboot │ │ │ │ ├── app.overlay │ │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_internal.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_internal.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_internal.conf │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_internal.overlay │ │ │ │ ├── nrf7002dk_nrf5340_cpuapp.conf │ │ │ │ └── nrf7002dk_nrf5340_cpuapp.overlay │ │ │ │ └── prj.conf │ │ └── sysbuild_internal.conf │ ├── thermostat │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── VERSION │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_ns.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_internal.overlay │ │ │ ├── nrf7002dk_nrf5340_cpuapp.conf │ │ │ └── nrf7002dk_nrf5340_cpuapp.overlay │ │ ├── pm_static_nrf52840dk_nrf52840.yml │ │ ├── pm_static_nrf5340dk_nrf5340_cpuapp.yml │ │ ├── pm_static_nrf5340dk_nrf5340_cpuapp_nrf70ek.yml │ │ ├── pm_static_nrf54l15dk_nrf54l15_cpuapp.yml │ │ ├── pm_static_nrf54l15dk_nrf54l15_cpuapp_ns.yml │ │ ├── pm_static_nrf54lm20dk_nrf54lm20a_cpuapp.yml │ │ ├── pm_static_nrf54lm20dk_nrf54lm20a_cpuapp_internal.yml │ │ ├── pm_static_nrf7002dk_nrf5340_cpuapp.yml │ │ ├── prj.conf │ │ ├── prj_release.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── app_task.cpp │ │ │ ├── app_task.h │ │ │ ├── chip_project_config.h │ │ │ ├── default_zap │ │ │ │ ├── thermostat.matter │ │ │ │ ├── thermostat.zap │ │ │ │ └── zap-generated │ │ │ │ │ ├── CodeDrivenCallback.h │ │ │ │ │ ├── CodeDrivenInitShutdown.cpp │ │ │ │ │ ├── IMClusterCommandHandler.cpp │ │ │ │ │ ├── PluginApplicationCallbacks.h │ │ │ │ │ ├── access.h │ │ │ │ │ ├── callback-stub.cpp │ │ │ │ │ ├── endpoint_config.h │ │ │ │ │ └── gen_config.h │ │ │ ├── main.cpp │ │ │ ├── temp_sensor_manager.cpp │ │ │ ├── temp_sensor_manager.h │ │ │ ├── temperature_manager.cpp │ │ │ ├── temperature_manager.h │ │ │ ├── temperature_measurement │ │ │ │ ├── sensor.cpp │ │ │ │ └── sensor.h │ │ │ └── zcl_callbacks.cpp │ │ ├── sysbuild.conf │ │ ├── sysbuild │ │ │ ├── ipc_radio │ │ │ │ ├── boards │ │ │ │ │ ├── nrf5340dk_nrf5340_cpunet.conf │ │ │ │ │ └── nrf7002dk_nrf5340_cpunet.conf │ │ │ │ └── prj.conf │ │ │ └── mcuboot │ │ │ │ ├── app.overlay │ │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_internal.conf │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_internal.overlay │ │ │ │ ├── nrf7002dk_nrf5340_cpuapp.conf │ │ │ │ └── nrf7002dk_nrf5340_cpuapp.overlay │ │ │ │ └── prj.conf │ │ └── sysbuild_internal.conf │ └── window_covering │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── VERSION │ │ ├── boards │ │ ├── nrf21540dk_nrf52840.conf │ │ ├── nrf21540dk_nrf52840.overlay │ │ ├── nrf52840dk_nrf52840.overlay │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ ├── nrf54l15dk_nrf54l15_cpuapp_ns.overlay │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp_internal.overlay │ │ ├── pm_static_nrf52840dk_nrf52840.yml │ │ ├── pm_static_nrf5340dk_nrf5340_cpuapp.yml │ │ ├── pm_static_nrf54l15dk_nrf54l15_cpuapp.yml │ │ ├── pm_static_nrf54l15dk_nrf54l15_cpuapp_ns.yml │ │ ├── pm_static_nrf54lm20dk_nrf54lm20a_cpuapp.yml │ │ ├── pm_static_nrf54lm20dk_nrf54lm20a_cpuapp_internal.yml │ │ ├── prj.conf │ │ ├── prj_release.conf │ │ ├── sample.yaml │ │ ├── src │ │ ├── app_task.cpp │ │ ├── app_task.h │ │ ├── chip_project_config.h │ │ ├── default_zap │ │ │ ├── window-app.matter │ │ │ ├── window-app.zap │ │ │ └── zap-generated │ │ │ │ ├── CodeDrivenCallback.h │ │ │ │ ├── CodeDrivenInitShutdown.cpp │ │ │ │ ├── IMClusterCommandHandler.cpp │ │ │ │ ├── PluginApplicationCallbacks.h │ │ │ │ ├── access.h │ │ │ │ ├── callback-stub.cpp │ │ │ │ ├── endpoint_config.h │ │ │ │ └── gen_config.h │ │ ├── main.cpp │ │ ├── window_covering.cpp │ │ ├── window_covering.h │ │ └── zcl_callbacks.cpp │ │ ├── sysbuild.conf │ │ ├── sysbuild │ │ ├── ipc_radio │ │ │ ├── boards │ │ │ │ ├── nrf5340dk_nrf5340_cpunet.conf │ │ │ │ └── nrf7002dk_nrf5340_cpunet.conf │ │ │ ├── prj.conf │ │ │ └── prj_release.conf │ │ └── mcuboot │ │ │ ├── app.overlay │ │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_internal.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_internal.overlay │ │ │ └── nrf7002dk_nrf5340_cpuapp.conf │ │ │ └── prj.conf │ │ └── sysbuild_internal.conf ├── mcuboot │ └── firmware_loader_entrance │ │ ├── CMakeLists.txt │ │ ├── pm_static_nrf52840dk_nrf52840.yml │ │ ├── pm_static_nrf54l15dk_nrf54l15_cpuapp.yml │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ └── main.c │ │ ├── sysbuild.conf │ │ └── sysbuild │ │ └── mcuboot.conf ├── mpsl │ └── timeslot │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ └── main.c │ │ └── sysbuild.cmake ├── net │ ├── aws_iot │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── native_sim.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf7002dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf7002dk_nrf5340_cpuapp_ns.overlay │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9151dk_nrf9151_ns.overlay │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ ├── nrf9160dk_nrf9160_ns.overlay │ │ │ ├── nrf9161dk_nrf9161_ns.conf │ │ │ ├── nrf9161dk_nrf9161_ns.overlay │ │ │ ├── thingy91_nrf9160_ns.conf │ │ │ ├── thingy91_nrf9160_ns.overlay │ │ │ ├── thingy91x_nrf9151_ns.conf │ │ │ └── thingy91x_nrf9151_ns.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── json_payload │ │ │ │ ├── json_payload.c │ │ │ │ └── json_payload.h │ │ │ └── main.c │ │ └── sysbuild │ │ │ └── mcuboot │ │ │ ├── app.overlay │ │ │ ├── boards │ │ │ ├── nrf7002dk_nrf5340_cpuapp.conf │ │ │ ├── nrf7002dk_nrf5340_cpuapp.overlay │ │ │ ├── thingy91_nrf9160.conf │ │ │ ├── thingy91x_nrf9151.conf │ │ │ └── thingy91x_nrf9151.overlay │ │ │ └── prj.conf │ ├── azure_iot_hub │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── native_sim.conf │ │ │ ├── nrf7002dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf7002dk_nrf5340_cpuapp_ns.overlay │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ └── nrf9161dk_nrf9161_ns.conf │ │ ├── overlay-dps.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild │ │ │ └── mcuboot │ │ │ ├── app.overlay │ │ │ ├── boards │ │ │ ├── nrf7002dk_nrf5340_cpuapp.conf │ │ │ └── nrf7002dk_nrf5340_cpuapp.overlay │ │ │ └── prj.conf │ ├── coap_client │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── native_sim.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf7002dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ ├── nrf9161dk_nrf9161_ns.conf │ │ │ └── thingy91_nrf9160_ns.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── download │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── native_sim.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf7002dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ └── nrf9161dk_nrf9161_ns.conf │ │ ├── cert │ │ │ └── file-example.pem │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── http_server │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── native_sim.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf7002dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ ├── nrf9161dk_nrf9161_ns.conf │ │ │ └── thingy91_nrf9160_ns.conf │ │ ├── credentials │ │ │ ├── client.crt │ │ │ ├── client.key │ │ │ ├── server_certificate.pem │ │ │ └── server_private_key.pem │ │ ├── overlay-tls-nrf7002dk.conf │ │ ├── overlay-tls-nrf91.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ ├── credentials_provision.c │ │ │ ├── credentials_provision.h │ │ │ └── main.c │ ├── https_client │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── native_sim.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf7002dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ └── nrf9161dk_nrf9161_ns.conf │ │ ├── cert │ │ │ └── DigiCertGlobalG3.pem │ │ ├── overlay-pdn-nrf91-ipv4.conf │ │ ├── overlay-tfm-nrf91.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild │ │ │ └── mcuboot │ │ │ ├── app.overlay │ │ │ └── prj.conf │ ├── mqtt │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── native_sim.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf7002dk_nrf5340_cpuapp.conf │ │ │ ├── nrf7002dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9151dk_nrf9151_ns.overlay │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ ├── nrf9160dk_nrf9160_ns.overlay │ │ │ ├── nrf9161dk_nrf9161_ns.conf │ │ │ ├── nrf9161dk_nrf9161_ns.overlay │ │ │ ├── thingy91_nrf9160_ns.conf │ │ │ ├── thingy91_nrf9160_ns.overlay │ │ │ ├── thingy91x_nrf9151_ns.conf │ │ │ └── thingy91x_nrf9151_ns.overlay │ │ ├── doc │ │ │ ├── architecture.rst │ │ │ ├── description.rst │ │ │ └── provisioning.rst │ │ ├── overlay-tls-native_sim.conf │ │ ├── overlay-tls-nrf54l-nrf70.conf │ │ ├── overlay-tls-nrf7002.conf │ │ ├── overlay-tls-nrf91.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── message_channel.c │ │ │ └── message_channel.h │ │ │ └── modules │ │ │ ├── error │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.error │ │ │ └── error.c │ │ │ ├── led │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.led │ │ │ └── led.c │ │ │ ├── network │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.network │ │ │ └── network.c │ │ │ ├── sampler │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sampler │ │ │ └── sampler.c │ │ │ ├── transport │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.transport │ │ │ ├── client_id │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── client_id.c │ │ │ │ └── client_id.h │ │ │ ├── credentials │ │ │ │ └── ca-cert.pem │ │ │ ├── credentials_provision │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── credentials_provision.c │ │ │ └── transport.c │ │ │ └── trigger │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.trigger │ │ │ └── trigger.c │ └── udp │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ ├── native_sim.conf │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ ├── nrf7002dk_nrf5340_cpuapp_ns.conf │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ ├── nrf9151dk_nrf9151_ns.overlay │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ ├── nrf9160dk_nrf9160_ns.overlay │ │ ├── nrf9161dk_nrf9161_ns.conf │ │ ├── nrf9161dk_nrf9161_ns.overlay │ │ ├── thingy91_nrf9160_ns.conf │ │ └── thingy91_nrf9160_ns.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ └── main.c ├── nfc │ ├── record_launch_app │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── record_text │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── shell │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── system_off │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.conf │ │ │ └── nrf7120pdk_nrf7120_cpuapp.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── tag_reader │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── nrf52833dk_nrf52833.overlay │ │ ├── nrf52840dk_nrf52840.overlay │ │ ├── nrf52dk_nrf52832.overlay │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── tnep_poller │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── nrf52833dk_nrf52833.overlay │ │ ├── nrf52840dk_nrf52840.overlay │ │ ├── nrf52dk_nrf52832.overlay │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── tnep_tag │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ └── writable_ndef_msg │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── boards │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ ├── main.c │ │ ├── ndef_file_m.c │ │ └── ndef_file_m.h ├── nrf5340 │ ├── empty_app_core │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── extxip_smp_svr │ │ ├── CMakeLists.txt │ │ ├── Qspi_thingy53.ini │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.overlay │ │ │ └── thingy53_nrf5340_cpuapp.overlay │ │ ├── linker_arm_extxip.ld │ │ ├── pm_static.yml │ │ ├── pm_static_no_network_core.yml │ │ ├── pm_static_no_network_core_directxip.yml │ │ ├── pm_static_nrf5340dk_nrf5340_cpuapp_ns.yml │ │ ├── pm_static_nrf5340dk_nrf5340_cpuapp_ns_no_network_core.yml │ │ ├── prj.conf │ │ ├── prj_no_network_core.conf │ │ ├── prj_no_network_core_directxip.conf │ │ ├── sample.yaml │ │ ├── sysbuild.conf │ │ ├── sysbuild │ │ │ └── mcuboot │ │ │ │ ├── app.overlay │ │ │ │ ├── boards │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp_minimal.conf │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.overlay │ │ │ │ ├── thingy53_nrf5340_cpuapp.conf │ │ │ │ └── thingy53_nrf5340_cpuapp.overlay │ │ │ │ ├── prj.conf │ │ │ │ ├── prj_no_network_core.conf │ │ │ │ └── prj_no_network_core_directxip.conf │ │ ├── sysbuild_no_network_core.conf │ │ └── sysbuild_no_network_core_directxip.conf │ ├── netboot │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── overlay-minimal-size.conf │ │ ├── pm.yml │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild.conf │ └── remote_shell │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── boards │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ └── nrf5340dk_nrf5340_cpuapp_uart.overlay │ │ ├── prj.conf │ │ ├── prj_uart.conf │ │ ├── sample.yaml │ │ └── src │ │ ├── main.c │ │ ├── shell_ipc_host.c │ │ └── shell_ipc_host.h ├── nrf54h20 │ ├── empty_app_core │ │ ├── CMakeLists.txt │ │ ├── app.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── idle_relocated_tcm │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── app.overlay │ │ ├── app_split_slot.overlay │ │ ├── common │ │ │ ├── memory_map.dtsi │ │ │ ├── memory_map_ram_cpurad.dtsi │ │ │ ├── memory_map_ram_pm_cpurad.dtsi │ │ │ └── memory_map_split_slot.dtsi │ │ ├── prj.conf │ │ ├── remote │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ └── src │ │ │ │ └── main.c │ │ ├── src │ │ │ └── main.c │ │ ├── sysbuild.conf │ │ ├── sysbuild │ │ │ ├── mcuboot.overlay │ │ │ ├── mcuboot_split_slot.conf │ │ │ ├── mcuboot_split_slot.overlay │ │ │ ├── radio_loader.overlay │ │ │ ├── radio_loader_split_slot.overlay │ │ │ ├── remote.overlay │ │ │ └── remote_split_slot.overlay │ │ ├── sysbuild_split_slot.conf │ │ └── testcase.yaml │ └── radio_loader │ │ ├── CMakeLists.txt │ │ ├── app.overlay │ │ ├── prj.conf │ │ ├── src │ │ └── main.c │ │ └── testcase.yaml ├── nrf_compress │ └── mcuboot_update │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── pm_static_nrf52840dk_nrf52840.yml │ │ ├── pm_static_nrf5340dk_nrf5340_cpuapp.yml │ │ ├── pm_static_nrf54l15dk_nrf54l15_cpuapp.yml │ │ ├── pm_static_nrf54lm20dk_nrf54lm20a_cpuapp.yml │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ └── hook.c │ │ ├── sysbuild.conf │ │ └── sysbuild │ │ └── mcuboot.conf ├── nrf_profiler │ ├── CMakeLists.txt │ ├── README.rst │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ └── main.c ├── nrf_rpc │ ├── entropy_nrf53 │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── common_ids.h │ │ ├── prj.conf │ │ ├── remote │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ └── src │ │ │ │ ├── entropy_ser.c │ │ │ │ └── main.c │ │ ├── sample.yaml │ │ └── src │ │ │ ├── entropy_ser.c │ │ │ ├── entropy_ser.h │ │ │ └── main.c │ └── protocols_serialization │ │ ├── client │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ ├── find_test.ignore │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── snippets │ │ │ ├── ble │ │ │ │ ├── ble.conf │ │ │ │ └── snippet.yml │ │ │ ├── coex │ │ │ │ ├── coex.conf │ │ │ │ ├── coex.overlay │ │ │ │ └── snippet.yml │ │ │ ├── debug │ │ │ │ ├── debug.conf │ │ │ │ └── snippet.yml │ │ │ ├── log_rpc │ │ │ │ ├── log_rpc.conf │ │ │ │ └── snippet.yml │ │ │ ├── nfc │ │ │ │ ├── nfc.conf │ │ │ │ └── snippet.yml │ │ │ └── openthread │ │ │ │ ├── openthread.conf │ │ │ │ └── snippet.yml │ │ ├── src │ │ │ ├── bt_test_shell.c │ │ │ ├── bt_throughput_shell.c │ │ │ ├── coex_shell.c │ │ │ ├── log_rpc_shell.c │ │ │ ├── main.c │ │ │ ├── nfc_shell.c │ │ │ ├── ot_shell.c │ │ │ ├── ot_shell.h │ │ │ └── rpc_utils_shell.c │ │ └── sysbuild.conf │ │ └── server │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.zephyr_console_async │ │ ├── README.rst │ │ ├── boards │ │ ├── nrf52840dk_nrf52840.overlay │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ ├── find_test.ignore │ │ ├── pm_static_nrf52840dk_nrf52840.yml │ │ ├── pm_static_nrf54l15dk_nrf54l15_cpuapp.yml │ │ ├── pm_static_nrf54lm20dk_nrf54lm20a_cpuapp.yml │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── snippets │ │ ├── ble │ │ │ ├── ble.conf │ │ │ └── snippet.yml │ │ ├── coex │ │ │ ├── coex.conf │ │ │ ├── coex.overlay │ │ │ └── snippet.yml │ │ ├── debug │ │ │ ├── debug.conf │ │ │ └── snippet.yml │ │ ├── log_rpc │ │ │ ├── log_rpc.conf │ │ │ ├── log_rpc.overlay │ │ │ └── snippet.yml │ │ ├── nfc │ │ │ ├── nfc.conf │ │ │ └── snippet.yml │ │ └── openthread │ │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── openthread.conf │ │ │ └── snippet.yml │ │ └── src │ │ ├── fatal_error_trigger.c │ │ └── main.c ├── openthread │ ├── cli │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf21540dk_nrf52840.overlay │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf52840dongle_nrf52840.conf │ │ │ ├── nrf52840dongle_nrf52840.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_ns.overlay │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ ├── harness-thci │ │ │ ├── nRF_Connect_SDK_11_12.py │ │ │ └── nRF_Connect_SDK_13_14.py │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── snippets │ │ │ ├── ci │ │ │ │ ├── ci.conf │ │ │ │ └── snippet.yml │ │ │ ├── ci_l2 │ │ │ │ ├── ci_l2.conf │ │ │ │ └── snippet.yml │ │ │ ├── debug │ │ │ │ ├── debug.conf │ │ │ │ └── snippet.yml │ │ │ ├── diag_gpio │ │ │ │ ├── boards │ │ │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── diag_gpio.conf │ │ │ │ └── snippet.yml │ │ │ ├── l2 │ │ │ │ ├── l2.conf │ │ │ │ └── snippet.yml │ │ │ ├── logging │ │ │ │ ├── logging.conf │ │ │ │ └── snippet.yml │ │ │ ├── logging_l2 │ │ │ │ ├── logging_l2.conf │ │ │ │ └── snippet.yml │ │ │ ├── low_power │ │ │ │ ├── low_power.conf │ │ │ │ ├── low_power.overlay │ │ │ │ └── snippet.yml │ │ │ ├── multiprotocol │ │ │ │ ├── multiprotocol.conf │ │ │ │ └── snippet.yml │ │ │ ├── tcat │ │ │ │ ├── snippet.yml │ │ │ │ └── tcat.conf │ │ │ ├── tcp │ │ │ │ ├── snippet.yml │ │ │ │ └── tcp.conf │ │ │ └── usb │ │ │ │ ├── snippet.yml │ │ │ │ ├── usb.conf │ │ │ │ └── usb.overlay │ │ ├── src │ │ │ ├── ble.c │ │ │ ├── ble.h │ │ │ ├── low_power.c │ │ │ ├── low_power.h │ │ │ └── main.c │ │ ├── sysbuild │ │ │ └── ipc_radio │ │ │ │ ├── prj.conf │ │ │ │ └── prj_ble.conf │ │ └── sysbuild_ble.conf │ ├── coap_client │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf21540dk_nrf52840.overlay │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ └── nrf5340dk_nrf5340_cpuapp.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── snippets │ │ │ ├── ci │ │ │ │ ├── ci.conf │ │ │ │ └── snippet.yml │ │ │ ├── debug │ │ │ │ ├── debug.conf │ │ │ │ └── snippet.yml │ │ │ ├── logging │ │ │ │ ├── logging.conf │ │ │ │ └── snippet.yml │ │ │ ├── mtd │ │ │ │ ├── mtd.conf │ │ │ │ └── snippet.yml │ │ │ └── multiprotocol_ble │ │ │ │ ├── multiprotocol_ble.conf │ │ │ │ └── snippet.yml │ │ ├── src │ │ │ ├── ble_utils.c │ │ │ ├── ble_utils.h │ │ │ ├── coap_client.c │ │ │ ├── coap_client_utils.c │ │ │ └── coap_client_utils.h │ │ ├── sysbuild │ │ │ └── ipc_radio │ │ │ │ ├── prj.conf │ │ │ │ └── prj_ble.conf │ │ └── sysbuild_ble.conf │ ├── coap_server │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ └── nrf5340dk_nrf5340_cpuapp.conf │ │ ├── interface │ │ │ └── coap_server_client_interface.h │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── snippets │ │ │ ├── ci │ │ │ │ ├── ci.conf │ │ │ │ └── snippet.yml │ │ │ ├── debug │ │ │ │ ├── debug.conf │ │ │ │ └── snippet.yml │ │ │ ├── l2 │ │ │ │ ├── l2.conf │ │ │ │ └── snippet.yml │ │ │ ├── logging │ │ │ │ ├── logging.conf │ │ │ │ └── snippet.yml │ │ │ └── logging_l2 │ │ │ │ ├── logging_l2.conf │ │ │ │ └── snippet.yml │ │ └── src │ │ │ ├── coap_server.c │ │ │ ├── ot_coap_utils.c │ │ │ └── ot_coap_utils.h │ └── coprocessor │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── boards │ │ ├── nrf21540dk_nrf52840.overlay │ │ ├── nrf52833dk_nrf52833.overlay │ │ ├── nrf52840dk_nrf52840.overlay │ │ ├── nrf52840dongle_nrf52840.conf │ │ ├── nrf52840dongle_nrf52840.overlay │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ ├── nrf54l15dk_nrf54l05_cpuapp.overlay │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ ├── nrf54l15dk_nrf54l10_cpuapp.overlay │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ ├── nrf54l15dk_nrf54l15_cpuapp_ns.conf │ │ ├── nrf54l15dk_nrf54l15_cpuapp_ns.overlay │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── snippets │ │ ├── ci │ │ │ ├── ci.conf │ │ │ └── snippet.yml │ │ ├── debug │ │ │ ├── debug.conf │ │ │ └── snippet.yml │ │ ├── hci │ │ │ ├── rcp_hci.conf │ │ │ ├── rcp_hci.overlay │ │ │ └── snippet.yml │ │ ├── logging │ │ │ ├── logging.conf │ │ │ └── snippet.yml │ │ ├── usb │ │ │ ├── snippet.yml │ │ │ ├── usb.conf │ │ │ └── usb.overlay │ │ └── vendor_hook │ │ │ ├── snippet.yml │ │ │ └── vendor_hook.conf │ │ └── src │ │ ├── main.c │ │ ├── nrf_802154_radio_wrapper.c │ │ ├── nrf_802154_radio_wrapper.h │ │ ├── rcp_hci.c │ │ ├── rcp_hci.h │ │ └── user_vendor_hook.cpp ├── peripheral │ ├── 802154_phy_test │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf21540dk_nrf52840.conf │ │ │ ├── nrf52833dk_nrf52833.conf │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ ├── nrf5340dk_nrf5340_cpunet.conf │ │ │ ├── nrf5340dk_nrf5340_cpunet.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpurad.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ ├── include │ │ │ ├── comm_proc.h │ │ │ ├── internal │ │ │ │ ├── ctrl │ │ │ │ │ ├── ptt_ctrl.h │ │ │ │ │ ├── ptt_events.h │ │ │ │ │ ├── ptt_timers.h │ │ │ │ │ ├── ptt_trace.h │ │ │ │ │ └── ptt_uart.h │ │ │ │ ├── ptt_errors.h │ │ │ │ ├── ptt_proto.h │ │ │ │ ├── ptt_utils.h │ │ │ │ └── rf │ │ │ │ │ └── ptt_rf.h │ │ │ ├── periph_proc.h │ │ │ ├── ptt.h │ │ │ ├── ptt_config.h │ │ │ ├── ptt_rf_api.h │ │ │ ├── ptt_types.h │ │ │ ├── ptt_uart_api.h │ │ │ ├── rf_proc.h │ │ │ └── timer_proc.h │ │ ├── modules │ │ │ └── app_rpc │ │ │ │ └── zephyr │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── include │ │ │ │ └── app_rpc.h │ │ │ │ ├── module.yml │ │ │ │ └── src │ │ │ │ └── app_rpc.c │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── comm_proc.c │ │ │ ├── ctrl │ │ │ │ ├── ptt_ctrl.c │ │ │ │ ├── ptt_ctrl_internal.h │ │ │ │ ├── ptt_events.c │ │ │ │ ├── ptt_events_internal.h │ │ │ │ ├── ptt_mode_manager.c │ │ │ │ ├── ptt_modes.h │ │ │ │ ├── ptt_parser.c │ │ │ │ ├── ptt_parser_internal.h │ │ │ │ ├── ptt_proto.c │ │ │ │ ├── ptt_rf_proc.c │ │ │ │ ├── ptt_timers.c │ │ │ │ ├── ptt_timers_internal.h │ │ │ │ ├── ptt_uart_proc.c │ │ │ │ ├── ptt_zb_perf_cmd_mode.c │ │ │ │ ├── ptt_zb_perf_cmd_mode.h │ │ │ │ ├── ptt_zb_perf_cmd_mode_ota.c │ │ │ │ ├── ptt_zb_perf_cmd_mode_response.c │ │ │ │ ├── ptt_zb_perf_cmd_mode_uart.c │ │ │ │ ├── ptt_zb_perf_dut_mode.c │ │ │ │ └── ptt_zb_perf_dut_mode.h │ │ │ ├── main.c │ │ │ ├── periph_proc.c │ │ │ ├── ptt_conf.c │ │ │ ├── rf │ │ │ │ ├── ptt_rf.c │ │ │ │ └── ptt_rf_internal.h │ │ │ ├── rf_proc.c │ │ │ └── timer_proc.c │ │ ├── sysbuild.cmake │ │ ├── sysbuild.conf │ │ └── sysbuild │ │ │ └── remote_shell │ │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ └── prj.conf │ ├── 802154_sniffer │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ └── nrf5340dk_nrf5340_cpuapp.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── lpuart │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf21540dk_nrf52840.conf │ │ │ ├── nrf21540dk_nrf52840.overlay │ │ │ ├── nrf52833dk_nrf52833.conf │ │ │ ├── nrf52833dk_nrf52833.overlay │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf52dk_nrf52832.conf │ │ │ ├── nrf52dk_nrf52832.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.conf │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ └── nrf9160dk_nrf9160_ns.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ └── radio_test │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── boards │ │ ├── nrf5340dk_nrf5340_cpunet.conf │ │ ├── nrf5340dk_nrf5340_cpunet.overlay │ │ ├── nrf54h20dk_nrf54h20_cpurad.conf │ │ ├── nrf54h20dk_nrf54h20_cpurad.overlay │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.conf │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ ├── prj.conf │ │ ├── prj_usb.conf │ │ ├── sample.yaml │ │ ├── src │ │ ├── main.c │ │ ├── radio_cmd.c │ │ ├── radio_test.c │ │ └── radio_test.h │ │ ├── sysbuild.cmake │ │ ├── sysbuild.conf │ │ └── sysbuild │ │ └── remote_shell │ │ ├── boards │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ ├── nrf5340dk_nrf5340_cpuapp_usb.overlay │ │ └── usb.dts │ │ ├── prj.conf │ │ └── prj_usb.conf ├── pmic │ └── native │ │ ├── npm13xx_fuel_gauge │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ ├── extensions │ │ │ │ ├── nrf54h20dk │ │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54l15dk │ │ │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ └── nrf54lm20dk │ │ │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf52dk_nrf52832.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ └── nrf9160dk_nrf9160.overlay │ │ ├── npm1300.overlay │ │ ├── npm1304.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── battery_model.inc │ │ │ ├── battery_model_20mAh.inc │ │ │ ├── fuel_gauge.c │ │ │ ├── fuel_gauge.h │ │ │ └── main.c │ │ ├── npm13xx_one_button │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ ├── extensions │ │ │ │ ├── nrf54h20dk │ │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54l15dk │ │ │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ └── nrf54lm20dk │ │ │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf52dk_nrf52832.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ └── nrf9160dk_nrf9160.overlay │ │ ├── npm1300.overlay │ │ ├── npm1304.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ └── main.c │ │ ├── npm2100_fuel_gauge │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── npm2100ek_pmic.dtsi │ │ ├── nrf52840dk_nrf52840.overlay │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── fuel_gauge.c │ │ │ ├── fuel_gauge.h │ │ │ └── main.c │ │ └── npm2100_one_button │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ ├── npm2100_pmic.dtsi │ │ ├── nrf52840dk_nrf52840.overlay │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ └── main.c ├── sensor │ ├── bh1749 │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ └── bme68x_iaq │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── boards │ │ ├── nrf9160dk_nrf9160_ns.overlay │ │ └── thingy91x_nrf9151_ns.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ └── main.c ├── tfm │ ├── provisioning_image │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ └── nrf5340dk_nrf5340_cpuapp.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ ├── config_implementation_id.h │ │ │ └── main.c │ ├── provisioning_image_net_core │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ ├── tfm_hello_world │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ └── nrf9161dk_nrf9161_ns.conf │ │ ├── prj.conf │ │ ├── prj_bootloaders.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild_bootloaders.conf │ ├── tfm_psa_template │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_ns.conf │ │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ └── nrf9161dk_nrf9161_ns.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ ├── sysbuild.conf │ │ └── sysbuild │ │ │ ├── b0n │ │ │ └── prj.conf │ │ │ └── mcuboot │ │ │ ├── app.overlay │ │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ └── prj.conf │ └── tfm_secure_peripheral │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.overlay │ │ ├── nrf54l15dk_nrf54l15_cpuapp_ns.conf │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_ns.conf │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns.conf │ │ ├── nrf9151dk_nrf9151_ns.conf │ │ ├── nrf9151dk_nrf9151_ns.overlay │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ ├── nrf9160dk_nrf9160_ns.overlay │ │ ├── nrf9161dk_nrf9161_ns.conf │ │ └── nrf9161dk_nrf9161_ns.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── secure_peripheral_partition │ │ ├── CMakeLists.txt │ │ ├── secure_peripheral_partition.c │ │ ├── tfm_manifest_list.yaml.in │ │ ├── tfm_secure_peripheral_partition.yaml.in │ │ ├── util.c │ │ └── util.h │ │ └── src │ │ ├── main.c │ │ ├── secure_peripheral_partition.c │ │ └── secure_peripheral_partition.h ├── wifi │ ├── ble_coex │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── bt_throughput_test.c │ │ │ ├── bt_throughput_test.h │ │ │ └── main.c │ │ ├── sysbuild.conf │ │ └── sysbuild │ │ │ └── ipc_radio │ │ │ └── prj.conf │ ├── monitor │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── overlay-net-capture.conf │ │ ├── overlay-netusb.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild.conf │ ├── offloaded_raw_tx │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild.conf │ ├── promiscuous │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── overlay-net-capture.conf │ │ ├── overlay-netusb.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── main.c │ │ │ ├── wifi_connection.c │ │ │ └── wifi_connection.h │ │ └── sysbuild.conf │ ├── provisioning │ │ ├── ble │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.sysbuild │ │ │ ├── README.rst │ │ │ ├── prj.conf │ │ │ ├── sample.yaml │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.conf │ │ │ └── sysbuild │ │ │ │ └── ipc_radio │ │ │ │ └── prj.conf │ │ ├── internal │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── README.rst │ │ │ ├── prj.conf │ │ │ ├── sample.yaml │ │ │ ├── src │ │ │ │ ├── main.c │ │ │ │ ├── prov.c │ │ │ │ └── wifi_prov_transport_stub.c │ │ │ ├── sysbuild.cmake │ │ │ └── sysbuild.conf │ │ └── softap │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── README.rst │ │ │ ├── boards │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── certs │ │ │ ├── server_certificate.pem │ │ │ └── server_private_key.pem │ │ │ ├── prj.conf │ │ │ ├── sample.yaml │ │ │ ├── scripts │ │ │ └── provision.py │ │ │ ├── src │ │ │ └── main.c │ │ │ └── sysbuild.conf │ ├── radio_test │ │ ├── multi_domain │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── README.rst │ │ │ ├── boards │ │ │ │ └── thingy91x_nrf9151_ns.overlay │ │ │ ├── ficr.rst │ │ │ ├── inc │ │ │ │ └── nrf_wifi_radio_test_shell.h │ │ │ ├── prj.conf │ │ │ ├── radio_test_subcommands.rst │ │ │ ├── sample.yaml │ │ │ ├── sample_description.rst │ │ │ ├── src │ │ │ │ ├── ficr_prog.c │ │ │ │ ├── ficr_prog.h │ │ │ │ ├── nrf_wifi_radio_ficr_shell.c │ │ │ │ ├── nrf_wifi_radio_test_main.c │ │ │ │ └── nrf_wifi_radio_test_shell.c │ │ │ ├── sysbuild.cmake │ │ │ ├── sysbuild.conf │ │ │ └── testing.rst │ │ └── single_domain │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── README.rst │ │ │ ├── boards │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── ficr.rst │ │ │ ├── prj.conf │ │ │ ├── radio_test_subcommands.rst │ │ │ ├── sample.yaml │ │ │ ├── sample_description.rst │ │ │ ├── sysbuild.conf │ │ │ └── testing.rst │ ├── raw_tx_packet │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── main.c │ │ │ ├── wifi_connection.c │ │ │ └── wifi_connection.h │ │ └── sysbuild.conf │ ├── scan │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── boards │ │ │ └── thingy91x_nrf9151_ns.overlay │ │ ├── overlay-shell.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild.conf │ ├── shell │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf7002dk_nrf5340_cpuapp_ns.conf │ │ │ ├── thingy91x_nrf5340_cpuapp.conf │ │ │ ├── thingy91x_nrf5340_cpuapp.overlay │ │ │ └── thingy91x_nrf9151_ns.overlay │ │ ├── nrf7002_uart_pipe.overlay │ │ ├── overlay-ipv6-only.conf │ │ ├── overlay-monitor-mode.conf │ │ ├── overlay-net-capture.conf │ │ ├── overlay-netusb.conf │ │ ├── overlay-openthread.conf │ │ ├── overlay-promiscuous-mode.conf │ │ ├── overlay-raw-tx.conf │ │ ├── overlay-sap.conf │ │ ├── overlay-scan-only.conf │ │ ├── overlay-slip.conf │ │ ├── overlay-wpa_cli.conf │ │ ├── overlay-zperf.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── main.c │ │ │ ├── wifi_pocap_shell.c │ │ │ ├── wifi_promiscuous_shell.c │ │ │ └── wifi_raw_tx_pkt_shell.c │ │ ├── sysbuild.conf │ │ └── sysbuild │ │ │ └── mcuboot │ │ │ ├── app.overlay │ │ │ ├── boards │ │ │ ├── thingy53_nrf5340_cpuapp.conf │ │ │ ├── thingy91x_nrf5340_cpuapp.conf │ │ │ ├── thingy91x_nrf5340_cpuapp.overlay │ │ │ ├── thingy91x_nrf9151.conf │ │ │ └── thingy91x_nrf9151.overlay │ │ │ └── prj.conf │ ├── shutdown │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild.conf │ ├── softap │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── boards │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild.conf │ ├── sta │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── boards │ │ │ └── nrf52840dk_nrf52840.conf │ │ ├── overlay-zperf.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild.conf │ ├── thread_coex │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── overlay-logging.conf │ │ ├── overlay-wifi-udp-client-thread-udp-client.conf │ │ ├── overlay-wifi-udp-client-thread-udp-server.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ ├── main.c │ │ │ ├── main.h │ │ │ ├── ot_coex_functions.c │ │ │ ├── ot_coex_functions.h │ │ │ ├── ot_utils.c │ │ │ ├── ot_utils.h │ │ │ ├── zperf_utils.c │ │ │ └── zperf_utils.h │ │ ├── sysbuild.conf │ │ └── sysbuild │ │ │ └── ipc_radio │ │ │ └── prj.conf │ ├── throughput │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── overlay-high-performance.conf │ │ ├── overlay-iot-devices.conf │ │ ├── overlay-memory-optimized.conf │ │ ├── overlay-rx-prio.conf │ │ ├── overlay-tx-prio.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild.conf │ ├── twt │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── modules │ │ │ └── traffic_gen │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── inc │ │ │ │ ├── traffic_gen.h │ │ │ │ └── traffic_gen_tcp.h │ │ │ │ └── src │ │ │ │ ├── main.c │ │ │ │ └── tcp.c │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ │ └── main.c │ │ └── sysbuild.conf │ └── wfa_qt_app │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.rst │ │ ├── nrf54h20_uart_pipe.overlay │ │ ├── nrf54lm20_uart_pipe.overlay │ │ ├── nrf7002_uart_pipe.overlay │ │ ├── overlay-enterprise.conf │ │ ├── overlay-netusb.conf │ │ ├── overlay-slip.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ └── qt_app_main.c │ │ └── sysbuild.conf └── zephyr │ ├── basic │ └── blinky │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ ├── boards │ │ └── nrf54l15dk_nrf54l15_cpuapp_hpf_gpio.overlay │ │ ├── prj.conf │ │ └── sample.yaml │ ├── bluetooth │ ├── beacon │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ └── sample.yaml │ ├── hci_uart │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ ├── boards │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp_ns.overlay │ │ └── sample.yaml │ └── peripheral_hr │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ └── sample.yaml │ ├── boards │ └── nordic │ │ ├── spis_wakeup │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── sysbuild.cmake │ │ └── wakeup_trigger │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ └── prj.conf │ │ └── system_off │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.txt │ │ ├── boards │ │ ├── nrf54l15dk_nrf54l10_cpuapp_ns.conf │ │ ├── nrf54l15dk_nrf54l15_cpuapp_ns.conf │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_ns.conf │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns.conf │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns.overlay │ │ ├── nrf7120pdk_nrf7120_cpuapp.conf │ │ └── nrf7120pdk_nrf7120_cpuapp.overlay │ │ ├── prj.conf │ │ └── sample.yaml │ ├── drivers │ ├── adc │ │ ├── adc_dt │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp_ns.overlay │ │ │ ├── prj.conf │ │ │ └── sample.yaml │ │ └── adc_sequence │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp_ns.overlay │ │ │ ├── prj.conf │ │ │ └── sample.yaml │ ├── audio │ │ └── dmic │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── prj.conf │ │ │ └── sample.yaml │ ├── counter │ │ └── alarm │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns.overlay │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuflpr.overlay │ │ │ ├── prj.conf │ │ │ └── sample.yaml │ ├── i2c │ │ └── rtio_loopback │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.conf │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.conf │ │ │ └── nrf7120pdk_nrf7120_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ └── sample.yaml │ ├── jesd216 │ │ ├── CMakeLists.txt │ │ ├── boards │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_sqspi.overlay │ │ │ ├── sqspi_16MHz.overlay │ │ │ └── sqspi_32MHz.overlay │ │ ├── prj.conf │ │ └── sample.yaml │ ├── mbox │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.txt │ │ ├── boards │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ ├── prj.conf │ │ ├── remote │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── boards │ │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuflpr.overlay │ │ │ └── prj.conf │ │ ├── sample.yaml │ │ ├── sysbuild.cmake │ │ └── sysbuild.conf │ ├── regulator │ │ └── ship_mode │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── sample.yaml │ │ │ └── src │ │ │ └── main.c │ ├── spi_bitbang │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ ├── boards │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ ├── prj.conf │ │ └── sample.yaml │ ├── spi_flash │ │ ├── CMakeLists.txt │ │ ├── boards │ │ │ └── nrf54l15dk_nrf54l15_cpuapp_sqspi.overlay │ │ ├── prj.conf │ │ └── sample.yaml │ └── watchdog │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ ├── boards │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ └── nrf54lv10dk_nrf54lv10a_cpuflpr.overlay │ │ ├── prj.conf │ │ └── sample.yaml │ ├── sensor │ ├── accel_polling │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ ├── prj.conf │ │ └── sample.yaml │ ├── bme680 │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ └── qdec │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ ├── boards │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ └── nrf7120pdk_nrf7120_cpuapp.overlay │ │ ├── prj.conf │ │ └── sample.yaml │ ├── smp_svr_mini_boot │ ├── CMakeLists.txt │ ├── Kconfig.sysbuild │ ├── README.rst │ ├── boards │ │ └── nrf54h20dk_nrf54h20_cpuapp_direct_xip.overlay │ ├── pm_static.yml │ ├── prj.conf │ ├── sample.yaml │ ├── sysbuild.conf │ └── sysbuild │ │ ├── ipc_radio_direct_xip.overlay │ │ ├── mcuboot │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_direct_xip.overlay │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.conf │ │ └── prj.conf │ │ └── nrf54h20dk_nrf54h20_memory_map_direct_xip.dtsi │ ├── subsys │ ├── ipc │ │ └── ipc_service │ │ │ └── icmsg │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_icbmsg.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp_icbmsg.overlay │ │ │ ├── prj.conf │ │ │ ├── remote │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuflpr.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuflpr_icbmsg.overlay │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuflpr.conf │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuflpr.overlay │ │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuflpr_icbmsg.overlay │ │ │ └── prj.conf │ │ │ ├── sample.yaml │ │ │ ├── sysbuild.cmake │ │ │ └── sysbuild.conf │ ├── mgmt │ │ └── mcumgr │ │ │ └── smp_svr │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── README.txt │ │ │ ├── app_nrf5340_bt.overlay │ │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_ext_flash.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_merged_slot.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_requests.overlay │ │ │ ├── nrf54l15dk_ext_flash.overlay │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp_ext_flash.overlay │ │ │ └── nrf54l15dk_nrf54l10_cpuapp_ext_flash.overlay │ │ │ ├── overlay-bt.conf │ │ │ ├── overlay-serial.conf │ │ │ ├── pm_static_nrf5340_bt.yml │ │ │ ├── prj.conf │ │ │ ├── prj_nrf5340_bt.conf │ │ │ ├── prj_requests.conf │ │ │ ├── sample.yaml │ │ │ ├── sysbuild.conf │ │ │ ├── sysbuild │ │ │ ├── ipc_radio.conf │ │ │ ├── ipc_radio_merged_slot.overlay │ │ │ ├── ipc_radio_requests.overlay │ │ │ ├── mcuboot │ │ │ │ ├── boards │ │ │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ │ │ ├── nrf52840dk_nrf52840_larger_mcuboot.conf │ │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp_direct_xip.conf │ │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp_larger_mcuboot.conf │ │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_ext_flash.overlay │ │ │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp_ext_flash.overlay │ │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp_ext_flash.conf │ │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp_ext_flash.overlay │ │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_ed25519.conf │ │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_ext_flash.conf │ │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_ext_flash.overlay │ │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_fprotect.conf │ │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_larger_mcuboot.conf │ │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_fprotect.conf │ │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_larger_mcuboot.conf │ │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_direct_xip.conf │ │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_larger_mcuboot.conf │ │ │ │ │ └── nrf9160dk_nrf9160.conf │ │ │ │ └── prj.conf │ │ │ ├── mcuboot_merged_slot.overlay │ │ │ ├── mcuboot_nrf5340_bt.conf │ │ │ ├── mcuboot_nrf5340_bt.overlay │ │ │ ├── mcuboot_requests.conf │ │ │ ├── mcuboot_requests.overlay │ │ │ ├── nrf54h20dk_nrf54h20_ext_flash.dtsi │ │ │ ├── nrf54h20dk_nrf54h20_memory_map_merged_slot.dtsi │ │ │ └── nrf54h20dk_nrf54h20_memory_map_requests.dtsi │ │ │ ├── sysbuild_merged_slot.conf │ │ │ ├── sysbuild_nrf5340_bt.conf │ │ │ └── sysbuild_requests.conf │ └── usb │ │ ├── cdc_acm │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.txt │ │ ├── app.overlay │ │ ├── prj.conf │ │ └── sample.yaml │ │ ├── hid-keyboard │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.txt │ │ ├── app.overlay │ │ ├── large_in_report.overlay │ │ ├── large_out_report.overlay │ │ ├── out_report.overlay │ │ ├── prj.conf │ │ └── sample.yaml │ │ ├── hid-mouse │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.txt │ │ ├── app.overlay │ │ ├── prj.conf │ │ └── sample.yaml │ │ └── mass │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.txt │ │ ├── prj.conf │ │ ├── ramdisk.overlay │ │ └── sample.yaml │ └── sysbuild │ └── hello_world │ ├── CMakeLists.txt │ ├── Kconfig.sysbuild │ ├── README.txt │ ├── prj.conf │ ├── pytest │ └── test_both_uart.py │ ├── remote │ ├── CMakeLists.txt │ └── prj.conf │ ├── sample.yaml │ └── sysbuild.cmake ├── scripts ├── bluetooth │ └── mesh │ │ └── mesh_dfu_metadata.py ├── bootloader │ ├── asn1parse.py │ ├── dfu_multi_image_tool.py │ ├── do_sign.py │ ├── generate_zip.py │ ├── hash.py │ ├── keygen.py │ ├── keyhash_validate.py │ ├── provision.py │ ├── tests │ │ ├── asn1parse_test.py │ │ ├── conftest.py │ │ ├── do_sign_test.py │ │ ├── keygen_test.py │ │ ├── utils.py │ │ └── validation_data_test.py │ └── validation_data.py ├── cert_tool.py ├── checkpatch │ └── typedefsfile ├── ci │ ├── check_license.py │ ├── check_manifest_userdata.py │ ├── codeowners.py │ ├── license_allow_list.yaml │ ├── requirements.txt │ ├── tags.yaml │ ├── tags_sdk_zephyr.yaml │ ├── test_plan.py │ ├── twister_ignore.txt │ └── twister_ignore_sdk_zephyr.txt ├── docker │ ├── Dockerfile │ ├── README.rst │ ├── interactive-setup.sh │ ├── jlink │ │ ├── install.sh │ │ └── license.txt │ └── non-interactive-setup.sh ├── esb_sniffer │ ├── README.rst │ ├── Sniffer.py │ ├── capture_to_pcap.py │ ├── esb_dissector.lua │ ├── extcap │ │ └── esb_extcap.py │ ├── main.py │ └── requirements.txt ├── generate_psa_key_attributes.py ├── generate_psa_key_attributes │ └── generate_psa_key_attributes.rst ├── get_pulls_in_range.py ├── hid_configurator │ ├── 60-hid.rules │ ├── NrfHidDevice.py │ ├── NrfHidManager.py │ ├── README.rst │ ├── configurator_cli.py │ ├── modules │ │ ├── config.py │ │ ├── dfu.py │ │ ├── led_stream.py │ │ ├── module_config.py │ │ └── music_led_stream.py │ ├── requirements.txt │ └── requirements_music_led_stream.txt ├── hpf │ └── remove_comments.py ├── manifest-userdata-schema.yml ├── memfault │ ├── README.rst │ ├── mds_ble_gateway.py │ └── requirements.txt ├── memory-threshold-list.yaml ├── ncs-docker-version.txt ├── nrf_profiler │ ├── README.rst │ ├── calc_stats.py │ ├── data_collector.py │ ├── events.py │ ├── merge_data.py │ ├── model_creator.py │ ├── plot_from_files.py │ ├── plot_nordic.py │ ├── plot_nordic_config.py │ ├── processed_events.py │ ├── real_time_plot.py │ ├── requirements.txt │ ├── rtt2stream.py │ ├── rtt_nordic_config.py │ ├── stats_nordic.py │ ├── stats_nordic_presets │ │ ├── app_event_manager_profiler_tracer.json │ │ ├── nrf_desktop │ │ │ └── hid_performance.json │ │ └── nrf_profiler.json │ └── stream.py ├── nrf_provision │ └── fast_pair │ │ ├── README.rst │ │ ├── fp_provision_cli.py │ │ └── requirements.txt ├── partition_manager.py ├── partition_manager │ └── partition_manager.rst ├── partition_manager_output.py ├── partition_manager_report.py ├── pip-audit-whitelist.yml ├── print_docker_image.sh ├── print_toolchain_checksum.sh ├── quarantine.yaml ├── quarantine_integration.yaml ├── quarantine_llvm.yaml ├── quarantine_no_optimization.yaml ├── quarantine_windows_mac.yaml ├── quarantine_zephyr.yaml ├── quarantine_zephyr_integration.yaml ├── reglock.py ├── requirements-base.txt ├── requirements-build.txt ├── requirements-ci.txt ├── requirements-extra.txt ├── requirements-fixed.txt ├── requirements-test.txt ├── requirements-west-ncs-sbom.txt ├── requirements.txt ├── runners │ ├── nrf_common_next.py │ └── nrfutil_next.py ├── shell │ ├── ble_console │ │ ├── BlueZ_communication.py │ │ ├── BluetoothConsole.py │ │ ├── README.rst │ │ ├── TerminalNotebook.py │ │ ├── ble-console.desktop │ │ ├── docs │ │ │ ├── inactive.png │ │ │ └── nordic_semi_logo.png │ │ └── setup_with_cx_freeze.py │ ├── bt_nus_shell.py │ └── requirements.txt ├── tag_west_repos.sh ├── tests │ ├── __init__.py │ ├── conftest.py │ └── partition_manager_test.py ├── tools-versions-darwin.yml ├── tools-versions-linux-extra.txt ├── tools-versions-linux.yml ├── tools-versions-win10.yml ├── traffic_gen_server.py ├── unity │ ├── func_name_list.py │ └── header_prepare.py ├── vale │ ├── README.md │ ├── styles │ │ └── Nordic │ │ │ ├── AMPM.yml_ignored │ │ │ ├── Accessibility.yml │ │ │ ├── Acronyms.yml │ │ │ ├── Adverbs.yml │ │ │ ├── Auto.yml_ignored │ │ │ ├── Avoid.yml │ │ │ ├── Contractions.yml │ │ │ ├── Dashes.yml │ │ │ ├── DateNumbers.yml │ │ │ ├── DateOrder.yml │ │ │ ├── Ellipses.yml │ │ │ ├── FirstPerson.yml │ │ │ ├── Foreign.yml │ │ │ ├── Gender.yml │ │ │ ├── GenderBias.yml │ │ │ ├── GeneralURL.yml │ │ │ ├── HeadingAcronyms.yml │ │ │ ├── HeadingColons.yml │ │ │ ├── HeadingPunctuation.yml │ │ │ ├── Headings.yml │ │ │ ├── Hyphens.yml │ │ │ ├── Negative.yml │ │ │ ├── Ordinal.yml │ │ │ ├── OtherSubstitutions.yml_ignored │ │ │ ├── OxfordComma.yml │ │ │ ├── Passive.yml │ │ │ ├── Percentages.yml │ │ │ ├── Plurals.yml │ │ │ ├── Quotes.yml │ │ │ ├── RangeTime.yml │ │ │ ├── Semicolon.yml │ │ │ ├── SentenceLength.yml │ │ │ ├── Spacing.yml │ │ │ ├── Spelling.yml_ignored │ │ │ ├── Suspended.yml │ │ │ ├── Terms.yml │ │ │ ├── URLFormat.yml │ │ │ ├── Units.yml_ignored │ │ │ ├── Vocab.yml │ │ │ ├── We.yml │ │ │ ├── Wordiness.yml │ │ │ └── meta.json │ └── vocab │ │ └── Base │ │ ├── accept.txt │ │ └── reject.txt ├── west-commands.yml └── west_commands │ ├── create_board │ ├── config.yml │ ├── ncs_create_board.py │ ├── schema.json │ ├── templates │ │ ├── nrf52 │ │ │ ├── Kconfig.board.jinja2 │ │ │ ├── board-pinctrl.dtsi │ │ │ ├── board.cmake.jinja2 │ │ │ ├── board.dts.jinja2 │ │ │ ├── board.yml.jinja2 │ │ │ ├── board_defconfig.jinja2 │ │ │ ├── board_twister.yaml.jinja2 │ │ │ └── pre_dt_board.cmake │ │ ├── nrf53 │ │ │ ├── Kconfig.board.jinja2 │ │ │ ├── Kconfig.defconfig.jinja2 │ │ │ ├── board-cpuapp_partitioning.dtsi.jinja2 │ │ │ ├── board-pinctrl.dtsi │ │ │ ├── board-shared_sram.dtsi │ │ │ ├── board.cmake.jinja2 │ │ │ ├── board.dts.jinja2 │ │ │ ├── board.yml.jinja2 │ │ │ ├── board_defconfig.jinja2 │ │ │ ├── board_twister.yaml.jinja2 │ │ │ └── pre_dt_board.cmake │ │ ├── nrf54l │ │ │ ├── Kconfig.board.jinja2 │ │ │ ├── Kconfig.defconfig.jinja2 │ │ │ ├── board-pinctrl.dtsi │ │ │ ├── board.cmake.jinja2 │ │ │ ├── board.dts.jinja2 │ │ │ ├── board.yml.jinja2 │ │ │ ├── board_defconfig.jinja2 │ │ │ ├── board_twister.yaml.jinja2 │ │ │ └── pre_dt_board.cmake │ │ └── nrf91 │ │ │ ├── Kconfig.board.jinja2 │ │ │ ├── Kconfig.defconfig.jinja2 │ │ │ ├── board-partitioning.dtsi.jinja2 │ │ │ ├── board-pinctrl.dtsi │ │ │ ├── board.cmake.jinja2 │ │ │ ├── board.dts.jinja2 │ │ │ ├── board.yml.jinja2 │ │ │ ├── board_defconfig.jinja2 │ │ │ ├── board_twister.yaml.jinja2 │ │ │ └── pre_dt_board.cmake │ └── west-ncs-create-board-test.sh │ ├── mypy.ini │ ├── ncs_commands.py │ ├── ncs_ironside_se_update.py │ ├── ncs_provision.py │ ├── ncs_west_helpers.py │ ├── pygit2_helpers.py │ ├── sbom │ ├── README.rst │ ├── __main__.py │ ├── args.py │ ├── cache_database_detector.py │ ├── common.py │ ├── data │ │ ├── license-texts.yaml │ │ └── spdx-licenses.yaml │ ├── data_structure.py │ ├── external_file_detector.py │ ├── file_input.py │ ├── full_text_detector.py │ ├── git_info_detector.py │ ├── helpers │ │ └── update_spdx_licenses.py │ ├── input_build.py │ ├── input_post_process.py │ ├── license_utils.py │ ├── main.py │ ├── ncs_sbom_command.py │ ├── output_pre_process.py │ ├── output_template.py │ ├── scancode_toolkit_detector.py │ ├── spdx_tag_detector.py │ └── templates │ │ ├── cache.database.jinja │ │ ├── raport.spdx.jinja │ │ └── report.html.jinja │ ├── thingy91x_dfu.py │ └── utils │ └── __init__.py ├── share ├── ncs-package │ └── cmake │ │ └── NcsConfig.cmake └── zephyrbuild-package │ └── cmake │ └── ZephyrBuildConfig.cmake ├── snippets ├── ci-shell │ ├── ci-shell.conf │ └── snippet.yml ├── coverage_support │ ├── boards │ │ ├── nrf52840dk_nrf52840.conf │ │ ├── nrf52840dk_nrf52840.overlay │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ ├── nrf54h20dk_nrf54h20_cpurad.overlay │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ └── snippet.yml ├── hpf │ ├── gpio │ │ ├── hpf-gpio-app.overlay │ │ ├── icbmsg │ │ │ ├── app.conf │ │ │ ├── flpr.conf │ │ │ ├── snippet.yml │ │ │ └── soc │ │ │ │ ├── nrf54l15_cpuapp.overlay │ │ │ │ └── nrf54l15_cpuflpr.overlay │ │ ├── icmsg │ │ │ ├── app.conf │ │ │ ├── flpr.conf │ │ │ ├── snippet.yml │ │ │ └── soc │ │ │ │ ├── nrf54l15_cpuapp.overlay │ │ │ │ └── nrf54l15_cpuflpr.overlay │ │ └── mbox │ │ │ ├── app.conf │ │ │ ├── flpr.conf │ │ │ ├── snippet.yml │ │ │ └── soc │ │ │ ├── nrf54l15_cpuapp.overlay │ │ │ └── nrf54l15_cpuflpr.overlay │ └── mspi │ │ ├── app.conf │ │ ├── board │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ ├── hpf-mspi-app.overlay │ │ ├── snippet.yml │ │ └── soc │ │ └── nrf54l15_cpuapp.overlay ├── hw-flow-control │ ├── boards │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ └── snippet.yml ├── matter-debug │ ├── boards │ │ ├── nrf52840dk_nrf52840.overlay │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ └── nrf7002dk_nrf5340_cpuapp.overlay │ ├── matter_debug.conf │ └── snippet.yml ├── matter-diagnostic-logs │ ├── boards │ │ ├── nrf52840dk_nrf52840.overlay │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ ├── nrf54l15dk_nrf54l10_cpuapp.overlay │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ └── nrf7002dk_nrf5340_cpuapp.overlay │ ├── diagnostic_logs.conf │ └── snippet.yml ├── nordic-bt-rpc │ ├── README.rst │ ├── boards │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ ├── nrf54h20dk_nrf54h20-mem-map-move.dtsi │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ └── snippet.yml ├── nordic-flpr │ ├── README.rst │ ├── nordic-flpr.overlay │ ├── snippet.yml │ └── soc │ │ ├── nrf54lv10a_cpuapp.overlay │ │ └── nrf7120_cpuapp.overlay ├── nrf70-driver-debug │ ├── overlay-nrf70-driver-debug.conf │ └── snippet.yml ├── nrf70-driver-verbose-debug │ ├── overlay-nrf70-driver-verbose-debug.conf │ └── snippet.yml ├── nrf70-fw-patch-ext-flash │ ├── boards │ │ └── nrf7002dk_nrf5340_cpuapp.conf │ ├── fw-patch-ext-flash.overlay │ ├── overlay-fw-patch-ext-flash.conf │ ├── overlay-sb-fw-patch-ext-flash.conf │ └── snippet.yml ├── nrf70-wifi │ ├── nrf54h20_cpuapp.conf │ ├── nrf54h20_cpurad.conf │ ├── nrf54h20_rad_new_memory_map.overlay │ ├── nrf54h20_wifi_memory_map.overlay │ ├── nrf54l15_cpuapp.conf │ ├── nrf54l15_cpuapp.overlay │ └── snippet.yml ├── nrf91-modem-trace-ext-flash │ ├── gd25wb256-ext-flash.overlay │ ├── modem-trace-ext-flash.conf │ ├── modem-trace-uart.overlay │ ├── nrf9160dk-ext-flash.overlay │ └── snippet.yml ├── nrf91-modem-trace-ram │ ├── modem-trace-ram.conf │ └── snippet.yml ├── nrf91-modem-trace-rtt │ ├── overlay-modem-trace-rtt.conf │ └── snippet.yml ├── nrf91-modem-trace-uart │ ├── modem-trace-uart-common.conf │ ├── modem-trace-uart-nrf91.conf │ ├── modem-trace-uart-nrf91.overlay │ ├── modem-trace-uart-nrf92.conf │ ├── modem-trace-uart-nrf92.overlay │ └── snippet.yml ├── tfm-enable-share-uart │ ├── overlay-tfm-enable-share-uart.conf │ └── snippet.yml ├── wifi-p2p │ ├── snippet.yml │ └── wifi-p2p.conf ├── wpa-supplicant-debug │ ├── overlay-wpa-supplicant-debug.conf │ └── snippet.yml └── zperf │ ├── snippet.yml │ └── zperf.conf ├── soc ├── nordic │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.defconfig │ ├── Kconfig.soc │ ├── Kconfig.sysbuild │ ├── common │ │ ├── CMakeLists.txt │ │ └── vpr │ │ │ ├── CMakeLists.txt │ │ │ └── Kconfig.sysbuild │ ├── nrf54h │ │ ├── Kconfig.defconfig │ │ └── Kconfig.defconfig.nrf54h20_cpurad │ ├── nrf54l │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.defconfig.nrf54ls05b_enga_cpuapp │ │ ├── Kconfig.defconfig.nrf54lv10a_enga_cpuapp │ │ ├── Kconfig.defconfig.nrf54lv10a_enga_cpuflpr │ │ └── Kconfig.soc │ ├── nrf71 │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.defconfig.nrf7120_enga_cpuapp │ │ ├── Kconfig.defconfig.nrf7120_enga_cpuflpr │ │ ├── Kconfig.soc │ │ ├── align.ld │ │ ├── kmu_push_area_section.ld │ │ ├── soc.c │ │ ├── soc.h │ │ └── soc_preeng.c │ ├── soc.yml │ └── sysbuild.cmake └── sercomm │ └── nrf91 │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.defconfig │ ├── Kconfig.defconfig.tpm530m │ ├── Kconfig.soc │ └── soc.yml ├── subsys ├── CMakeLists.txt ├── Kconfig ├── app_event_manager │ ├── CMakeLists.txt │ ├── Kconfig │ ├── aem.ld │ ├── app_event_manager.c │ ├── app_event_manager_priv.h │ └── app_event_manager_shell.c ├── app_event_manager_profiler_tracer │ ├── CMakeLists.txt │ ├── Kconfig │ ├── app_event_manager_profiler_tracer.c │ ├── app_event_manager_profiler_tracer_priv.h │ └── em_pt.ld ├── audio │ └── audio_module_template │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── audio_module_template.c ├── audio_module │ ├── CMakeLists.txt │ ├── Kconfig │ └── audio_module.c ├── bluetooth │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.discovery │ ├── Kconfig.enocean │ ├── Kconfig.link │ ├── Kconfig.pool │ ├── Kconfig.scan │ ├── adv_prov │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── core.c │ │ ├── core.ld │ │ └── providers │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.device_name │ │ │ ├── Kconfig.fast_pair │ │ │ ├── Kconfig.flags │ │ │ ├── Kconfig.gap_appearance │ │ │ ├── Kconfig.swift_pair │ │ │ ├── Kconfig.tx_power │ │ │ ├── device_name.c │ │ │ ├── fast_pair.c │ │ │ ├── flags.c │ │ │ ├── gap_appearance.c │ │ │ ├── swift_pair.c │ │ │ └── tx_power.c │ ├── conn_ctx.c │ ├── controller │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── bt_ctlr_used_resources.h │ │ ├── crypto.c │ │ ├── cs_antenna_switch.c │ │ ├── cs_antenna_switch.h │ │ ├── hci_driver.c │ │ ├── hci_internal.c │ │ ├── hci_internal.h │ │ ├── hci_internal_wrappers.c │ │ ├── hci_internal_wrappers.h │ │ └── radio_nrf5_txp.h │ ├── cs_de │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── cs_de.c │ ├── enocean.c │ ├── gatt_dm.c │ ├── gatt_pool.c │ ├── hci_vs_sdc.c │ ├── host_extensions │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── custom_ltk.c │ │ ├── hci_types_host_extensions.h │ │ ├── host_extensions.c │ │ └── radio_notification_conn_cb.c │ ├── mesh │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.dk_prov │ │ ├── Kconfig.models │ │ ├── Kconfig.rpl │ │ ├── Kconfig.sensor │ │ ├── dk_prov.c │ │ ├── gen_battery_cli.c │ │ ├── gen_battery_internal.h │ │ ├── gen_battery_srv.c │ │ ├── gen_dtt_cli.c │ │ ├── gen_dtt_srv.c │ │ ├── gen_loc_cli.c │ │ ├── gen_loc_internal.h │ │ ├── gen_loc_srv.c │ │ ├── gen_lvl_cli.c │ │ ├── gen_lvl_srv.c │ │ ├── gen_onoff_cli.c │ │ ├── gen_onoff_internal.h │ │ ├── gen_onoff_srv.c │ │ ├── gen_plvl_cli.c │ │ ├── gen_plvl_srv.c │ │ ├── gen_ponoff_cli.c │ │ ├── gen_ponoff_srv.c │ │ ├── gen_prop_cli.c │ │ ├── gen_prop_internal.h │ │ ├── gen_prop_srv.c │ │ ├── key_importer.c │ │ ├── light_ctl_cli.c │ │ ├── light_ctl_internal.h │ │ ├── light_ctl_srv.c │ │ ├── light_ctrl_cli.c │ │ ├── light_ctrl_reg.c │ │ ├── light_ctrl_reg_spec.c │ │ ├── light_ctrl_srv.c │ │ ├── light_hsl.c │ │ ├── light_hsl_cli.c │ │ ├── light_hsl_internal.h │ │ ├── light_hsl_srv.c │ │ ├── light_hue_srv.c │ │ ├── light_sat_srv.c │ │ ├── light_temp_srv.c │ │ ├── light_xyl_cli.c │ │ ├── light_xyl_srv.c │ │ ├── lightness_cli.c │ │ ├── lightness_internal.h │ │ ├── lightness_srv.c │ │ ├── model_utils.c │ │ ├── model_utils.h │ │ ├── rpl.c │ │ ├── scene_cli.c │ │ ├── scene_srv.c │ │ ├── scene_types.ld │ │ ├── scheduler_cli.c │ │ ├── scheduler_internal.h │ │ ├── scheduler_srv.c │ │ ├── sensor.c │ │ ├── sensor.h │ │ ├── sensor_cli.c │ │ ├── sensor_srv.c │ │ ├── sensor_types.c │ │ ├── sensor_types.ld │ │ ├── shell │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── shell_bat_cli.c │ │ │ ├── shell_ctl_cli.c │ │ │ ├── shell_ctrl_cli.c │ │ │ ├── shell_dm_cli.c │ │ │ ├── shell_dtt_cli.c │ │ │ ├── shell_hsl_cli.c │ │ │ ├── shell_lightness_cli.c │ │ │ ├── shell_loc_cli.c │ │ │ ├── shell_lvl_cli.c │ │ │ ├── shell_onoff_cli.c │ │ │ ├── shell_plvl_cli.c │ │ │ ├── shell_ponoff_cli.c │ │ │ ├── shell_prop_cli.c │ │ │ ├── shell_scene_cli.c │ │ │ ├── shell_scheduler_cli.c │ │ │ ├── shell_sensor_cli.c │ │ │ ├── shell_time_cli.c │ │ │ ├── shell_utils.c │ │ │ ├── shell_utils.h │ │ │ └── shell_xyl_cli.c │ │ ├── time.c │ │ ├── time_cli.c │ │ ├── time_internal.h │ │ ├── time_srv.c │ │ ├── time_util.c │ │ ├── time_util.h │ │ └── vnd │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── dm_cli.c │ │ │ ├── dm_srv.c │ │ │ ├── le_pair_resp.c │ │ │ └── silvair_enocean_srv.c │ ├── rpc │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── client │ │ │ ├── CMakeLists.txt │ │ │ ├── bt_rpc_conn_client.c │ │ │ ├── bt_rpc_conn_client.h │ │ │ ├── bt_rpc_crypto_client.c │ │ │ ├── bt_rpc_gap_client.c │ │ │ ├── bt_rpc_gatt_client.c │ │ │ ├── bt_rpc_gatt_client.h │ │ │ └── bt_rpc_internal_client.c │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── bt_rpc_common.c │ │ │ ├── bt_rpc_common.h │ │ │ ├── bt_rpc_gatt_common.c │ │ │ └── bt_rpc_gatt_common.h │ │ ├── host │ │ │ ├── CMakeLists.txt │ │ │ ├── bt_rpc_conn_host.c │ │ │ ├── bt_rpc_crypto_host.c │ │ │ ├── bt_rpc_gap_host.c │ │ │ ├── bt_rpc_gatt_host.c │ │ │ └── bt_rpc_internal_host.c │ │ └── soc │ │ │ ├── CMakeLists.txt │ │ │ └── nrf53_cpunet_enable.c │ ├── scan.c │ └── services │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.ams_client │ │ ├── Kconfig.ancs_client │ │ ├── Kconfig.bas_client │ │ ├── Kconfig.bms │ │ ├── Kconfig.cts_client │ │ ├── Kconfig.ddfs │ │ ├── Kconfig.dfu_smp │ │ ├── Kconfig.gattp │ │ ├── Kconfig.hids │ │ ├── Kconfig.hogp │ │ ├── Kconfig.hrs_client │ │ ├── Kconfig.latency │ │ ├── Kconfig.latency_c │ │ ├── Kconfig.lbs │ │ ├── Kconfig.mds │ │ ├── Kconfig.nsms │ │ ├── Kconfig.nus │ │ ├── Kconfig.nus_client │ │ ├── Kconfig.rscs │ │ ├── Kconfig.throughput │ │ ├── ams_client.c │ │ ├── ancs_app_attr_get.c │ │ ├── ancs_app_attr_get.h │ │ ├── ancs_attr_parser.c │ │ ├── ancs_attr_parser.h │ │ ├── ancs_client.c │ │ ├── ancs_client_internal.h │ │ ├── bas_client.c │ │ ├── bms.c │ │ ├── cgms │ │ ├── CMakeLists.txt │ │ ├── Kconfig.cgms │ │ ├── cgms.c │ │ ├── cgms_internal.h │ │ ├── cgms_racp.c │ │ └── cgms_socp.c │ │ ├── cts_client.c │ │ ├── ddfs.c │ │ ├── dfu_smp.c │ │ ├── fast_pair │ │ ├── CMakeLists.txt │ │ ├── Kconfig.fast_pair │ │ ├── adv_manager │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── core.c │ │ │ ├── include_priv │ │ │ │ └── fp_adv_manager_use_case.h │ │ │ ├── locator_tag.c │ │ │ └── trigger.ld │ │ ├── fmdn │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── auth.c │ │ │ ├── battery.c │ │ │ ├── beacon_actions.c │ │ │ ├── beacon_actions_defs.h │ │ │ ├── callbacks.c │ │ │ ├── clock.c │ │ │ ├── dult_integration.c │ │ │ ├── include │ │ │ │ └── fp_fmdn_beacon_actions.h │ │ │ ├── include_priv │ │ │ │ ├── fp_fmdn_auth.h │ │ │ │ ├── fp_fmdn_battery.h │ │ │ │ ├── fp_fmdn_callbacks.h │ │ │ │ ├── fp_fmdn_clock.h │ │ │ │ ├── fp_fmdn_dult_integration.h │ │ │ │ ├── fp_fmdn_read_mode.h │ │ │ │ ├── fp_fmdn_ring.h │ │ │ │ └── fp_fmdn_state.h │ │ │ ├── motion_detector.c │ │ │ ├── read_mode.c │ │ │ ├── ring.c │ │ │ └── state.c │ │ ├── fp_activation.c │ │ ├── fp_activation.ld │ │ ├── fp_advertising.c │ │ ├── fp_auth.c │ │ ├── fp_battery.c │ │ ├── fp_bond_manager.c │ │ ├── fp_crypto │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.fp_crypto │ │ │ ├── fp_crypto_common.c │ │ │ ├── fp_crypto_oberon.c │ │ │ ├── fp_crypto_psa.c │ │ │ └── include │ │ │ │ └── fp_crypto.h │ │ ├── fp_gatt_service.c │ │ ├── fp_keys.c │ │ ├── fp_registration_data.c │ │ ├── fp_storage │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.fp_storage │ │ │ ├── fp_storage_ak.c │ │ │ ├── fp_storage_ak_minimal.c │ │ │ ├── fp_storage_clock.c │ │ │ ├── fp_storage_eik.c │ │ │ ├── fp_storage_manager.c │ │ │ ├── fp_storage_manager.ld │ │ │ ├── fp_storage_pn.c │ │ │ ├── fp_storage_user_reset_action.c │ │ │ ├── include │ │ │ │ ├── fp_storage.h │ │ │ │ ├── fp_storage_ak.h │ │ │ │ ├── fp_storage_ak_bond.h │ │ │ │ ├── fp_storage_clock.h │ │ │ │ ├── fp_storage_eik.h │ │ │ │ └── fp_storage_pn.h │ │ │ └── include_priv │ │ │ │ ├── fp_storage_ak_priv.h │ │ │ │ ├── fp_storage_clock_priv.h │ │ │ │ ├── fp_storage_eik_priv.h │ │ │ │ ├── fp_storage_manager.h │ │ │ │ ├── fp_storage_manager_priv.h │ │ │ │ └── fp_storage_pn_priv.h │ │ ├── fp_storage_integration.c │ │ ├── include │ │ │ ├── common │ │ │ │ ├── fp_activation.h │ │ │ │ ├── fp_common.h │ │ │ │ └── fp_registration_data.h │ │ │ ├── fp_auth.h │ │ │ ├── fp_battery.h │ │ │ └── fp_keys.h │ │ └── use_case │ │ │ └── Kconfig │ │ ├── gattp.c │ │ ├── hids.c │ │ ├── hogp.c │ │ ├── hrs_client.c │ │ ├── latency.c │ │ ├── latency_client.c │ │ ├── lbs.c │ │ ├── mds.c │ │ ├── nsms.c │ │ ├── nus.c │ │ ├── nus_client.c │ │ ├── ras │ │ ├── CMakeLists.txt │ │ ├── Kconfig.ras │ │ ├── ras_internal.h │ │ ├── rreq │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.ras_rreq │ │ │ └── ras_rreq.c │ │ └── rrsp │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.ras_rrsp │ │ │ ├── ras_rd_buffer.c │ │ │ └── ras_rrsp.c │ │ ├── rscs.c │ │ ├── throughput.c │ │ └── wifi_prov │ │ ├── CMakeLists.txt │ │ ├── Kconfig.wifi_prov │ │ └── wifi_prov_ble.c ├── bootloader │ ├── CMakeLists.txt │ ├── Kconfig │ ├── bl_boot │ │ ├── CMakeLists.txt │ │ └── bl_boot.c │ ├── bl_crypto │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── bl_crypto.c │ │ ├── bl_crypto_cc310_common.c │ │ ├── bl_crypto_cc310_common.h │ │ ├── bl_crypto_cc310_ecdsa.c │ │ ├── bl_crypto_cc310_hash.c │ │ ├── bl_crypto_ed25519.c │ │ ├── bl_crypto_internal.h │ │ ├── bl_crypto_oberon_ecdsa.c │ │ ├── bl_crypto_oberon_hash.c │ │ └── bl_crypto_sha512.c │ ├── bl_crypto_client │ │ └── bl_crypto_client.c │ ├── bl_override │ │ └── override_external_mcuboot.conf │ ├── bl_storage │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── bl_storage.c │ │ └── nrf_nv_counters.c │ ├── bl_validation │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── bl_validation.c │ │ └── bl_validation_internal.h │ ├── cmake │ │ ├── bl_validation_magic.cmake │ │ └── packaging.cmake │ ├── image │ │ ├── fw_info.conf │ │ ├── log_minimal.conf │ │ ├── multi_image_mcuboot.conf │ │ └── secure_boot.conf │ └── include │ │ ├── bl_boot.h │ │ └── dummy_values │ │ └── pm_config.h ├── caf │ ├── CMakeLists.txt │ ├── Kconfig │ ├── events │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.factory_reset_event │ │ ├── Kconfig.force_power_down_event │ │ ├── Kconfig.keep_alive_event │ │ ├── Kconfig.module_state_event │ │ ├── Kconfig.module_suspend_event │ │ ├── Kconfig.power_manager_event │ │ ├── Kconfig.sensor_event │ │ ├── ble_common_event.c │ │ ├── ble_smp_event.c │ │ ├── button_event.c │ │ ├── click_event.c │ │ ├── factory_reset_event.c │ │ ├── force_power_down_event.c │ │ ├── keep_alive_event.c │ │ ├── led_event.c │ │ ├── module_id_list.ld │ │ ├── module_state_event.c │ │ ├── module_suspend_event.c │ │ ├── net_state_event.c │ │ ├── power_event.c │ │ ├── power_manager_event.c │ │ ├── sensor_data_aggregator_event.c │ │ └── sensor_event.c │ └── modules │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.ble_adv │ │ ├── Kconfig.ble_bond │ │ ├── Kconfig.ble_smp │ │ ├── Kconfig.ble_state │ │ ├── Kconfig.buttons │ │ ├── Kconfig.caf_shell │ │ ├── Kconfig.click_detector │ │ ├── Kconfig.factory_reset_request │ │ ├── Kconfig.leds │ │ ├── Kconfig.net_state │ │ ├── Kconfig.power_manager │ │ ├── Kconfig.sensor_data_aggregator │ │ ├── Kconfig.sensor_manager │ │ ├── Kconfig.settings_loader │ │ ├── ble_adv.c │ │ ├── ble_bond.c │ │ ├── ble_smp.c │ │ ├── ble_state.c │ │ ├── ble_state_pm.c │ │ ├── buttons.c │ │ ├── buttons_pm_keep_alive.c │ │ ├── caf_shell.c │ │ ├── click_detector.c │ │ ├── factory_reset_request.c │ │ ├── leds.c │ │ ├── net_state_lte.c │ │ ├── net_state_ot.c │ │ ├── power_manager.c │ │ ├── sensor_data_aggregator.c │ │ ├── sensor_manager.c │ │ └── settings_loader.c ├── debug │ ├── CMakeLists.txt │ ├── Kconfig │ ├── coredump │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── coredump_backend_nrf_flash_partition.c │ ├── cpu_load │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── cpu_load.c │ ├── etb_trace │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── etb_trace.c │ │ ├── etb_trace_lp.c │ │ ├── etb_trace_private.h │ │ └── include │ │ │ └── soc_cpu_idle.h │ └── ppi_trace │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── ppi_trace.c ├── dfu │ ├── CMakeLists.txt │ ├── Kconfig │ ├── dfu_multi_image │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── src │ │ │ └── dfu_multi_image.c │ ├── dfu_target │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── include │ │ │ └── dfu_stream_flatten.h │ │ └── src │ │ │ ├── dfu_stream_flatten.c │ │ │ ├── dfu_target.c │ │ │ ├── dfu_target_full_modem.c │ │ │ ├── dfu_target_mcuboot.c │ │ │ ├── dfu_target_modem_delta.c │ │ │ ├── dfu_target_smp.c │ │ │ └── dfu_target_stream.c │ └── fmfu_fdev │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── cddl │ │ ├── CMakeLists.txt │ │ ├── license.cmake │ │ └── modem_update.cddl │ │ ├── include │ │ ├── modem_update_decode.h │ │ └── modem_update_types.h │ │ └── src │ │ ├── fmfu_fdev.c │ │ └── modem_update_decode.c ├── dm │ ├── CMakeLists.txt │ ├── Kconfig │ ├── dm.c │ ├── dm_io.c │ ├── dm_io.h │ ├── rpc │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── client │ │ │ ├── CMakeLists.txt │ │ │ └── dm_rpc_client.c │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── dm_rpc_common.c │ │ │ ├── dm_rpc_common.h │ │ │ ├── serialize.c │ │ │ └── serialize.h │ │ └── host │ │ │ ├── CMakeLists.txt │ │ │ ├── dm_rpc_host.c │ │ │ └── dm_rpc_host.h │ ├── time.c │ ├── time.h │ ├── timeslot_queue.c │ └── timeslot_queue.h ├── dult │ ├── CMakeLists.txt │ ├── Kconfig │ ├── battery.c │ ├── bt │ │ └── anos.c │ ├── id.c │ ├── include │ │ ├── dult_battery.h │ │ ├── dult_bt_anos.h │ │ ├── dult_id.h │ │ ├── dult_motion_detector.h │ │ ├── dult_near_owner_state.h │ │ ├── dult_sound.h │ │ └── dult_user.h │ ├── motion_detector.c │ ├── near_owner_state.c │ ├── sound.c │ └── user.c ├── emds │ ├── CMakeLists.txt │ ├── Kconfig │ ├── emds.c │ ├── emds_flash.c │ ├── emds_flash.h │ └── emds_types.ld ├── esb │ ├── CMakeLists.txt │ ├── Kconfig │ ├── esb.c │ ├── esb_dppi.c │ ├── esb_peripherals.h │ ├── esb_ppi.c │ ├── esb_ppi_api.h │ └── esb_workarounds.h ├── event_manager_proxy │ ├── CMakeLists.txt │ ├── Kconfig │ ├── em_proxy.ld │ └── event_manager_proxy.c ├── fw_info │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.template.fw_info_ext_api │ ├── ext_apis.ld │ ├── fw_info.c │ └── fw_info.ld ├── gazell │ ├── CMakeLists.txt │ ├── Kconfig │ ├── gzll_glue.c │ ├── gzp.c │ ├── gzp_device.c │ ├── gzp_host.c │ └── gzp_internal.h ├── logging │ ├── CMakeLists.txt │ ├── Kconfig │ ├── log_backend_rpc.c │ ├── log_backend_rpc_history.h │ ├── log_backend_rpc_history_fcb.c │ ├── log_backend_rpc_history_ram.c │ ├── log_forwarder_rpc.c │ └── log_rpc_group.h ├── mcuboot │ └── mcuboot_secondary_app.overlay ├── mcuboot_ids │ └── Kconfig ├── mgmt │ ├── fmfu │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── src │ │ │ ├── fmfu_mgmt.c │ │ │ ├── fmfu_mgmt_internal.h │ │ │ └── fmfu_mgmt_stat.c │ └── mcumgr │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── grp │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── img_mgmt │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── src │ │ │ ├── img_mgmt.c │ │ │ └── img_mgmt_state.c │ │ └── os_mgmt │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── src │ │ └── os_mgmt_b0_active_slot.c ├── mpsl │ ├── CMakeLists.txt │ ├── Kconfig │ ├── clock_ctrl │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── mpsl_clock_ctrl.c │ │ └── mpsl_clock_ctrl.h │ ├── cx │ │ ├── 1wire │ │ │ └── mpsl_cx_1wire.c │ │ ├── 3wire │ │ │ └── mpsl_cx_3wire.c │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── nrf700x │ │ │ ├── mpsl_cx_nrf700x.c │ │ │ └── mpsl_cx_nrf700x_rpc.c │ │ └── software │ │ │ ├── mpsl_cx_software.c │ │ │ └── mpsl_cx_software_rpc.c │ ├── fem │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── api_init │ │ │ └── mpsl_fem_api_init.c │ │ ├── common │ │ │ ├── include │ │ │ │ ├── mpsl_fem_power_model_interface.h │ │ │ │ ├── mpsl_fem_twi_drv.h │ │ │ │ └── mpsl_fem_utils.h │ │ │ ├── mpsl_fem_twi_drv.c │ │ │ └── mpsl_fem_utils.c │ │ ├── nrf21540_gpio │ │ │ └── mpsl_fem_nrf21540_gpio.c │ │ ├── nrf21540_gpio_spi │ │ │ ├── CMakeLists.txt │ │ │ ├── models │ │ │ │ └── mpsl_fem_nrf21540_power_model_builtin.c │ │ │ └── mpsl_fem_nrf21540_gpio_spi.c │ │ ├── nrf2220 │ │ │ ├── CMakeLists.txt │ │ │ └── mpsl_fem_nrf2220.c │ │ ├── nrf2240 │ │ │ ├── CMakeLists.txt │ │ │ └── mpsl_fem_nrf2240.c │ │ └── simple_gpio │ │ │ └── mpsl_fem_simple_gpio.c │ ├── hwres │ │ ├── CMakeLists.txt │ │ └── mpsl_hwres.c │ ├── init │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── mpsl_init.c │ ├── pin_debug │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── mpsl_pin_debug_app_core.c │ │ ├── mpsl_pin_debug_nrf54.c │ │ └── mpsl_pin_debug_radio_core.c │ └── pm │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── mpsl_pm_utils.c │ │ └── mpsl_pm_utils.h ├── net │ ├── CMakeLists.txt │ ├── Kconfig │ ├── l2_wifi_if_conn │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── l2_wifi_conn.c │ ├── lib │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.cloud_choice │ │ ├── aws_fota │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── include │ │ │ │ └── aws_fota_json.h │ │ │ └── src │ │ │ │ ├── aws_fota.c │ │ │ │ └── aws_fota_json.c │ │ ├── aws_iot │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── include │ │ │ │ └── aws-certs.h │ │ │ └── src │ │ │ │ └── aws_iot.c │ │ ├── aws_jobs │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── src │ │ │ │ └── aws_jobs.c │ │ ├── azure_fota │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── azure_fota.c │ │ ├── azure_iot_hub │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── include │ │ │ │ └── azure_iot_hub_dps_private.h │ │ │ └── src │ │ │ │ ├── azure_iot_hub.c │ │ │ │ └── azure_iot_hub_dps.c │ │ ├── coap_utils │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── coap_utils.c │ │ ├── downloader │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── dl_transports.ld │ │ │ ├── include │ │ │ │ ├── dl_parse.h │ │ │ │ └── dl_socket.h │ │ │ └── src │ │ │ │ ├── dl_parse.c │ │ │ │ ├── dl_sanity.c │ │ │ │ ├── dl_shell.c │ │ │ │ ├── dl_socket.c │ │ │ │ ├── downloader.c │ │ │ │ └── transports │ │ │ │ ├── coap.c │ │ │ │ └── http.c │ │ ├── fota_download │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── include │ │ │ │ └── fota_download_util.h │ │ │ └── src │ │ │ │ ├── fota_download.c │ │ │ │ └── util │ │ │ │ ├── fota_download_delta_modem.c │ │ │ │ ├── fota_download_delta_modem.h │ │ │ │ ├── fota_download_full_modem.c │ │ │ │ ├── fota_download_full_modem.h │ │ │ │ ├── fota_download_mcuboot.c │ │ │ │ ├── fota_download_mcuboot.h │ │ │ │ ├── fota_download_smp.c │ │ │ │ ├── fota_download_smp.h │ │ │ │ └── fota_download_util.c │ │ ├── ftp_client │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── src │ │ │ │ ├── ftp_client.c │ │ │ │ └── ftp_commands.h │ │ ├── hostap_crypto │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── wpa3_psa.c │ │ ├── icalendar_parser │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── src │ │ │ │ └── icalendar_parser.c │ │ ├── lwm2m_client_utils │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── location │ │ │ │ ├── location_assistance.c │ │ │ │ ├── location_retry_timer.c │ │ │ │ └── location_wifi_ap_scanner.c │ │ │ ├── lwm2m │ │ │ │ ├── ecid_signal_meas_info.c │ │ │ │ ├── gnss_assistance_obj.c │ │ │ │ ├── ground_fix_obj.c │ │ │ │ ├── include │ │ │ │ │ ├── gnss_assistance_obj.h │ │ │ │ │ ├── ground_fix_obj.h │ │ │ │ │ └── location_assistance.h │ │ │ │ ├── lwm2m_adv_firmware.c │ │ │ │ ├── lwm2m_cellconn_obj.c │ │ │ │ ├── lwm2m_conneval.c │ │ │ │ ├── lwm2m_connmon.c │ │ │ │ ├── lwm2m_device.c │ │ │ │ ├── lwm2m_firmware.c │ │ │ │ ├── lwm2m_lte_notification.c │ │ │ │ ├── lwm2m_rai.c │ │ │ │ ├── lwm2m_security.c │ │ │ │ ├── lwm2m_utils_con_management.c │ │ │ │ └── visible_wifi_ap.c │ │ │ └── lwm2m_obj_location_optional.c │ │ ├── mcumgr_smp_client │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── include │ │ │ │ └── mcumgr_smp_client.h │ │ │ └── src │ │ │ │ ├── mcumgr_smp_client.c │ │ │ │ └── mcumgr_smp_client_shell.c │ │ ├── mqtt_helper │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── cert │ │ │ │ └── mqtt-certs.h │ │ │ └── mqtt_helper.c │ │ ├── nrf70_fw_ext │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── ext_fw_load.c │ │ │ └── rpu_fw_patches.ld │ │ ├── nrf_cloud │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.nrf_cloud_agnss │ │ │ ├── Kconfig.nrf_cloud_alert │ │ │ ├── Kconfig.nrf_cloud_client_id │ │ │ ├── Kconfig.nrf_cloud_coap │ │ │ ├── Kconfig.nrf_cloud_fota │ │ │ ├── Kconfig.nrf_cloud_location │ │ │ ├── Kconfig.nrf_cloud_log │ │ │ ├── Kconfig.nrf_cloud_mqtt │ │ │ ├── Kconfig.nrf_cloud_pgps │ │ │ ├── Kconfig.nrf_cloud_rest │ │ │ ├── Kconfig.nrf_cloud_shadow_info │ │ │ ├── coap │ │ │ │ ├── cbor_encode.cmake │ │ │ │ ├── cddl │ │ │ │ │ ├── nrf_cloud_coap_agnss.cddl │ │ │ │ │ ├── nrf_cloud_coap_device_msg.cddl │ │ │ │ │ ├── nrf_cloud_coap_ground_fix.cddl │ │ │ │ │ └── nrf_cloud_coap_pgps.cddl │ │ │ │ ├── generated │ │ │ │ │ ├── include │ │ │ │ │ │ ├── agnss_encode.h │ │ │ │ │ │ ├── agnss_encode_types.h │ │ │ │ │ │ ├── ground_fix_decode.h │ │ │ │ │ │ ├── ground_fix_decode_types.h │ │ │ │ │ │ ├── ground_fix_encode.h │ │ │ │ │ │ ├── ground_fix_encode_types.h │ │ │ │ │ │ ├── msg_encode.h │ │ │ │ │ │ ├── msg_encode_types.h │ │ │ │ │ │ ├── pgps_decode.h │ │ │ │ │ │ ├── pgps_decode_types.h │ │ │ │ │ │ ├── pgps_encode.h │ │ │ │ │ │ └── pgps_encode_types.h │ │ │ │ │ └── src │ │ │ │ │ │ ├── agnss_encode.c │ │ │ │ │ │ ├── ground_fix_decode.c │ │ │ │ │ │ ├── ground_fix_encode.c │ │ │ │ │ │ ├── msg_encode.c │ │ │ │ │ │ ├── pgps_decode.c │ │ │ │ │ │ └── pgps_encode.c │ │ │ │ ├── include │ │ │ │ │ ├── coap_codec.h │ │ │ │ │ ├── nrf_cloud_coap_transport.h │ │ │ │ │ └── nrfc_dtls.h │ │ │ │ ├── src │ │ │ │ │ ├── nrf_cloud_alert.c │ │ │ │ │ ├── nrf_cloud_coap.c │ │ │ │ │ ├── nrf_cloud_coap_codec.c │ │ │ │ │ ├── nrf_cloud_coap_download.c │ │ │ │ │ ├── nrf_cloud_coap_transport.c │ │ │ │ │ ├── nrf_cloud_dtls.c │ │ │ │ │ └── nrf_cloud_log.c │ │ │ │ ├── update_codec.bat │ │ │ │ └── update_codec.sh │ │ │ ├── common │ │ │ │ ├── include │ │ │ │ │ ├── nrf_cloud-certs.h │ │ │ │ │ ├── nrf_cloud_agnss_internal.h │ │ │ │ │ ├── nrf_cloud_agnss_schema_v1.h │ │ │ │ │ ├── nrf_cloud_alert_internal.h │ │ │ │ │ ├── nrf_cloud_client_id.h │ │ │ │ │ ├── nrf_cloud_codec_internal.h │ │ │ │ │ ├── nrf_cloud_credentials.h │ │ │ │ │ ├── nrf_cloud_dns.h │ │ │ │ │ ├── nrf_cloud_download.h │ │ │ │ │ ├── nrf_cloud_downloads_internal.h │ │ │ │ │ ├── nrf_cloud_log_internal.h │ │ │ │ │ ├── nrf_cloud_mem.h │ │ │ │ │ ├── nrf_cloud_pgps_internal.h │ │ │ │ │ ├── nrf_cloud_pgps_schema_v1.h │ │ │ │ │ └── nrf_cloud_pgps_utils.h │ │ │ │ └── src │ │ │ │ │ ├── nrf_cloud_agnss.c │ │ │ │ │ ├── nrf_cloud_agnss_utils.c │ │ │ │ │ ├── nrf_cloud_alert.c │ │ │ │ │ ├── nrf_cloud_client_id.c │ │ │ │ │ ├── nrf_cloud_codec.c │ │ │ │ │ ├── nrf_cloud_codec_internal.c │ │ │ │ │ ├── nrf_cloud_credentials.c │ │ │ │ │ ├── nrf_cloud_dns.c │ │ │ │ │ ├── nrf_cloud_download.c │ │ │ │ │ ├── nrf_cloud_fota_common.c │ │ │ │ │ ├── nrf_cloud_fota_poll.c │ │ │ │ │ ├── nrf_cloud_https_download.c │ │ │ │ │ ├── nrf_cloud_info.c │ │ │ │ │ ├── nrf_cloud_jwt.c │ │ │ │ │ ├── nrf_cloud_location.c │ │ │ │ │ ├── nrf_cloud_log.c │ │ │ │ │ ├── nrf_cloud_log_backend.c │ │ │ │ │ ├── nrf_cloud_mem.c │ │ │ │ │ ├── nrf_cloud_pgps.c │ │ │ │ │ ├── nrf_cloud_pgps_utils.c │ │ │ │ │ └── nrf_cloud_sec_tag.c │ │ │ ├── mqtt │ │ │ │ ├── include │ │ │ │ │ ├── nrf_cloud_fota.h │ │ │ │ │ ├── nrf_cloud_fsm.h │ │ │ │ │ ├── nrf_cloud_mqtt_internal.h │ │ │ │ │ └── nrf_cloud_transport.h │ │ │ │ └── src │ │ │ │ │ ├── nrf_cloud.c │ │ │ │ │ ├── nrf_cloud_agnss.c │ │ │ │ │ ├── nrf_cloud_alert.c │ │ │ │ │ ├── nrf_cloud_codec_internal.c │ │ │ │ │ ├── nrf_cloud_fota.c │ │ │ │ │ ├── nrf_cloud_fsm.c │ │ │ │ │ ├── nrf_cloud_location.c │ │ │ │ │ ├── nrf_cloud_log.c │ │ │ │ │ ├── nrf_cloud_pgps.c │ │ │ │ │ └── nrf_cloud_transport.c │ │ │ └── rest │ │ │ │ └── src │ │ │ │ ├── nrf_cloud_alert.c │ │ │ │ ├── nrf_cloud_log.c │ │ │ │ └── nrf_cloud_rest.c │ │ ├── nrf_provisioning │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.nrf_provisioning_cbor │ │ │ ├── Kconfig.nrf_provisioning_coap │ │ │ ├── Kconfig.nrf_provisioning_codec │ │ │ ├── Kconfig.nrf_provisioning_http │ │ │ ├── include │ │ │ │ ├── cert_amazon_root_ca1.h │ │ │ │ ├── cert_coap_root_ca.h │ │ │ │ ├── nrf_provisioning_at.h │ │ │ │ ├── nrf_provisioning_cbor_decode.h │ │ │ │ ├── nrf_provisioning_cbor_decode_types.h │ │ │ │ ├── nrf_provisioning_cbor_encode.h │ │ │ │ ├── nrf_provisioning_cbor_encode_types.h │ │ │ │ ├── nrf_provisioning_coap.h │ │ │ │ ├── nrf_provisioning_codec.h │ │ │ │ ├── nrf_provisioning_http.h │ │ │ │ ├── nrf_provisioning_internal.h │ │ │ │ └── nrf_provisioning_jwt.h │ │ │ ├── nrf_provisioning_cbor.cddl │ │ │ ├── nrf_provisioning_cbor.patch │ │ │ ├── nrf_provisioning_cbor_regenerate.sh │ │ │ └── src │ │ │ │ ├── cert_amazon_root_ca1.c │ │ │ │ ├── cert_coap_root_ca.c │ │ │ │ ├── nrf_provisioning.c │ │ │ │ ├── nrf_provisioning_at.c │ │ │ │ ├── nrf_provisioning_cbor_decode.c │ │ │ │ ├── nrf_provisioning_cbor_encode.c │ │ │ │ ├── nrf_provisioning_coap.c │ │ │ │ ├── nrf_provisioning_codec.c │ │ │ │ ├── nrf_provisioning_custom_at.c │ │ │ │ ├── nrf_provisioning_http.c │ │ │ │ ├── nrf_provisioning_jwt.c │ │ │ │ └── nrf_provisioning_shell.c │ │ ├── rest_client │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── src │ │ │ │ └── rest_client.c │ │ ├── softap_wifi_provision │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── proto │ │ │ │ ├── common.options │ │ │ │ └── common.proto │ │ │ └── softap_wifi_provision.c │ │ ├── tls_credentials │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── tls_credentials_nrf_modem.c │ │ ├── wifi_prov_core │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── proto │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── common.options │ │ │ │ ├── common.proto │ │ │ │ ├── generate_wifi_prov_config.py │ │ │ │ ├── request.options │ │ │ │ ├── request.proto │ │ │ │ ├── response.options │ │ │ │ ├── response.proto │ │ │ │ ├── result.proto │ │ │ │ ├── test_auth_modes.py │ │ │ │ ├── version.options │ │ │ │ └── version.proto │ │ │ └── wifi_prov_handler.c │ │ ├── wifi_ready │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── wifi_ready.c │ │ └── zzhc │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── zzhc.c │ │ │ ├── zzhc_internal.h │ │ │ └── zzhc_port.c │ └── openthread │ │ ├── Kconfig │ │ ├── Kconfig.defconfig │ │ ├── Kconfig.defconfig.l2 │ │ ├── report │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── report_generation_utils.cmake │ │ ├── rpc │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── client │ │ │ ├── CMakeLists.txt │ │ │ ├── ot_rpc_cli.c │ │ │ ├── ot_rpc_client_common.c │ │ │ ├── ot_rpc_client_common.h │ │ │ ├── ot_rpc_coap.c │ │ │ ├── ot_rpc_dataset.c │ │ │ ├── ot_rpc_diag.c │ │ │ ├── ot_rpc_dns_client.c │ │ │ ├── ot_rpc_if.c │ │ │ ├── ot_rpc_instance.c │ │ │ ├── ot_rpc_ip6.c │ │ │ ├── ot_rpc_link.c │ │ │ ├── ot_rpc_link_raw.c │ │ │ ├── ot_rpc_meshdiag.c │ │ │ ├── ot_rpc_message.c │ │ │ ├── ot_rpc_netdata.c │ │ │ ├── ot_rpc_netdiag.c │ │ │ ├── ot_rpc_srp_client.c │ │ │ ├── ot_rpc_thread.c │ │ │ └── ot_rpc_udp.c │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── ot_rpc_coap.h │ │ │ ├── ot_rpc_common.c │ │ │ ├── ot_rpc_common.h │ │ │ ├── ot_rpc_group.c │ │ │ ├── ot_rpc_ids.h │ │ │ ├── ot_rpc_lock.h │ │ │ ├── ot_rpc_lock_empty.c │ │ │ ├── ot_rpc_lock_zephyr.c │ │ │ └── ot_rpc_types.h │ │ └── server │ │ │ ├── CMakeLists.txt │ │ │ ├── ot_rpc_cli.c │ │ │ ├── ot_rpc_coap.c │ │ │ ├── ot_rpc_dataset.c │ │ │ ├── ot_rpc_diag.c │ │ │ ├── ot_rpc_dns_client.c │ │ │ ├── ot_rpc_if.c │ │ │ ├── ot_rpc_instance.c │ │ │ ├── ot_rpc_ip6.c │ │ │ ├── ot_rpc_link.c │ │ │ ├── ot_rpc_link_raw.c │ │ │ ├── ot_rpc_meshdiag.c │ │ │ ├── ot_rpc_message.c │ │ │ ├── ot_rpc_netdata.c │ │ │ ├── ot_rpc_netdiag.c │ │ │ ├── ot_rpc_resource.h │ │ │ ├── ot_rpc_srp_client.c │ │ │ ├── ot_rpc_thread.c │ │ │ └── ot_rpc_udp.c │ │ └── settings_check │ │ └── CMakeLists.txt ├── net_core_monitor │ ├── CMakeLists.txt │ ├── Kconfig │ ├── app_core.c │ ├── common.h │ └── net_core.c ├── nfc │ ├── CMakeLists.txt │ ├── Kconfig │ ├── lib │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── platform.c │ │ ├── platform_internal.h │ │ ├── platform_internal_irq.c │ │ └── platform_internal_thread.c │ ├── ndef │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── ch.c │ │ ├── ch_msg.c │ │ ├── ch_rec_parser.c │ │ ├── launchapp_msg.c │ │ ├── launchapp_rec.c │ │ ├── le_oob_rec.c │ │ ├── le_oob_rec_parser.c │ │ ├── msg.c │ │ ├── msg_parser.c │ │ ├── msg_parser_local.c │ │ ├── msg_parser_local.h │ │ ├── payload_type_common.c │ │ ├── record.c │ │ ├── record_parser.c │ │ ├── text_rec.c │ │ ├── tnep_rec.c │ │ ├── uri_msg.c │ │ └── uri_rec.c │ ├── rpc │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── client │ │ │ ├── CMakeLists.txt │ │ │ ├── nfc_rpc_t2t_client.c │ │ │ └── nfc_rpc_t4t_client.c │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── nfc_rpc_common.c │ │ │ ├── nfc_rpc_common.h │ │ │ ├── nfc_rpc_group.c │ │ │ └── nfc_rpc_ids.h │ │ └── server │ │ │ ├── CMakeLists.txt │ │ │ ├── nfc_rpc_t2t_server.c │ │ │ └── nfc_rpc_t4t_server.c │ ├── t2t │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── parser.c │ ├── t4t │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── apdu.c │ │ ├── cc_file.c │ │ ├── hl_procedure.c │ │ ├── isodep.c │ │ ├── ndef_file.c │ │ └── tlv_block.c │ └── tnep │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── ch │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── common.c │ │ ├── common.h │ │ ├── poller.c │ │ └── tag.c │ │ ├── poller.c │ │ ├── tag.c │ │ └── tag.ld ├── nrf_compress │ ├── CMakeLists.txt │ ├── Kconfig │ ├── lzma │ │ ├── 7zTypes.h │ │ ├── Compiler.h │ │ ├── LICENSE │ │ ├── Lzma2Dec.c │ │ ├── Lzma2Dec.h │ │ ├── LzmaDec.c │ │ ├── LzmaDec.h │ │ ├── Precomp.h │ │ ├── armthumb.c │ │ └── armthumb.h │ ├── sections.ld │ └── src │ │ ├── arm_thumb.c │ │ ├── implementation.c │ │ └── lzma.c ├── nrf_profiler │ ├── CMakeLists.txt │ ├── Kconfig │ ├── profiler_common_shell.c │ └── profiler_nordic.c ├── nrf_rpc │ ├── CMakeLists.txt │ ├── Kconfig │ ├── include │ │ ├── nrf_rpc_log.h │ │ └── nrf_rpc_os.h │ ├── nrf_rpc_cbkproxy.c │ ├── nrf_rpc_init.c │ ├── nrf_rpc_ipc.c │ ├── nrf_rpc_os.c │ ├── nrf_rpc_serialize.c │ ├── nrf_rpc_uart.c │ └── rpc_utils │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── client │ │ ├── CMakeLists.txt │ │ ├── crash_gen.c │ │ ├── decode_helpers.h │ │ ├── dev_info.c │ │ ├── remote_shell.c │ │ └── system_health.c │ │ ├── common │ │ ├── CMakeLists.txt │ │ ├── rpc_utils_group.c │ │ └── rpc_utils_group.h │ │ └── server │ │ ├── CMakeLists.txt │ │ ├── crash_gen.c │ │ ├── dev_info.c │ │ ├── remote_shell.c │ │ └── system_health.c ├── nrf_security │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.legacy │ ├── Kconfig.psa │ ├── Kconfig.psa.nordic │ ├── Kconfig.tls │ ├── cmake │ │ ├── config_to_tf-m.cmake │ │ ├── extensions.cmake │ │ ├── generate_configs.cmake │ │ ├── legacy_crypto_config.cmake │ │ ├── nrf_config.cmake │ │ ├── nrf_security_debug.cmake │ │ ├── psa_crypto_config.cmake │ │ └── psa_crypto_want_config.cmake │ ├── configs │ │ ├── config_extra.cmake.in │ │ ├── legacy_crypto_config.h.template │ │ ├── nrf-config-user-empty.h │ │ ├── nrf-config.h.template │ │ ├── psa_crypto_config.h.template │ │ └── psa_crypto_want_config.h.template │ ├── include │ │ ├── mbedtls │ │ │ └── platform.h │ │ ├── nrf_security_api_structure.h │ │ └── psa │ │ │ ├── crypto_driver_config.h │ │ │ ├── crypto_driver_contexts_composites.h │ │ │ ├── crypto_driver_contexts_key_derivation.h │ │ │ ├── crypto_driver_contexts_primitives.h │ │ │ ├── nrf_platform_key_ids.h │ │ │ └── nrf_rng_entropy.h │ ├── src │ │ ├── CMakeLists.txt │ │ ├── core │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── lite │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── psa_core_lite.c │ │ │ │ └── psa_core_lite.h │ │ │ └── nrf_oberon │ │ │ │ └── CMakeLists.txt │ │ ├── drivers │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.psa_accel │ │ │ ├── cracen │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── common │ │ │ │ │ └── include │ │ │ │ │ │ ├── cracen │ │ │ │ │ │ ├── ec_helpers.h │ │ │ │ │ │ ├── interrupts.h │ │ │ │ │ │ ├── lib_kmu.h │ │ │ │ │ │ ├── mem_helpers.h │ │ │ │ │ │ ├── membarriers.h │ │ │ │ │ │ ├── prng_pool.h │ │ │ │ │ │ ├── statuscodes.h │ │ │ │ │ │ └── sx_error.h │ │ │ │ │ │ └── security │ │ │ │ │ │ └── cracen.h │ │ │ │ ├── cracen_sw │ │ │ │ │ ├── cracen_sw.cmake │ │ │ │ │ ├── include │ │ │ │ │ │ ├── cracen_sw_aes_cbc.h │ │ │ │ │ │ ├── cracen_sw_aes_ctr.h │ │ │ │ │ │ ├── cracen_sw_common.h │ │ │ │ │ │ └── cracen_sw_mac_cmac.h │ │ │ │ │ └── src │ │ │ │ │ │ ├── cracen_sw_aes_cbc.c │ │ │ │ │ │ ├── cracen_sw_aes_ctr.c │ │ │ │ │ │ ├── cracen_sw_cipher.c │ │ │ │ │ │ ├── cracen_sw_common.c │ │ │ │ │ │ ├── cracen_sw_mac.c │ │ │ │ │ │ └── cracen_sw_mac_cmac.c │ │ │ │ ├── cracenpsa │ │ │ │ │ ├── cracenpsa.cmake │ │ │ │ │ ├── include │ │ │ │ │ │ ├── cracen_psa.h │ │ │ │ │ │ ├── cracen_psa_builtin_key_policy.h │ │ │ │ │ │ ├── cracen_psa_cmac_kdf.h │ │ │ │ │ │ ├── cracen_psa_ecdsa.h │ │ │ │ │ │ ├── cracen_psa_eddsa.h │ │ │ │ │ │ ├── cracen_psa_ikg.h │ │ │ │ │ │ ├── cracen_psa_key_ids.h │ │ │ │ │ │ ├── cracen_psa_kmu.h │ │ │ │ │ │ ├── cracen_psa_montgomery.h │ │ │ │ │ │ ├── cracen_psa_primitives.h │ │ │ │ │ │ ├── cracen_psa_rsa_encryption.h │ │ │ │ │ │ ├── cracen_psa_rsa_keygen.h │ │ │ │ │ │ ├── cracen_psa_rsa_signature_pkcs1v15.h │ │ │ │ │ │ └── cracen_psa_rsa_signature_pss.h │ │ │ │ │ └── src │ │ │ │ │ │ ├── aead.c │ │ │ │ │ │ ├── asymmetric.c │ │ │ │ │ │ ├── builtin_key_policy.c │ │ │ │ │ │ ├── cipher.c │ │ │ │ │ │ ├── common.c │ │ │ │ │ │ ├── common.h │ │ │ │ │ │ ├── coprime_check.c │ │ │ │ │ │ ├── coprime_check.h │ │ │ │ │ │ ├── cracen.c │ │ │ │ │ │ ├── cracen_mac_cmac.c │ │ │ │ │ │ ├── cracen_mac_cmac.h │ │ │ │ │ │ ├── cracen_mac_hmac.c │ │ │ │ │ │ ├── cracen_mac_hmac.h │ │ │ │ │ │ ├── ctr_drbg.c │ │ │ │ │ │ ├── ec_helpers.c │ │ │ │ │ │ ├── ecc.c │ │ │ │ │ │ ├── ecc.h │ │ │ │ │ │ ├── ecdsa.c │ │ │ │ │ │ ├── ed25519.c │ │ │ │ │ │ ├── ed448.c │ │ │ │ │ │ ├── hash.c │ │ │ │ │ │ ├── hmac.c │ │ │ │ │ │ ├── hmac.h │ │ │ │ │ │ ├── ikg_signature.c │ │ │ │ │ │ ├── jpake.c │ │ │ │ │ │ ├── key_derivation.c │ │ │ │ │ │ ├── key_management.c │ │ │ │ │ │ ├── kmu.c │ │ │ │ │ │ ├── kmu.h │ │ │ │ │ │ ├── lib_kmu.c │ │ │ │ │ │ ├── mac.c │ │ │ │ │ │ ├── mem_helpers.c │ │ │ │ │ │ ├── microcode_binary.h │ │ │ │ │ │ ├── montgomery.c │ │ │ │ │ │ ├── pake.c │ │ │ │ │ │ ├── prng_pool.c │ │ │ │ │ │ ├── rndinrange.c │ │ │ │ │ │ ├── rsa_key.h │ │ │ │ │ │ ├── rsa_keygen.c │ │ │ │ │ │ ├── rsaes_oaep.c │ │ │ │ │ │ ├── rsaes_pkcs1v15.c │ │ │ │ │ │ ├── rsamgf1xor.c │ │ │ │ │ │ ├── rsamgf1xor.h │ │ │ │ │ │ ├── rsapss.c │ │ │ │ │ │ ├── rsassa_pkcs1v15.c │ │ │ │ │ │ ├── sign.c │ │ │ │ │ │ ├── spake2p.c │ │ │ │ │ │ └── srp.c │ │ │ │ ├── psa_driver.Kconfig │ │ │ │ ├── silexpk │ │ │ │ │ ├── include │ │ │ │ │ │ └── silexpk │ │ │ │ │ │ │ ├── blinding.h │ │ │ │ │ │ │ ├── cmddefs │ │ │ │ │ │ │ ├── dsa.h │ │ │ │ │ │ │ ├── ecc.h │ │ │ │ │ │ │ ├── ecjpake.h │ │ │ │ │ │ │ ├── edwards.h │ │ │ │ │ │ │ ├── modexp.h │ │ │ │ │ │ │ ├── modmath.h │ │ │ │ │ │ │ ├── rsa.h │ │ │ │ │ │ │ ├── sm9.h │ │ │ │ │ │ │ └── srp.h │ │ │ │ │ │ │ ├── core.h │ │ │ │ │ │ │ ├── ec_curves.h │ │ │ │ │ │ │ ├── ed25519.h │ │ │ │ │ │ │ ├── ed448.h │ │ │ │ │ │ │ ├── ik.h │ │ │ │ │ │ │ ├── iomem.h │ │ │ │ │ │ │ ├── montgomery.h │ │ │ │ │ │ │ ├── sxbuf │ │ │ │ │ │ │ └── sxbufop.h │ │ │ │ │ │ │ ├── sxops │ │ │ │ │ │ │ ├── adapter.h │ │ │ │ │ │ │ ├── dsa.h │ │ │ │ │ │ │ ├── eccweierstrass.h │ │ │ │ │ │ │ ├── ecjpake.h │ │ │ │ │ │ │ ├── impl.h │ │ │ │ │ │ │ ├── rsa.h │ │ │ │ │ │ │ ├── sm9.h │ │ │ │ │ │ │ ├── srp.h │ │ │ │ │ │ │ └── version.h │ │ │ │ │ │ │ └── version.h │ │ │ │ │ ├── interface │ │ │ │ │ │ └── sxbuf │ │ │ │ │ │ │ └── sxbufops.c │ │ │ │ │ ├── silexpk.cmake │ │ │ │ │ ├── src │ │ │ │ │ │ ├── blind.c │ │ │ │ │ │ ├── ed25519.c │ │ │ │ │ │ ├── ed448.c │ │ │ │ │ │ ├── iomem.c │ │ │ │ │ │ ├── montgomery.c │ │ │ │ │ │ ├── regs_curves.h │ │ │ │ │ │ └── statuscodes.c │ │ │ │ │ └── target │ │ │ │ │ │ ├── baremetal_ba414e_with_ik │ │ │ │ │ │ ├── internal.h │ │ │ │ │ │ └── pk_baremetal.c │ │ │ │ │ │ ├── hw │ │ │ │ │ │ ├── ba414 │ │ │ │ │ │ │ ├── ba414_status.c │ │ │ │ │ │ │ ├── ba414_status.h │ │ │ │ │ │ │ ├── cmddefs_ecc.c │ │ │ │ │ │ │ ├── cmddefs_ecjpake.c │ │ │ │ │ │ │ ├── cmddefs_modmath.c │ │ │ │ │ │ │ ├── cmddefs_srp.c │ │ │ │ │ │ │ ├── ec_curves.c │ │ │ │ │ │ │ ├── op_slots.h │ │ │ │ │ │ │ ├── pkhardware_ba414e.c │ │ │ │ │ │ │ ├── pkhardware_ba414e.h │ │ │ │ │ │ │ ├── regs_addr.h │ │ │ │ │ │ │ └── regs_commands.h │ │ │ │ │ │ └── ik │ │ │ │ │ │ │ ├── cmddefs_ik.c │ │ │ │ │ │ │ ├── ikhardware.c │ │ │ │ │ │ │ ├── ikhardware.h │ │ │ │ │ │ │ ├── regs_addr.h │ │ │ │ │ │ │ └── regs_commands.h │ │ │ │ │ │ └── include │ │ │ │ │ │ └── sx_regs.h │ │ │ │ └── sxsymcrypt │ │ │ │ │ ├── include │ │ │ │ │ └── sxsymcrypt │ │ │ │ │ │ ├── aead.h │ │ │ │ │ │ ├── aes.h │ │ │ │ │ │ ├── blkcipher.h │ │ │ │ │ │ ├── chachapoly.h │ │ │ │ │ │ ├── cmac.h │ │ │ │ │ │ ├── cmmask.h │ │ │ │ │ │ ├── hash.h │ │ │ │ │ │ ├── hashdefs.h │ │ │ │ │ │ ├── hmac.h │ │ │ │ │ │ ├── internal.h │ │ │ │ │ │ ├── keyref.h │ │ │ │ │ │ ├── mac.h │ │ │ │ │ │ ├── memdiff.h │ │ │ │ │ │ ├── trng.h │ │ │ │ │ │ ├── trnginternal.h │ │ │ │ │ │ └── version.h │ │ │ │ │ ├── src │ │ │ │ │ ├── aead.c │ │ │ │ │ ├── aeaddefs.h │ │ │ │ │ ├── ba431regs.h │ │ │ │ │ ├── blkcipher.c │ │ │ │ │ ├── blkcipherdefs.h │ │ │ │ │ ├── chachapoly.c │ │ │ │ │ ├── cmac.c │ │ │ │ │ ├── cmaes.h │ │ │ │ │ ├── cmdma.c │ │ │ │ │ ├── cmdma.h │ │ │ │ │ ├── cmmask.c │ │ │ │ │ ├── crypmasterregs.h │ │ │ │ │ ├── hash.c │ │ │ │ │ ├── hmac.c │ │ │ │ │ ├── hw.h │ │ │ │ │ ├── keyref.c │ │ │ │ │ ├── keyrefdefs.h │ │ │ │ │ ├── mac.c │ │ │ │ │ ├── macdefs.h │ │ │ │ │ ├── platform │ │ │ │ │ │ └── baremetal │ │ │ │ │ │ │ ├── cmdma_hw.c │ │ │ │ │ │ │ └── interrupts.c │ │ │ │ │ ├── sha3.c │ │ │ │ │ └── trng.c │ │ │ │ │ └── sxsymcrypt.cmake │ │ │ ├── ironside │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── ironside_psa.h │ │ │ ├── legacy │ │ │ │ └── CMakeLists.txt │ │ │ ├── nrf_cc3xx │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Kconfig │ │ │ ├── nrf_cc3xx_platform │ │ │ │ └── CMakeLists.txt │ │ │ ├── nrf_oberon │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── cracen_trng │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── cracen_trng.c │ │ │ │ │ └── cracen_trng.h │ │ │ └── zephyr │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_rng_entropy.c │ │ ├── legacy │ │ │ ├── CMakeLists.txt │ │ │ ├── dhm_ext.c │ │ │ ├── ecdsa_oberon.c │ │ │ ├── ecjpake_oberon.c │ │ │ ├── md_ext.c │ │ │ ├── memory_buffer_alloc.c │ │ │ └── rsa_ext.c │ │ ├── mbedtls_psa_platform.c │ │ ├── psa_crypto_driver_wrappers.c │ │ ├── ssf_secdom │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── bounce_buffers.c │ │ │ ├── bounce_buffers.h │ │ │ ├── ironside_se_psa_ns_api.c │ │ │ └── psa_manifest │ │ │ │ └── sid.h │ │ ├── threading │ │ │ ├── include │ │ │ │ └── threading_alt.h │ │ │ ├── threading.cmake │ │ │ └── threading_alt.c │ │ ├── utils │ │ │ ├── nrf_security_core.c │ │ │ ├── nrf_security_core.h │ │ │ ├── nrf_security_events.c │ │ │ ├── nrf_security_events.h │ │ │ ├── nrf_security_mutexes.c │ │ │ ├── nrf_security_mutexes.h │ │ │ └── nrf_security_utils.cmake │ │ └── zephyr │ │ │ ├── CMakeLists.txt │ │ │ ├── debug_init.c │ │ │ ├── entropy_poll.c │ │ │ ├── mbedtls_heap.c │ │ │ ├── mbedtls_partition.c │ │ │ └── psa_crypto_init.c │ └── tfm │ │ └── CMakeLists.txt ├── partition_manager │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.template.partition_config │ ├── Kconfig.template.partition_region │ ├── ext_flash_mcuboot_secondary.conf │ ├── flash_map_partition_manager.c │ ├── partition_manager_enabled.conf │ ├── pm.yml.b0 │ ├── pm.yml.bootconf │ ├── pm.yml.bt_fast_pair │ ├── pm.yml.emds │ ├── pm.yml.file_system │ ├── pm.yml.fmfu │ ├── pm.yml.libmodem │ ├── pm.yml.log_history │ ├── pm.yml.mcuboot │ ├── pm.yml.memfault │ ├── pm.yml.modem_trace │ ├── pm.yml.nrf5_mbr │ ├── pm.yml.nvs │ ├── pm.yml.pcd │ ├── pm.yml.pgps │ ├── pm.yml.rpmsg_nrf53 │ ├── pm.yml.secure_boot_storage │ ├── pm.yml.settings │ ├── pm.yml.tfm │ ├── pm.yml.trustzone │ ├── pm.yml.vpr_launcher │ ├── pm.yml.wifi │ └── pm.yml.zms ├── pcd │ ├── CMakeLists.txt │ ├── Kconfig │ ├── pcd.conf │ └── src │ │ └── pcd.c ├── secure_storage │ ├── CMakeLists.txt │ ├── Kconfig │ ├── compatibility │ │ ├── Kconfig │ │ └── src │ │ │ ├── its_store_settings_get.c │ │ │ └── its_transform_tsbc.c │ └── src │ │ └── its_transform_aead_get_key_huk.c ├── settings │ ├── CMakeLists.txt │ ├── Kconfig │ ├── include │ │ └── settings │ │ │ └── settings_zms_legacy.h │ └── src │ │ ├── CMakeLists.txt │ │ └── settings_zms_legacy.c ├── shell │ ├── CMakeLists.txt │ ├── Kconfig │ ├── shell_bt_nus.c │ ├── shell_ipc.c │ └── shell_nfc.c ├── trusted_storage │ ├── CMakeLists.txt │ ├── Kconfig │ ├── include │ │ └── psa │ │ │ ├── error.h │ │ │ ├── internal_trusted_storage.h │ │ │ ├── protected_storage.h │ │ │ └── storage_common.h │ └── src │ │ ├── CMakeLists.txt │ │ ├── aead │ │ ├── CMakeLists.txt │ │ ├── aead_crypt.h │ │ ├── aead_crypt_psa_chachapoly.c │ │ ├── aead_ctr_nonce.c │ │ ├── aead_key.h │ │ ├── aead_key_hash.c │ │ ├── aead_key_huk.c │ │ ├── aead_nonce.h │ │ └── trusted_backend_aead.c │ │ ├── internal_trusted_storage │ │ ├── CMakeLists.txt │ │ └── backend_interface.c │ │ ├── protected_storage │ │ ├── CMakeLists.txt │ │ └── backend_interface.c │ │ ├── storage_backend.h │ │ ├── storage_backend_settings.c │ │ └── trusted_storage_backend.h └── uart_async_adapter │ ├── CMakeLists.txt │ ├── Kconfig │ └── uart_async_adapter.c ├── sysbuild ├── CMakeLists.txt ├── Kconfig.appcore ├── Kconfig.approtect ├── Kconfig.bt_fast_pair ├── Kconfig.cracen ├── Kconfig.dfu ├── Kconfig.firmware_loader ├── Kconfig.firmware_loader_radio ├── Kconfig.flprcore ├── Kconfig.hpf ├── Kconfig.lwm2m_carrier ├── Kconfig.matter ├── Kconfig.mcuboot ├── Kconfig.netcore ├── Kconfig.pprcore ├── Kconfig.radio_loader ├── Kconfig.secureboot ├── Kconfig.sysbuild ├── Kconfig.tfm ├── Kconfig.wifi ├── Kconfig.xip ├── Kconfig.zip ├── appcore.cmake ├── extensions.cmake ├── firmware_loader_radio.cmake ├── flprcore.cmake ├── image_configurations │ ├── b0_image_default.cmake │ └── firmware_loader_image_default.cmake ├── mcuboot.cmake ├── netcore.cmake ├── pprcore.cmake ├── radio_loader.cmake └── secureboot.cmake ├── test-manifests └── 99-default-test-nrf.yml ├── tests ├── CMakeLists.txt ├── Kconfig ├── benchmarks │ ├── current_consumption │ │ ├── beacon_idle │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ ├── beacon_vs_vdd │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ │ ├── gpio_idle │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ ├── grtc_idle │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ ├── lfrc_idle │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.cmake │ │ │ └── testcase.yaml │ │ ├── multicore_system_off │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── prj.conf │ │ │ ├── remote │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── prj.conf │ │ │ │ └── src │ │ │ │ │ └── main.c │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.cmake │ │ │ └── testcase.yaml │ │ ├── nfc_idle │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.cmake │ │ │ └── testcase.yaml │ │ ├── nrf54l_errata30_idle │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ ├── rram_write │ │ │ ├── CMakeLists.txt │ │ │ ├── disable_console.conf │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ ├── ship_mode │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp_ns.overlay │ │ │ └── testcase.yaml │ │ ├── system_off │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840_retain_16k.overlay │ │ │ │ ├── nrf52840dk_nrf52840_retain_32k.overlay │ │ │ │ ├── nrf52840dk_nrf52840_retain_4k.overlay │ │ │ │ ├── nrf52dk_nrf52832_retain_4k.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_gpio_wakeup.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_lpcomp_wakeup.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_retain_16k.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_retain_32k.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_retain_4k.overlay │ │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp_retain_16k.overlay │ │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp_retain_4k.overlay │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp_retain_16k.overlay │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp_retain_32k.overlay │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp_retain_4k.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_gpio_wakeup.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_lpcomp_wakeup.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_retain_16k.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_retain_32k.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_retain_4k.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_gpio_wakeup.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_lpcomp_wakeup.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_retain_16k.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_retain_32k.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_retain_4k.overlay │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_gpio_wakeup.overlay │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_lpcomp_wakeup.overlay │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns.conf │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns_retain_16k.overlay │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns_retain_32k.overlay │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns_retain_4k.overlay │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_retain_16k.overlay │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_retain_32k.overlay │ │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp_retain_4k.overlay │ │ │ ├── prj.conf │ │ │ ├── sysbuild.cmake │ │ │ └── testcase.yaml │ │ ├── twim_suspend │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuppr.overlay │ │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── remote │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── boards │ │ │ │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ │ ├── prj.conf │ │ │ │ └── src │ │ │ │ │ └── main.c │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.cmake │ │ │ ├── sysbuild │ │ │ │ └── vpr_launcher │ │ │ │ │ └── prj.conf │ │ │ └── testcase.yaml │ │ ├── uart_console │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.cmake │ │ │ └── testcase.yaml │ │ ├── uart_idle │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ └── nrf54l15dk_nrf54l15_cpuapp_uart30.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ └── uarte_suspend │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ └── main.c │ │ │ ├── sysbuild.cmake │ │ │ └── testcase.yaml │ ├── early_logging │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ ├── i2c_endless │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.txt │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ ├── i2s_freq │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ └── nrf5340dk_nrf5340_cpuapp_aclk.overlay │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ ├── kernel_freq_change │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ ├── prj.conf │ │ ├── src │ │ │ ├── kernel_common.c │ │ │ ├── kernel_context.c │ │ │ ├── kernel_timer.c │ │ │ └── main.c │ │ └── testcase.yaml │ ├── multicore │ │ ├── common │ │ │ ├── power_off.c │ │ │ ├── workaround_idle.overlay │ │ │ └── workaround_idle_retained.overlay │ │ ├── idle │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.sysbuild │ │ │ ├── README.rst │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_ram_high_usage.overlay │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp_ram_low_usage.overlay │ │ │ ├── prj.conf │ │ │ ├── remote │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.cmake │ │ │ ├── sysbuild │ │ │ │ ├── nrf5340dk_nrf5340_cpunet.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuppr.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuppr_xip.conf │ │ │ │ └── nrf54h20dk_nrf54h20_cpurad.conf │ │ │ └── testcase.yaml │ │ ├── idle_adc │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_mcuboot.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuppr.conf │ │ │ │ └── nrf54h20dk_nrf54h20_cpuppr.overlay │ │ │ ├── coverage.conf │ │ │ ├── disable_s2ram.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild │ │ │ │ ├── mcuboot.conf │ │ │ │ └── vpr_launcher │ │ │ │ │ ├── boards │ │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ │ └── prj.conf │ │ │ └── testcase.yaml │ │ ├── idle_clock_control │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ ├── coverage.conf │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.cmake │ │ │ └── testcase.yaml │ │ ├── idle_comp │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ ├── comp.overlay │ │ │ │ ├── lpcomp.overlay │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── coverage.conf │ │ │ ├── disable_s2ram.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild │ │ │ │ └── mcuboot.conf │ │ │ └── testcase.yaml │ │ ├── idle_counter │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── remote │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── boards │ │ │ │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ │ └── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild │ │ │ │ └── mcuboot.conf │ │ │ └── testcase.yaml │ │ ├── idle_exmif │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_mcuboot.overlay │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── coverage.conf │ │ │ ├── disable_s2ram.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild │ │ │ │ └── mcuboot.conf │ │ │ └── testcase.yaml │ │ ├── idle_flpr │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── boards │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── prj_s2ram.conf │ │ │ ├── remote │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── boards │ │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuflpr.overlay │ │ │ │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ │ ├── prj.conf │ │ │ │ └── prj_s2ram.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.cmake │ │ │ └── testcase.yaml │ │ ├── idle_gpio │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── README.rst │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_s2ram.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_s2ram_merged_slot.overlay │ │ │ │ └── wakeup_from_uart_pins.overlay │ │ │ ├── enable_ppr.overlay │ │ │ ├── prj.conf │ │ │ ├── prj_s2ram.conf │ │ │ ├── prj_s2ram_merged_slot.conf │ │ │ ├── remote │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── boards │ │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuppr_s2ram.overlay │ │ │ │ │ ├── nrf54h20dk_nrf54h20_cpurad_s2ram.overlay │ │ │ │ │ ├── nrf54h20dk_nrf54h20_cpurad_s2ram_merged_slot.overlay │ │ │ │ │ └── wakeup_from_uart_pins.overlay │ │ │ │ ├── prj.conf │ │ │ │ ├── prj_s2ram.conf │ │ │ │ └── prj_s2ram_merged_slot.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild │ │ │ │ ├── mcuboot.conf │ │ │ │ ├── mcuboot_s2ram_merged_slot.conf │ │ │ │ ├── mcuboot_s2ram_merged_slot.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_memory_map_merged_slot.dtsi │ │ │ │ └── sysbuild_merged_slot.conf │ │ │ └── testcase.yaml │ │ ├── idle_grtc │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ └── nrf54h20dk_nrf54h20_cpuppr.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.cmake │ │ │ ├── testcase.yaml │ │ │ └── vpr_launcher.conf │ │ ├── idle_hpu_temp_meas │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── sysbuild.cmake │ │ │ ├── sysbuild │ │ │ │ └── nrf54h20dk_nrf54h20_cpurad.conf │ │ │ └── testcase.yaml │ │ ├── idle_ipc │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.common │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── coverage.conf │ │ │ ├── disable_s2ram.overlay │ │ │ ├── prj.conf │ │ │ ├── remote │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── boards │ │ │ │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ │ └── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild │ │ │ │ └── mcuboot.conf │ │ │ └── testcase.yaml │ │ ├── idle_outside_of_main │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── remote │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── boards │ │ │ │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ │ └── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild │ │ │ │ └── mcuboot.conf │ │ │ └── testcase.yaml │ │ ├── idle_ppr │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_mcuboot.overlay │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── prj_s2ram.conf │ │ │ ├── remote │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── boards │ │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuppr.overlay │ │ │ │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ │ ├── prj.conf │ │ │ │ └── prj_s2ram.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.cmake │ │ │ ├── sysbuild │ │ │ │ └── mcuboot.conf │ │ │ └── testcase.yaml │ │ ├── idle_pwm_led │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.sysbuild │ │ │ ├── README.rst │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp_fast_p7_0.overlay │ │ │ ├── coverage.conf │ │ │ ├── disable_s2ram.overlay │ │ │ ├── prj.conf │ │ │ ├── prj_s2ram.conf │ │ │ ├── remote │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── boards │ │ │ │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ │ ├── prj.conf │ │ │ │ └── prj_s2ram.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild │ │ │ │ └── mcuboot.conf │ │ │ └── testcase.yaml │ │ ├── idle_pwm_loopback │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_fast_p7_1.overlay │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp_fast_slow_pins.overlay │ │ │ ├── coverage.conf │ │ │ ├── disable_s2ram.overlay │ │ │ ├── dts │ │ │ │ └── bindings │ │ │ │ │ └── test-pwm-to-gpio-loopback.yaml │ │ │ ├── prj.conf │ │ │ ├── prj_s2ram.conf │ │ │ ├── remote │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── boards │ │ │ │ │ ├── disable_uart135.overlay │ │ │ │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ │ ├── dts │ │ │ │ │ └── bindings │ │ │ │ │ │ └── test-pwm-to-gpio-loopback.yaml │ │ │ │ ├── prj.conf │ │ │ │ └── prj_s2ram.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.cmake │ │ │ └── testcase.yaml │ │ ├── idle_spim │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuppr.conf │ │ │ │ └── nrf54h20dk_nrf54h20_cpuppr.overlay │ │ │ ├── coverage.conf │ │ │ ├── disable_s2ram.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild │ │ │ │ ├── mcuboot.conf │ │ │ │ └── vpr_launcher │ │ │ │ │ ├── boards │ │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ │ └── prj.conf │ │ │ └── testcase.yaml │ │ ├── idle_spim_loopback │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_fast.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_fast_slow_pins.overlay │ │ │ │ └── nrf54h20dk_nrf54h20_cpuppr.overlay │ │ │ ├── coverage.conf │ │ │ ├── disable_s2ram.overlay │ │ │ ├── enable_logs.conf │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.cmake │ │ │ ├── sysbuild │ │ │ │ └── vpr_launcher │ │ │ │ │ ├── boards │ │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ │ └── prj.conf │ │ │ └── testcase.yaml │ │ ├── idle_stm │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── boards │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── prj_s2ram.conf │ │ │ ├── remote │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── boards │ │ │ │ │ └── nrf54h20dk_nrf54h20_cpuppr.overlay │ │ │ │ ├── prj.conf │ │ │ │ └── prj_s2ram.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.cmake │ │ │ └── testcase.yaml │ │ ├── idle_twim │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ └── nrf54h20dk_nrf54h20_cpuppr.overlay │ │ │ ├── coverage.conf │ │ │ ├── disable_s2ram.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild │ │ │ │ ├── mcuboot.conf │ │ │ │ └── vpr_launcher │ │ │ │ │ ├── boards │ │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ │ └── prj.conf │ │ │ └── testcase.yaml │ │ ├── idle_uarte │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_fast.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_fast_slow_pins.overlay │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp_normal.overlay │ │ │ ├── coverage.conf │ │ │ ├── disable_s2ram.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild │ │ │ │ └── mcuboot.conf │ │ │ └── testcase.yaml │ │ ├── idle_usb │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.cmake │ │ │ └── testcase.yaml │ │ └── idle_wdt │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ ├── enable_logs.conf │ │ │ ├── prj.conf │ │ │ ├── remote │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── boards │ │ │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ └── prj.conf │ │ │ ├── src │ │ │ └── main.c │ │ │ ├── sysbuild.cmake │ │ │ └── testcase.yaml │ ├── peripheral_load │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l05_10_15_common.dtsi │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ ├── power_management.conf │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ ├── accelerometer_thread.c │ │ │ ├── adc_thread.c │ │ │ ├── bme680_thread.c │ │ │ ├── bt_beacon_thread.c │ │ │ ├── can_thread.c │ │ │ ├── clock_thread.c │ │ │ ├── common.h │ │ │ ├── counter_thread.c │ │ │ ├── flash_thread.c │ │ │ ├── gpio_thread.c │ │ │ ├── i2s_thread.c │ │ │ ├── load_thread.c │ │ │ ├── main.c │ │ │ ├── pwm_thread.c │ │ │ ├── temp_thread.c │ │ │ ├── timer_thread.c │ │ │ ├── usb_thread.c │ │ │ └── wdt_thread.c │ ├── pm_states │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ ├── power_consumption │ │ ├── adc │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuppr.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuppr.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── driver_test.c │ │ │ ├── sysbuild.cmake │ │ │ ├── sysbuild │ │ │ │ └── vpr_launcher │ │ │ │ │ ├── boards │ │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ │ └── prj.conf │ │ │ └── testcase.yaml │ │ ├── common │ │ │ ├── main.c │ │ │ └── remote_sleep_forever │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ │ ├── prj.conf │ │ │ │ └── src │ │ │ │ └── main.c │ │ ├── flash │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── driver_test.c │ │ │ ├── sysbuild.cmake │ │ │ └── testcase.yaml │ │ ├── gpio │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── driver_test.c │ │ │ ├── sysbuild.cmake │ │ │ └── testcase.yaml │ │ ├── i2c │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuppr.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuppr.overlay │ │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── driver_test.c │ │ │ ├── sysbuild.cmake │ │ │ ├── sysbuild │ │ │ │ └── vpr_launcher │ │ │ │ │ ├── boards │ │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ │ └── prj.conf │ │ │ └── testcase.yaml │ │ ├── lpcomp │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── driver_test.c │ │ │ ├── sysbuild.cmake │ │ │ └── testcase.yaml │ │ ├── qdec │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.cmake │ │ │ └── testcase.yaml │ │ ├── spi │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── driver_test.c │ │ │ ├── sysbuild.cmake │ │ │ ├── sysbuild │ │ │ │ └── nrf54h20dk_nrf54h20_cpurad.conf │ │ │ └── testcase.yaml │ │ ├── temperature_sensor │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.cmake │ │ │ └── testcase.yaml │ │ ├── timer_waiting │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_16M.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_320M.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54l_128M.overlay │ │ │ │ ├── nrf54l_16M.overlay │ │ │ │ ├── nrf54l_32M.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── driver_test.c │ │ │ ├── sysbuild.cmake │ │ │ ├── sysbuild │ │ │ │ └── nrf54h20dk_nrf54h20_cpurad.conf │ │ │ └── testcase.yaml │ │ └── uart │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ ├── async_driver_test.c │ │ │ ├── int_driver_test.c │ │ │ └── poll_driver_test.c │ │ │ ├── sysbuild.cmake │ │ │ └── testcase.yaml │ └── spi_endless │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.txt │ │ ├── boards │ │ ├── 1mhz.overlay │ │ ├── 250khz.overlay │ │ ├── 2mhz.overlay │ │ ├── 4mhz.overlay │ │ ├── 500khz.overlay │ │ ├── 8mhz.overlay │ │ ├── nrf52840dk_nrf52840.overlay │ │ ├── nrf54h20dk_nrf54h20_common.dtsi │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ ├── prj.conf │ │ ├── src │ │ └── main.c │ │ └── testcase.yaml ├── bluetooth │ ├── bsim │ │ └── nrf_auraconfig │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.sysbuild │ │ │ ├── README.rst │ │ │ ├── _nrf_auraconfig_simulation.sh │ │ │ ├── app.overlay │ │ │ ├── compile.sh │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ ├── audio_sync_timer_mock.c │ │ │ ├── led_mock.c │ │ │ └── main.c │ │ │ ├── sysbuild │ │ │ └── ipc_radio │ │ │ │ └── prj.conf │ │ │ ├── tester │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.sysbuild │ │ │ ├── README.rst │ │ │ ├── include │ │ │ │ └── nac_test.h │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ ├── main.c │ │ │ │ └── nrf_auraconfig_test.c │ │ │ └── sysbuild │ │ │ │ └── ipc_radio │ │ │ │ └── prj.conf │ │ │ └── tests │ │ │ ├── _usecase_defines.sh │ │ │ ├── usecase_0_test.sh │ │ │ ├── usecase_1_test.sh │ │ │ ├── usecase_2_test_BIG0.sh │ │ │ ├── usecase_2_test_BIG1.sh │ │ │ ├── usecase_3_test.sh │ │ │ ├── usecase_4_test.sh │ │ │ └── usecase_5_test.sh │ ├── iso │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── README.txt │ │ ├── modules │ │ │ ├── central.c │ │ │ ├── iso_broadcast_sink.c │ │ │ ├── iso_broadcast_sink.h │ │ │ ├── iso_broadcast_src.c │ │ │ ├── iso_broadcast_src.h │ │ │ └── peripheral.c │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ ├── sysbuild │ │ │ └── ipc_radio │ │ │ │ └── prj.conf │ │ └── testcase.yaml │ └── tester │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── boards │ │ ├── nrf52840dk_nrf52840.conf │ │ ├── nrf52840dk_nrf52840.overlay │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ ├── prj.conf │ │ ├── src │ │ ├── bttester.c │ │ ├── bttester.h │ │ ├── gap.c │ │ ├── main.c │ │ ├── mesh.c │ │ ├── mmdl.c │ │ ├── model_handler.c │ │ └── model_handler.h │ │ └── testcase.yaml ├── crypto │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── overlay-cc3xx.conf │ ├── overlay-oberon.conf │ ├── prj.conf │ ├── src │ │ ├── common_test.c │ │ └── common_test.h │ ├── test_cases │ │ ├── CMakeLists.txt │ │ ├── custom-rodata.ld │ │ ├── test_aead.c │ │ ├── test_aes_cbc.c │ │ ├── test_aes_cbc_mac.c │ │ ├── test_aes_ctr.c │ │ ├── test_aes_ecb.c │ │ ├── test_aes_ecb_mac.c │ │ ├── test_ecdh.c │ │ ├── test_ecdsa.c │ │ ├── test_ecjpake.c │ │ ├── test_hkdf.c │ │ ├── test_hmac.c │ │ ├── test_sha_256.c │ │ ├── test_sha_512.c │ │ ├── test_vectors.c │ │ ├── test_vectors_aead_ccm.c │ │ ├── test_vectors_aead_chachapoly.c │ │ ├── test_vectors_aead_gcm.c │ │ ├── test_vectors_aes_cbc.c │ │ ├── test_vectors_aes_cbc_mac.c │ │ ├── test_vectors_aes_ctr.c │ │ ├── test_vectors_aes_ecb.c │ │ ├── test_vectors_aes_ecb_mac.c │ │ ├── test_vectors_ecdh.c │ │ ├── test_vectors_ecdsa_random.c │ │ ├── test_vectors_ecdsa_sign.c │ │ ├── test_vectors_ecdsa_verify.c │ │ ├── test_vectors_ecjpake.c │ │ ├── test_vectors_hkdf.c │ │ ├── test_vectors_hmac.c │ │ ├── test_vectors_sha_256.c │ │ └── test_vectors_sha_512.c │ └── testcase.yaml ├── drivers │ ├── adc │ │ └── adc_latency │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ └── main.c │ │ │ └── testcase.yaml │ ├── audio │ │ ├── dmic_dump_buffer │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ ├── pdm_instances │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── pdm_instances.c │ │ │ └── testcase.yaml │ │ ├── pdm_loopback │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_audiopll_44k1.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_audiopll_48k.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_ns.overlay │ │ │ │ ├── nrf54l_aclk.overlay │ │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ └── pdm_prescaler │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── boards │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_ns.overlay │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── nrf54l_aclk.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ └── main.c │ │ │ └── testcase.yaml │ ├── can │ │ └── can_stats_init │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ └── can_stats_init.c │ │ │ └── testcase.yaml │ ├── flash │ │ ├── flash_rpc │ │ │ ├── CMakeLists.txt │ │ │ ├── app.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.conf │ │ │ ├── sysbuild │ │ │ │ └── empty_net_core.conf │ │ │ └── testcase.yaml │ │ └── multicore_soc_flash │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ ├── prj.conf │ │ │ ├── remote │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ └── prj.conf │ │ │ ├── src │ │ │ └── main.c │ │ │ ├── sysbuild.cmake │ │ │ └── testcase.yaml │ ├── flash_patch │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ ├── fprotect │ │ ├── app │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ ├── negative │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.conf │ │ │ └── testcase.yaml │ │ ├── positive │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.conf │ │ │ └── testcase.yaml │ │ └── storage │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ └── main.c │ │ │ └── testcase.yaml │ ├── gpio │ │ ├── gpio_event │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ ├── gpio_more_loops │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuppr.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_common.dtsi │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_ns.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuflpr.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_common.dtsi │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuflpr.overlay │ │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_common.dtsi │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuflpr.overlay │ │ │ │ └── nrf7120pdk_nrf7120_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ ├── gpio_nfct │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuppr.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpurad.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ └── nrf7120pdk_nrf7120_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ │ ├── gpio_swd │ │ │ ├── CMakeLists.txt │ │ │ ├── Readme.txt │ │ │ ├── boards │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ └── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ ├── hpf_gpio_basic_api │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── dts │ │ │ │ └── bindings │ │ │ │ │ └── test-hpf-gpio.yaml │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ ├── test_hpf_gpio.h │ │ │ │ └── test_hpf_gpio_port.c │ │ │ ├── sysbuild.conf │ │ │ └── testcase.yaml │ │ └── hpf_gpio_more_loops │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ └── main.c │ │ │ ├── sysbuild.conf │ │ │ └── testcase.yaml │ ├── grtc │ │ ├── grtc_clk_output │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_fast.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_fast.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_fast.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_fast.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_fast.conf │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_fast.overlay │ │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp_fast.conf │ │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp_fast.overlay │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_fast.conf │ │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp_fast.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ └── grtc_reset │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── pytest │ │ │ └── tests.py │ │ │ ├── src │ │ │ └── main.c │ │ │ └── testcase.yaml │ ├── i2c │ │ ├── i2c_latency │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ ├── i2c_pan │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ └── twim_instances │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpuppr.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ └── twim_instances.c │ │ │ ├── sysbuild │ │ │ └── vpr_launcher │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ └── prj.conf │ │ │ └── testcase.yaml │ ├── i2s │ │ ├── i2s_buffer │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp_aclk.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── i2s_buffer.c │ │ │ └── testcase.yaml │ │ ├── i2s_instances │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ └── nrf7120pdk_nrf7120_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── i2s_instances.c │ │ │ └── testcase.yaml │ │ ├── i2s_latency │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ └── nrf7120pdk_nrf7120_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ └── i2s_mclk │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.conf │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.overlay │ │ │ ├── tdm_mck_audio_auxpll.overlay │ │ │ ├── tdm_mck_audiopll.overlay │ │ │ ├── tdm_sck_audio_auxpll.overlay │ │ │ └── tdm_sck_audiopll.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ └── test_i2s_mclk.c │ │ │ └── testcase.yaml │ ├── lpuart │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README │ │ ├── boards │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.conf │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns.overlay │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.conf │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.overlay │ │ │ ├── nrf9160dk_nrf52840.conf │ │ │ ├── nrf9160dk_nrf52840.overlay │ │ │ ├── nrf9160dk_nrf52840_0_14_0.overlay │ │ │ ├── nrf9160dk_nrf9160.conf │ │ │ ├── nrf9160dk_nrf9160.overlay │ │ │ ├── nrf9160dk_nrf9160_0_14_0.overlay │ │ │ └── nrf9160dk_nrf9160_loopback.overlay │ │ ├── dbg.conf │ │ ├── prj.conf │ │ ├── src │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── int_driven.c │ │ │ └── main.c │ │ └── testcase.yaml │ ├── mspi │ │ ├── app_fault_timer │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.conf │ │ │ └── testcase.yaml │ │ ├── error_cases │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.conf │ │ │ └── testcase.yaml │ │ ├── mspi_with_spis │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp_sqspi.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ └── trap_handler │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_memory.overlay │ │ │ └── nrf54l15dk_nrf54l15_cpuflpr_memory.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ └── main.c │ │ │ ├── sysbuild.conf │ │ │ └── testcase.yaml │ ├── nrf_wifi │ │ └── raw_tx_rx │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── ipc.overlay │ │ │ ├── overlay-nrf71-tlm.conf │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ └── main.c │ │ │ ├── sysbuild.conf │ │ │ └── testcase.yaml │ ├── nrfx_integration_test │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ ├── pwm │ │ ├── gpio_loopback │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_fast_p7_0.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_fast_p7_1.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_fast_p7_6.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_fast_p7_7.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuppr.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuppr_launcher.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuppr_launcher.toml │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuflpr.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.overlay │ │ │ │ └── nrf7120pdk_nrf7120_cpuflpr.overlay │ │ │ ├── dts │ │ │ │ └── bindings │ │ │ │ │ └── test-pwm-to-gpio-loopback.yaml │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ ├── main.c │ │ │ │ ├── test_pwm_to_gpio_loopback.c │ │ │ │ └── test_pwm_to_gpio_loopback.h │ │ │ └── testcase.yaml │ │ ├── pwm_events │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ └── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ └── pwm_instances │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ └── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ └── pwm_instances.c │ │ │ └── testcase.yaml │ ├── qdec │ │ └── qdec_instances │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ └── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ └── qdec_instances.c │ │ │ └── testcase.yaml │ ├── sensor │ │ └── multicore_temp │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ ├── prj.conf │ │ │ ├── remote │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ └── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ └── prj.conf │ │ │ ├── src │ │ │ └── main.c │ │ │ ├── sysbuild.cmake │ │ │ ├── sysbuild │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ └── nrf54h20dk_nrf54h20_cpurad.conf │ │ │ └── testcase.yaml │ ├── spi │ │ ├── spi_latency │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── spi_1MHz.overlay │ │ │ │ └── spi_4MHz.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ ├── spim_instances │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuppr.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── spim_instances.c │ │ │ ├── sysbuild │ │ │ │ └── vpr_launcher │ │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ │ └── prj.conf │ │ │ └── testcase.yaml │ │ ├── spim_mosi_toggles │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ └── spim_pan │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ └── nrf54lxx_cpuapp_fast.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ └── main.c │ │ │ └── testcase.yaml │ ├── timer │ │ └── grtc_timer_lfrc │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp copy.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ └── main.c │ │ │ └── testcase.yaml │ ├── uart │ │ ├── uart_baudrate_test │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_uart120.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_uart135.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_uart137.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_uart00.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_uart21.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_uart22.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_uart00.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_uart21.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_uart22.overlay │ │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp_uart21.overlay │ │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp_uart22.overlay │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_uart21.overlay │ │ │ │ ├── nrf7120pdk_nrf7120_cpuapp_uart00.overlay │ │ │ │ ├── nrf7120pdk_nrf7120_cpuapp_uart21.overlay │ │ │ │ └── nrf7120pdk_nrf7120_cpuapp_uart22.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ ├── uart_fifo_flush │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ ├── uart_instances │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── uart_instances.c │ │ │ └── testcase.yaml │ │ ├── uart_latency │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ ├── async.c │ │ │ │ ├── common.c │ │ │ │ ├── common.h │ │ │ │ ├── int_driven.c │ │ │ │ └── polling.c │ │ │ └── testcase.yaml │ │ ├── uart_mixed_modes │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ ├── async_int.c │ │ │ │ ├── async_poll.c │ │ │ │ ├── common.c │ │ │ │ ├── common.h │ │ │ │ └── int_poll.c │ │ │ └── testcase.yaml │ │ └── uart_passtrough │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── pytest │ │ │ ├── serial_port.py │ │ │ └── test_passtrough.py │ │ │ ├── src │ │ │ └── main.c │ │ │ └── testcase.yaml │ └── watchdog │ │ ├── common │ │ ├── hw_info_helper.c │ │ └── hw_info_helper.h │ │ ├── uicr_wdtstart │ │ ├── CMakeLists.txt │ │ ├── boards │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ ├── sysbuild │ │ │ └── uicr.conf │ │ └── testcase.yaml │ │ ├── wdt_instances │ │ ├── CMakeLists.txt │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpuflpr.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpuppr.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpurad.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ ├── prj.conf │ │ ├── src │ │ │ └── wdt_instances.c │ │ ├── sysbuild │ │ │ └── vpr_launcher │ │ │ │ ├── boards │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ └── prj.conf │ │ └── testcase.yaml │ │ └── wdt_soft_reset │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── boards │ │ ├── nrf52840dk_nrf52840.overlay │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ ├── nrf5340dk_nrf5340_cpunet.overlay │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ ├── nrf54h20dk_nrf54h20_cpurad.overlay │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ ├── prj.conf │ │ ├── src │ │ └── main.c │ │ └── testcase.yaml ├── include │ ├── mock_nrf_modem_at.h │ └── mock_nrf_rpc_transport.h ├── lib │ ├── app_jwt │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ ├── at_cmd_custom │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ ├── at_parser │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ ├── contin_array │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── prj.conf │ │ ├── src │ │ │ ├── array_test.c │ │ │ ├── array_test_chan.c │ │ │ ├── array_test_chan_api.c │ │ │ ├── array_test_data.c │ │ │ ├── array_test_data.h │ │ │ └── main.c │ │ └── testcase.yaml │ ├── data_fifo │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ ├── date_time │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ ├── edge_impulse │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── prj.conf │ │ ├── src │ │ │ ├── edge_impulse_zip │ │ │ │ ├── edge-impulse-sdk │ │ │ │ │ ├── cmake │ │ │ │ │ │ ├── utils.cmake │ │ │ │ │ │ └── zephyr │ │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ │ ├── ei_run_classifier.h │ │ │ │ │ └── ei_run_classifier_mock.cpp │ │ │ │ ├── ei_run_classifier_mock.h │ │ │ │ └── ei_test_params.h │ │ │ └── main.cpp │ │ └── testcase.yaml │ ├── gcf_sms │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ ├── hw_id │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── prj.conf │ │ ├── src │ │ │ ├── kconfig_override_ble.h │ │ │ ├── kconfig_override_device_id.h │ │ │ ├── kconfig_override_imei.h │ │ │ ├── kconfig_override_net.h │ │ │ ├── kconfig_override_uuid.h │ │ │ └── main.c │ │ └── testcase.yaml │ ├── hw_unique_key │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ ├── hw_unique_key_tfm │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.txt │ │ ├── create_test_vector.py │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ ├── testcase.yaml │ │ └── write_kmu.py │ ├── location │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── boards │ │ │ └── native_sim.overlay │ │ ├── location_lib_autoconf_ext.h │ │ ├── location_lib_autoconf_ext_agnss.h │ │ ├── prj.conf │ │ ├── src │ │ │ └── location_test.c │ │ └── testcase.yaml │ ├── lte_lc_api │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ │ └── lte_lc_api_test.c │ │ └── testcase.yaml │ ├── lte_lc_pdn │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ ├── stubs │ │ │ └── lte_lc_stubs.c │ │ └── testcase.yaml │ ├── modem_battery │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ ├── modem_info │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ ├── modem_jwt │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ │ └── jwt_test.c │ │ └── testcase.yaml │ ├── modem_key_mgmt │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ ├── nrf_fuel_gauge │ │ ├── CMakeLists.txt │ │ ├── data │ │ │ └── battery_model.inc │ │ ├── prj.conf │ │ ├── src │ │ │ └── nrf_fuel_gauge_test.c │ │ └── testcase.yaml │ ├── nrf_modem_lib │ │ ├── lte_net_if │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ ├── nrf9x_sockets │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── nrf9x_sockets_test.c │ │ │ └── testcase.yaml │ │ ├── nrf_modem_lib_trace │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── testcase.yaml │ │ │ ├── trace_backend_mock.c │ │ │ └── trace_backend_mock.h │ │ └── trace_backends │ │ │ ├── flash │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ └── native_sim.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ │ └── rtt │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ └── main.c │ │ │ └── testcase.yaml │ ├── ntn │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ ├── pcm_mix │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ ├── pcm_stream_channel_modifier │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ ├── qos │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ │ ├── qos_test.c │ │ │ └── vars_internal.h │ │ └── testcase.yaml │ ├── ram_pwrdn │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ ├── sample_rate_converter │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ ├── sfloat │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ ├── sms │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ │ └── sms_test.c │ │ └── testcase.yaml │ ├── tone │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ └── uicc_lwm2m │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ └── main.c │ │ └── testcase.yaml ├── mocks │ ├── CMakeLists.txt │ ├── Kconfig │ ├── nrf_modem_at │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── mock_nrf_modem_at.c │ └── nrf_rpc │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── mock_nrf_rpc_transport.c ├── modules │ ├── lib │ │ └── zcbor │ │ │ ├── cddl │ │ │ └── test.cddl │ │ │ ├── decode │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ │ ├── encode │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ │ └── raw_encode │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ └── main.c │ │ │ └── testcase.yaml │ └── mcuboot │ │ ├── direct_xip │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ ├── sysbuild.conf │ │ ├── sysbuild │ │ │ └── mcuboot.conf │ │ └── testcase.yaml │ │ └── external_flash │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── boards │ │ ├── nrf52840dk_nrf52840.overlay │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ └── thingy53_nrf5340_cpuapp.conf │ │ ├── pm_static_thingy53_nrf5340_cpuapp.yml │ │ ├── prj.conf │ │ ├── src │ │ └── main.c │ │ ├── sysbuild.conf │ │ ├── sysbuild │ │ └── mcuboot │ │ │ ├── app.overlay │ │ │ ├── boards │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ └── thingy53_nrf5340_cpuapp.conf │ │ │ └── prj.conf │ │ └── testcase.yaml ├── nrf5340_audio │ ├── fakes │ │ ├── k_work │ │ │ ├── k_work_fake.c │ │ │ └── k_work_fake.h │ │ ├── lc3_file │ │ │ ├── lc3_file_fake.c │ │ │ ├── lc3_file_fake.h │ │ │ ├── lc3_file_fake_data.c │ │ │ └── lc3_file_fake_data.h │ │ └── sd_card │ │ │ ├── lc3_file_data.c │ │ │ ├── lc3_file_data.h │ │ │ ├── sd_card_fake.c │ │ │ └── sd_card_fake.h │ ├── lc3_file │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ ├── lc3_streamer │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ ├── macros │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ ├── prj.conf │ │ └── testcase.yaml │ ├── sd_card │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── prj.conf │ │ ├── ramdisk.overlay │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ ├── server_store │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ ├── prj.conf │ │ └── testcase.yaml │ └── sw_codec_lc3 │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ ├── prj.conf │ │ ├── readme.txt │ │ └── testcase.yaml ├── psa_crypto │ ├── CMakeLists.txt │ ├── prj.conf │ ├── src │ │ ├── psa_tests_common.c │ │ └── psa_tests_common.h │ ├── testcase.yaml │ └── tests │ │ ├── CMakeLists.txt │ │ ├── test_ikg_identity_key_sign_verify.c │ │ ├── test_ikg_key_derivation.c │ │ ├── test_kmu_use.c │ │ └── test_kmu_write.c ├── samples │ └── bluetooth │ │ ├── io_adapter │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── prj.conf │ │ ├── sample.yaml │ │ └── src │ │ │ └── main.c │ │ └── samples_test_app │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── README.rst │ │ ├── prj.conf │ │ ├── sample.yaml │ │ ├── src │ │ └── main.c │ │ └── sysbuild │ │ └── ipc_radio │ │ └── prj.conf ├── subsys │ ├── app_event_manager │ │ ├── CMakeLists.txt │ │ ├── overlay-event_size.conf │ │ ├── prj.conf │ │ ├── src │ │ │ ├── events │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── data_event.c │ │ │ │ ├── data_event.h │ │ │ │ ├── multicontext_event.c │ │ │ │ ├── multicontext_event.h │ │ │ │ ├── name_style_events.c │ │ │ │ ├── name_style_events.h │ │ │ │ ├── order_event.c │ │ │ │ ├── order_event.h │ │ │ │ ├── sized_events.c │ │ │ │ ├── sized_events.h │ │ │ │ ├── test_events.c │ │ │ │ └── test_events.h │ │ │ ├── main.c │ │ │ ├── modules │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_basic.c │ │ │ │ ├── test_config.h │ │ │ │ ├── test_data.c │ │ │ │ ├── test_multicontext.c │ │ │ │ ├── test_multicontext_config.h │ │ │ │ ├── test_multicontext_handler.c │ │ │ │ ├── test_name_style_sorting.c │ │ │ │ ├── test_oom.c │ │ │ │ └── test_subs.c │ │ │ └── utils │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_event_allocator.c │ │ │ │ └── test_event_allocator.h │ │ └── testcase.yaml │ ├── audio │ │ └── audio_module_template │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ ├── main.c │ │ │ └── template_test.c │ │ │ └── testcase.yaml │ ├── audio_module │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ │ ├── audio_module_test_common.c │ │ │ ├── audio_module_test_common.h │ │ │ ├── audio_module_test_fakes.c │ │ │ ├── audio_module_test_fakes.h │ │ │ ├── bad_param_test.c │ │ │ ├── functional_test.c │ │ │ └── main.c │ │ └── testcase.yaml │ ├── bluetooth │ │ ├── controller │ │ │ ├── CMakeLists.txt │ │ │ ├── nrfx.h │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── hci_cmd_cb_host_buffer_size_test.c │ │ │ └── testcase.yaml │ │ ├── cs_de │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── cs_de_test.c │ │ │ └── testcase.yaml │ │ ├── enocean │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ ├── fast_pair │ │ │ ├── crypto │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── boards │ │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── prj.conf │ │ │ │ ├── prj_psa.conf │ │ │ │ ├── src │ │ │ │ │ └── main.c │ │ │ │ └── testcase.yaml │ │ │ └── storage │ │ │ │ ├── account_key_storage │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── boards │ │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── include │ │ │ │ │ └── storage_mock.h │ │ │ │ ├── prj.conf │ │ │ │ ├── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── settings_mock.c │ │ │ │ │ └── test_corrupted_data.c │ │ │ │ └── testcase.yaml │ │ │ │ ├── common │ │ │ │ ├── include │ │ │ │ │ └── common_utils.h │ │ │ │ └── src │ │ │ │ │ └── common_utils.c │ │ │ │ └── factory_reset │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── boards │ │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── prj.conf │ │ │ │ ├── src │ │ │ │ └── main.c │ │ │ │ └── testcase.yaml │ │ ├── gatt_dm │ │ │ ├── CMakeLists.txt │ │ │ ├── mock │ │ │ │ ├── gatt_discover_mock.c │ │ │ │ └── gatt_discover_mock.h │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ └── mesh │ │ │ ├── light_ctrl │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ └── native_sim.conf │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ │ ├── light_hue │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ └── native_sim.conf │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ │ ├── metadata_extraction │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.sysbuild │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.cmake │ │ │ ├── sysbuild.conf │ │ │ ├── sysbuild_fwid_custom.conf │ │ │ ├── testcase.yaml │ │ │ └── verify_metadata.py │ │ │ ├── models │ │ │ ├── CMakeLists.txt │ │ │ ├── dm.overlay │ │ │ ├── overlay-mesh-emds.conf │ │ │ ├── overlay-mesh-shell.conf │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ │ ├── scheduler_model │ │ │ ├── action_planning │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── boards │ │ │ │ │ └── native_sim.conf │ │ │ │ ├── prj.conf │ │ │ │ ├── src │ │ │ │ │ └── main.c │ │ │ │ └── testcase.yaml │ │ │ ├── common │ │ │ │ ├── sched_test.c │ │ │ │ └── sched_test.h │ │ │ ├── message_validity │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── boards │ │ │ │ │ └── native_sim.conf │ │ │ │ ├── prj.conf │ │ │ │ ├── src │ │ │ │ │ └── main.c │ │ │ │ └── testcase.yaml │ │ │ └── timing │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── boards │ │ │ │ └── native_sim.conf │ │ │ │ ├── prj.conf │ │ │ │ ├── src │ │ │ │ └── main.c │ │ │ │ └── testcase.yaml │ │ │ ├── sensor_subsys │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ └── native_sim.conf │ │ │ ├── prj.conf │ │ │ ├── sensor_types.ld │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ │ ├── silvair_enocean_model │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ └── native_sim.conf │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ │ └── time_model │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ └── native_sim.conf │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ └── main.c │ │ │ └── testcase.yaml │ ├── bootloader │ │ ├── b0_lock_rwx │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── modules │ │ │ │ └── run_from_s1 │ │ │ │ │ └── zephyr │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── module.yml │ │ │ │ │ └── src │ │ │ │ │ └── run_from_s1.c │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.cmake │ │ │ ├── sysbuild.conf │ │ │ ├── sysbuild │ │ │ │ └── mcuboot │ │ │ │ │ └── prj.conf │ │ │ └── testcase.yaml │ │ ├── b0_ram_cleanup │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── modules │ │ │ │ └── b0_cleanup_ram_test_prepare │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── src │ │ │ │ │ └── b0_cleanup_ram_test_prepare.c │ │ │ │ │ └── zephyr │ │ │ │ │ └── module.yml │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_common.dtsi │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.cmake │ │ │ ├── sysbuild.conf │ │ │ ├── sysbuild │ │ │ │ ├── b0.conf │ │ │ │ └── b0.overlay │ │ │ └── testcase.yaml │ │ ├── bl_crypto │ │ │ ├── CMakeLists.txt │ │ │ ├── fw_data.bin │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.conf │ │ │ ├── test_vector.c │ │ │ └── testcase.yaml │ │ ├── bl_validation │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.conf │ │ │ └── testcase.yaml │ │ ├── bl_validation_ff_key │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── ff.pem │ │ │ ├── ff_pub.pem │ │ │ ├── generate_ff_key.py │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.conf │ │ │ └── testcase.yaml │ │ ├── bl_validation_neg │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.conf │ │ │ └── testcase.yaml │ │ ├── bl_validation_unittest │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ ├── boot_chains │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── README.txt │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ │ ├── boot_lock_kmu_keys │ │ │ ├── CMakeLists.txt │ │ │ ├── private_key.pem │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.conf │ │ │ └── testcase.yaml │ │ └── upgrade │ │ │ ├── README.md │ │ │ ├── conftest.py │ │ │ ├── pytest │ │ │ ├── check_lzma_compression.py │ │ │ ├── conftest.py │ │ │ ├── helpers.py │ │ │ ├── imgtool_wrapper.py │ │ │ ├── key_provisioning.py │ │ │ ├── mcuboot_image_utils.py │ │ │ ├── parameters.py │ │ │ ├── required_build.py │ │ │ ├── test_common_provision.py │ │ │ ├── test_direct_xip.py │ │ │ ├── test_downgrade_prevention.py │ │ │ ├── test_downgrade_prevention_nsib.py │ │ │ ├── test_invalid_image.py │ │ │ ├── test_kmu_extra.py │ │ │ ├── test_nrf_compress.py │ │ │ ├── test_serial_recovery.py │ │ │ ├── test_upgrade.py │ │ │ ├── test_upgrade_mcuboot_nsib.py │ │ │ ├── test_upgrade_netcore.py │ │ │ ├── test_upgrade_secondary_slot_issue.py │ │ │ └── upgrade_test_manager.py │ │ │ ├── ref_smp_svr │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_direct_xip.overlay │ │ │ │ └── nrf9160dk_nrf9160_ns.conf │ │ │ ├── prj.conf │ │ │ ├── sysbuild.conf │ │ │ ├── sysbuild │ │ │ │ ├── ipc_radio_direct_xip.overlay │ │ │ │ ├── mcuboot │ │ │ │ │ ├── boards │ │ │ │ │ │ ├── nrf52840dk_nrf52840_larger_mcuboot.conf │ │ │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp_direct_xip.conf │ │ │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp_larger_mcuboot.conf │ │ │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_direct_xip.overlay │ │ │ │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_fprotect.conf │ │ │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_larger_mcuboot.conf │ │ │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_fprotect.conf │ │ │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_larger_mcuboot.conf │ │ │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_direct_xip.conf │ │ │ │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp_larger_mcuboot.conf │ │ │ │ │ └── prj.conf │ │ │ │ └── nrf54h20dk_nrf54h20_memory_map_direct_xip.dtsi │ │ │ └── testcase.yaml │ │ │ ├── ref_smp_svr_ext_flash │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.conf │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.overlay │ │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ ├── nrf9160dk_nrf9160.conf │ │ │ │ ├── nrf9160dk_nrf9160.overlay │ │ │ │ ├── nrf9160dk_nrf9160_ns.conf │ │ │ │ └── nrf9160dk_nrf9160_ns.overlay │ │ │ ├── prj.conf │ │ │ ├── sysbuild.conf │ │ │ ├── sysbuild │ │ │ │ ├── empty_net_core.conf │ │ │ │ └── mcuboot │ │ │ │ │ ├── boards │ │ │ │ │ ├── nrf52840dk_nrf52840.overlay │ │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp_network_core.conf │ │ │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.conf │ │ │ │ │ ├── nrf54l15dk_nrf54l05_cpuapp.overlay │ │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.conf │ │ │ │ │ ├── nrf54l15dk_nrf54l10_cpuapp.overlay │ │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_larger_mcuboot.conf │ │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ │ │ │ ├── nrf9160dk_nrf9160.conf │ │ │ │ │ └── nrf9160dk_nrf9160.overlay │ │ │ │ │ └── prj.conf │ │ │ └── testcase.yaml │ │ │ └── requirements.txt │ ├── caf │ │ ├── sensor_data_aggregator │ │ │ ├── CMakeLists.txt │ │ │ ├── app.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ ├── events │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_events.c │ │ │ │ │ └── test_events.h │ │ │ │ ├── main.c │ │ │ │ └── modules │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── test_basic.c │ │ │ │ │ ├── test_config.h │ │ │ │ │ └── test_data_receiver.c │ │ │ └── testcase.yaml │ │ └── sensor_manager │ │ │ ├── CMakeLists.txt │ │ │ ├── app.overlay │ │ │ ├── configuration │ │ │ └── common │ │ │ │ ├── sensor_manager_def.h │ │ │ │ └── sensor_sim_ctrl_def.h │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ ├── events │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_events.c │ │ │ │ └── test_events.h │ │ │ ├── main.c │ │ │ └── modules │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── sensor_sim_ctrl.c │ │ │ │ └── sensor_sim_ctrl.h │ │ │ └── testcase.yaml │ ├── debug │ │ └── cpu_load │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ └── test_cpu_load.c │ │ │ └── testcase.yaml │ ├── dfu │ │ ├── dfu_extra │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── VERSION │ │ │ ├── boards │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ └── nrf54l15dk_spi_nrfutil_config.json │ │ │ ├── pm_static_nrf54l15dk_nrf54l15_cpuapp.yml │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.cmake │ │ │ ├── sysbuild.conf │ │ │ ├── sysbuild │ │ │ │ └── mcuboot │ │ │ │ │ ├── boards │ │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ │ └── prj.conf │ │ │ └── testcase.yaml │ │ ├── dfu_multi_image │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ ├── dfu_target │ │ │ ├── mcuboot_bootloader │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── prj.conf │ │ │ │ ├── src │ │ │ │ │ └── main.c │ │ │ │ └── testcase.yaml │ │ │ └── smp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── prj.conf │ │ │ │ ├── src │ │ │ │ ├── img_gr_stub.c │ │ │ │ ├── img_gr_stub.h │ │ │ │ ├── main.c │ │ │ │ ├── os_gr_stub.c │ │ │ │ ├── os_gr_stub.h │ │ │ │ ├── pm_config.h │ │ │ │ ├── smp_stub.c │ │ │ │ └── smp_stub.h │ │ │ │ └── testcase.yaml │ │ └── dfu_target_stream │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ ├── native_sim.conf │ │ │ ├── native_sim_64.conf │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ └── nrf9160dk_nrf9160_ns.conf │ │ │ ├── overlay-store-progress.conf │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ └── main.c │ │ │ └── testcase.yaml │ ├── emds │ │ ├── emds_api │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ └── nrf52840dk_nrf52840.conf │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ └── emds_flash │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ └── nrf52840dk_nrf52840.conf │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ └── main.c │ │ │ └── testcase.yaml │ ├── event_manager_proxy │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── Kconfig.sysbuild │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_icmsg.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_icmsg.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_icmsg.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_icmsg.overlay │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuapp_icmsg.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp_icmsg.overlay │ │ ├── common_config │ │ │ ├── CMakeLists.txt │ │ │ └── test_config.h │ │ ├── common_events │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── data_events.c │ │ │ ├── data_events.h │ │ │ ├── simple_events.c │ │ │ ├── simple_events.h │ │ │ ├── test_events.c │ │ │ └── test_events.h │ │ ├── modules │ │ │ ├── CMakeLists.txt │ │ │ ├── common_utils.c │ │ │ ├── common_utils.h │ │ │ ├── test_utils.c │ │ │ └── test_utils.h │ │ ├── prj.conf │ │ ├── prj_icmsg.conf │ │ ├── remote │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── boards │ │ │ │ ├── nrf5340dk_nrf5340_cpunet_icmsg.overlay │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuppr_icmsg.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuppr_icmsg.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuflpr_icmsg.overlay │ │ │ │ ├── nrf54lm20dk_nrf54lm20a_cpuflpr_icmsg.overlay │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuflpr_icmsg.conf │ │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuflpr_icmsg.overlay │ │ │ ├── main.c │ │ │ ├── prj.conf │ │ │ └── prj_icmsg.conf │ │ ├── src │ │ │ ├── data.c │ │ │ ├── simple.c │ │ │ └── test_init.c │ │ ├── sysbuild.cmake │ │ └── testcase.yaml │ ├── fw_info │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ ├── sysbuild.conf │ │ └── testcase.yaml │ ├── ipc │ │ └── ipc_latency │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ ├── nrf5340dk_nrf5340_cpuapp_icmsg.conf │ │ │ ├── nrf5340dk_nrf5340_cpuapp_icmsg.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp_icmsg.conf │ │ │ └── nrf54h20dk_nrf54h20_cpuapp_icmsg.overlay │ │ │ ├── prj.conf │ │ │ ├── remote │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ ├── nrf5340dk_nrf5340_cpunet_icmsg.overlay │ │ │ │ └── nrf54h20dk_nrf54h20_cpurad_icmsg.overlay │ │ │ ├── prj.conf │ │ │ └── src │ │ │ │ └── main.c │ │ │ ├── src │ │ │ └── main.c │ │ │ ├── sysbuild.cmake │ │ │ └── testcase.yaml │ ├── kmu │ │ ├── hello_for_kmu │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── sysbuild.conf │ │ │ ├── sysbuild │ │ │ │ └── mcuboot.conf │ │ │ └── testcase.yaml │ │ ├── keys │ │ │ ├── root-ed25519-1.pem │ │ │ ├── root-ed25519-2.pem │ │ │ └── root-ed25519-w.pem │ │ ├── pytest │ │ │ ├── common.py │ │ │ ├── conftest.py │ │ │ ├── test_kmu_provision.py │ │ │ └── test_kmu_verify_keys_in_app.py │ │ └── verify_west_ncs_provision │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ └── main.c │ │ │ └── testcase.yaml │ ├── mpsl │ │ └── pm │ │ │ ├── CMakeLists.txt │ │ │ ├── pm_test.c │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ ├── net │ │ ├── lib │ │ │ ├── aws_fota │ │ │ │ └── aws_fota_json │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── boards │ │ │ │ │ └── native_sim.conf │ │ │ │ │ ├── prj.conf │ │ │ │ │ ├── src │ │ │ │ │ └── main.c │ │ │ │ │ └── testcase.yaml │ │ │ ├── aws_iot │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── prj.conf │ │ │ │ ├── src │ │ │ │ │ ├── aws_iot_test.c │ │ │ │ │ └── redefinitions.h │ │ │ │ └── testcase.yaml │ │ │ ├── aws_jobs │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── prj.conf │ │ │ │ ├── src │ │ │ │ │ └── main.c │ │ │ │ └── testcase.yaml │ │ │ ├── azure_iot_hub │ │ │ │ ├── dps │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── boards │ │ │ │ │ │ └── qemu_cortex_m3.conf │ │ │ │ │ ├── prj.conf │ │ │ │ │ ├── src │ │ │ │ │ │ └── azure_iot_hub_dps_test.c │ │ │ │ │ └── testcase.yaml │ │ │ │ └── iot_hub │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── boards │ │ │ │ │ └── qemu_cortex_m3.conf │ │ │ │ │ ├── prj.conf │ │ │ │ │ ├── src │ │ │ │ │ └── azure_iot_hub_test.c │ │ │ │ │ └── testcase.yaml │ │ │ ├── downloader │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── prj.conf │ │ │ │ ├── src │ │ │ │ │ └── main.c │ │ │ │ └── testcase.yaml │ │ │ ├── fota_download │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── boards │ │ │ │ │ ├── nrf9160dk_nrf9160.conf │ │ │ │ │ └── qemu_x86.conf │ │ │ │ ├── pm_config.h │ │ │ │ ├── prj.conf │ │ │ │ ├── src │ │ │ │ │ ├── test_fota_download.c │ │ │ │ │ ├── test_fota_download_common.h │ │ │ │ │ └── test_parse_dual_resource_locator.c │ │ │ │ └── testcase.yaml │ │ │ ├── lwm2m_client_utils │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── boards │ │ │ │ │ └── native_sim.overlay │ │ │ │ ├── prj.conf │ │ │ │ ├── src │ │ │ │ │ ├── cellconn.c │ │ │ │ │ ├── con_management.c │ │ │ │ │ ├── conneval.c │ │ │ │ │ ├── connmon.c │ │ │ │ │ ├── device.c │ │ │ │ │ ├── dummy_wlan.c │ │ │ │ │ ├── iterables.ld │ │ │ │ │ ├── location_assistance.c │ │ │ │ │ ├── notification.c │ │ │ │ │ ├── pm_config.h │ │ │ │ │ ├── security.c │ │ │ │ │ ├── signal_meas_info.c │ │ │ │ │ ├── stubs.c │ │ │ │ │ ├── stubs.h │ │ │ │ │ └── wifi_ap_scanner.c │ │ │ │ └── testcase.yaml │ │ │ ├── lwm2m_fota_utils │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── prj.conf │ │ │ │ ├── prj_obj5.conf │ │ │ │ ├── src │ │ │ │ │ ├── firmware.c │ │ │ │ │ ├── iterables.ld │ │ │ │ │ ├── pm_config.h │ │ │ │ │ ├── stubs.c │ │ │ │ │ └── stubs.h │ │ │ │ └── testcase.yaml │ │ │ ├── mcumgr_smp_client │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── prj.conf │ │ │ │ ├── src │ │ │ │ │ ├── main.c │ │ │ │ │ └── nrfx.h │ │ │ │ └── testcase.yaml │ │ │ ├── mqtt_helper │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── prj.conf │ │ │ │ ├── src │ │ │ │ │ └── mqtt_helper_test.c │ │ │ │ └── testcase.yaml │ │ │ ├── nrf_cloud │ │ │ │ ├── client_id │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── prj.conf │ │ │ │ │ ├── src │ │ │ │ │ │ ├── fakes.h │ │ │ │ │ │ └── main.c │ │ │ │ │ └── testcase.yaml │ │ │ │ ├── cloud │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── boards │ │ │ │ │ │ └── qemu_cortex_m3.conf │ │ │ │ │ ├── prj.conf │ │ │ │ │ ├── src │ │ │ │ │ │ ├── fakes.h │ │ │ │ │ │ └── main.c │ │ │ │ │ └── testcase.yaml │ │ │ │ └── fota_common │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── boards │ │ │ │ │ └── qemu_cortex_m3.conf │ │ │ │ │ ├── prj.conf │ │ │ │ │ ├── src │ │ │ │ │ ├── fakes.h │ │ │ │ │ ├── fmfu.c │ │ │ │ │ └── main.c │ │ │ │ │ └── testcase.yaml │ │ │ ├── nrf_provisioning │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── include │ │ │ │ │ ├── nrf_modem_at.h │ │ │ │ │ └── zephyr │ │ │ │ │ │ └── net │ │ │ │ │ │ └── net_mgmt.h │ │ │ │ ├── prj.conf │ │ │ │ ├── prj_coap.conf │ │ │ │ ├── prj_jwt.conf │ │ │ │ ├── prj_scheduled.conf │ │ │ │ ├── src │ │ │ │ │ ├── coap.c │ │ │ │ │ ├── http_jwt.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── net_mgmt_mock.c │ │ │ │ │ └── scheduled.c │ │ │ │ └── testcase.yaml │ │ │ └── tls_credentials_nrf_modem │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.c │ │ │ │ ├── prj.conf │ │ │ │ └── testcase.yaml │ │ └── openthread │ │ │ └── rpc │ │ │ ├── client │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ ├── coap_suite.c │ │ │ │ ├── dataset_suite.c │ │ │ │ ├── dns_client_suite.c │ │ │ │ ├── instance_suite.c │ │ │ │ ├── ip6_suite.c │ │ │ │ ├── link_raw_suite.c │ │ │ │ ├── link_suite.c │ │ │ │ ├── meshdiag_suite.c │ │ │ │ ├── mocks.c │ │ │ │ ├── mocks.h │ │ │ │ ├── netdata_suite.c │ │ │ │ ├── netdiag_suite.c │ │ │ │ ├── srp_client_suite.c │ │ │ │ ├── thread_suite.c │ │ │ │ └── udp_suite.c │ │ │ └── testcase.yaml │ │ │ ├── common │ │ │ ├── nrf_rpc_single_thread.c │ │ │ └── test_rpc_env.h │ │ │ └── server │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ ├── coap_suite.c │ │ │ ├── common_fakes.c │ │ │ ├── common_fakes.h │ │ │ ├── dataset_suite.c │ │ │ ├── dns_client_suite.c │ │ │ ├── instance_suite.c │ │ │ ├── ip6_suite.c │ │ │ ├── link_raw_suite.c │ │ │ ├── link_suite.c │ │ │ ├── meshdiag_suite.c │ │ │ ├── message_suite.c │ │ │ ├── mocks.c │ │ │ ├── netdata_suite.c │ │ │ ├── netdiag_suite.c │ │ │ ├── srp_client_suite.c │ │ │ ├── thread_suite.c │ │ │ └── udp_suite.c │ │ │ └── testcase.yaml │ ├── nfc │ │ └── rpc │ │ │ ├── client │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ ├── t2t_suite.c │ │ │ │ └── t4t_suite.c │ │ │ └── testcase.yaml │ │ │ ├── common │ │ │ ├── nrf_rpc_single_thread.c │ │ │ └── test_rpc_env.h │ │ │ └── server │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ ├── t2t_suite.c │ │ │ └── t4t_suite.c │ │ │ └── testcase.yaml │ ├── nrf_compress │ │ └── decompression │ │ │ ├── arm_thumb │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ │ ├── lzma │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ │ └── mcuboot_update │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── app.overlay │ │ │ ├── boards │ │ │ └── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── compressed_app │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ └── src │ │ │ │ └── main.c │ │ │ ├── modified_signing.cmake │ │ │ ├── pm_static_nrf52840dk_nrf52840.yml │ │ │ ├── pm_static_nrf5340dk_nrf5340_cpuapp.yml │ │ │ ├── pm_static_nrf54l15dk_nrf54l15_cpuapp.yml │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ └── main.c │ │ │ ├── sysbuild.cmake │ │ │ ├── sysbuild.conf │ │ │ ├── sysbuild │ │ │ └── mcuboot │ │ │ │ ├── app.overlay │ │ │ │ ├── boards │ │ │ │ ├── nrf52840dk_nrf52840.conf │ │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.conf │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ │ └── prj.conf │ │ │ └── testcase.yaml │ ├── nrf_profiler │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ ├── nrf_rpc │ │ └── rpc_utils │ │ │ ├── client │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── rpc_utils_suite.c │ │ │ └── testcase.yaml │ │ │ ├── common │ │ │ ├── nrf_rpc_single_thread.c │ │ │ └── test_rpc_env.h │ │ │ └── server │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ └── rpc_utils_suite.c │ │ │ └── testcase.yaml │ ├── nrf_security │ │ └── psa_core_lite │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.conf │ │ │ ├── overlays │ │ │ ├── ecdsa.conf │ │ │ ├── eddsa.conf │ │ │ ├── encrypt.conf │ │ │ ├── lite.conf │ │ │ └── rng.conf │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ └── main.c │ │ │ └── testcase.yaml │ ├── partition_manager │ │ ├── region │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig.sysbuild │ │ │ ├── boards │ │ │ │ └── nrf52840dk_nrf52840.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── testcase.yaml │ │ └── static_pm_file │ │ │ ├── CMakeLists.txt │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ └── main.c │ │ │ ├── sysbuild.conf │ │ │ ├── test_file.yml │ │ │ └── testcase.yaml │ ├── pcd │ │ ├── CMakeLists.txt │ │ ├── Kconfig.sysbuild │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ ├── sysbuild.cmake │ │ ├── sysbuild.conf │ │ ├── sysbuild │ │ │ └── hello_world │ │ │ │ └── prj.conf │ │ └── testcase.yaml │ ├── rtt │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── pytest │ │ │ └── test_rtt.py │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ ├── swo │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── pytest │ │ │ ├── test_swo.py │ │ │ └── traceport_swo.script │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ └── usb │ │ └── negotiated_speed │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── boards │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ └── nrf54lm20dk_nrf54lm20a_cpuapp.overlay │ │ ├── prj.conf │ │ ├── pytest │ │ └── test_usb_speed.py │ │ └── testcase.yaml ├── tfm │ ├── secure_services │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ ├── tfm_psa_test │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.overlay │ │ │ ├── nrf54l15dk_nrf54l15_cpuapp_ns.overlay │ │ │ ├── nrf9151dk_nrf9151_ns.overlay │ │ │ ├── nrf9160dk_nrf9160_ns.overlay │ │ │ └── nrf9161dk_nrf9161_ns.overlay │ │ ├── prj.conf │ │ ├── src │ │ │ └── main.c │ │ └── testcase.yaml │ └── tfm_regression_test │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── boards │ │ ├── nrf5340dk_nrf5340_cpuapp_ns.overlay │ │ ├── nrf54l15dk_nrf54l15_cpuapp_ns.conf │ │ ├── nrf54l15dk_nrf54l15_cpuapp_ns.overlay │ │ ├── nrf9151dk_nrf9151_ns.overlay │ │ ├── nrf9160dk_nrf9160_ns.overlay │ │ └── nrf9161dk_nrf9161_ns.overlay │ │ ├── prj.conf │ │ ├── src │ │ └── main.c │ │ └── testcase.yaml ├── unity │ ├── CMakeLists.txt │ ├── Kconfig │ ├── example_test │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── prj.conf │ │ ├── src │ │ │ ├── example_test.c │ │ │ ├── example_test.h │ │ │ ├── foo │ │ │ │ ├── foo.c │ │ │ │ └── foo.h │ │ │ └── uut │ │ │ │ ├── uut.c │ │ │ │ └── uut.h │ │ └── testcase.yaml │ ├── src │ │ └── generic_teardown.c │ ├── unity_cfg.yaml.template │ ├── unity_config.h │ └── wrap_test │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ ├── src │ │ ├── call │ │ │ ├── call.c │ │ │ └── call.h │ │ ├── test_code │ │ │ ├── .clang-format │ │ │ ├── test_code.c │ │ │ └── test_code.h │ │ └── wrap_test.c │ │ └── testcase.yaml └── zephyr │ ├── boards │ └── nrf │ │ ├── comp │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.txt │ │ ├── boards │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.conf │ │ │ └── nrf7120pdk_nrf7120_cpuapp.overlay │ │ ├── prj.conf │ │ └── testcase.yaml │ │ ├── hwinfo │ │ └── reset_cause │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ └── nrf7120pdk_nrf7120_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ │ ├── i2c │ │ └── i2c_slave │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns.overlay │ │ │ └── nrf7120pdk_nrf7120_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ │ └── qdec │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ ├── boards │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ ├── nrf7120pdk_nrf7120_common.dtsi │ │ └── nrf7120pdk_nrf7120_cpuapp.overlay │ │ ├── dts │ │ └── bindings │ │ │ └── test-qdec-loopback.yaml │ │ ├── prj.conf │ │ └── testcase.yaml │ ├── drivers │ ├── adc │ │ ├── adc_accuracy_test │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp_ns.overlay │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ │ ├── adc_api │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp_ns.overlay │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ │ └── adc_error_cases │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ ├── audio │ │ └── dmic_api │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ ├── clock_control │ │ ├── clock_control_api │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.conf │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns.conf │ │ │ │ └── nrf7120pdk_nrf7120_cpuapp.conf │ │ │ ├── nrf_lfclk_rc.conf │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ │ ├── nrf_clock_calibration │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── README.txt │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ │ ├── nrf_clock_control │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ │ ├── nrf_lf_clock_start │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ │ └── onoff │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ ├── comparator │ │ └── gpio_loopback │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ ├── nrf54lv10dk_nrf54lv10a_common.dtsi │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns.overlay │ │ │ └── nrf7120pdk_nrf7120_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── socs │ │ │ ├── nrf54lv10a_cpuapp_nrf_comp.overlay │ │ │ ├── nrf54lv10a_cpuapp_nrf_lpcomp.overlay │ │ │ ├── nrf54lv10a_cpuapp_ns_nrf_comp.overlay │ │ │ ├── nrf54lv10a_cpuapp_ns_nrf_lpcomp.overlay │ │ │ ├── nrf7120_cpuapp_nrf_comp.overlay │ │ │ └── nrf7120_cpuapp_nrf_lpcomp.overlay │ │ │ └── testcase.yaml │ ├── counter │ │ └── counter_basic_api │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuflpr.overlay │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.overlay │ │ │ └── nrf7120pdk_nrf7120_cpuapp_emu.overlay │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ ├── flash │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── boards │ │ │ │ └── nrf54l15dk_nrf54l15_cpuapp_sqspi.overlay │ │ │ ├── prj.conf │ │ │ ├── single.overlay │ │ │ ├── sysbuild.conf │ │ │ └── testcase.yaml │ │ ├── negative_tests │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── prj.conf │ │ │ ├── sysbuild.conf │ │ │ └── testcase.yaml │ │ └── negative_tests_nrf7120 │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ └── main.c │ │ │ ├── sysbuild.conf │ │ │ └── testcase.yaml │ ├── gpio │ │ └── gpio_basic_api │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.conf │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_common.dtsi │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.conf │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.overlay │ │ │ ├── nrf7120pdk_nrf7120_cpuflpr .overlay │ │ │ └── nrf7120pdk_nrf7120_cpuflpr_xip.overlay │ │ │ ├── dts │ │ │ └── bindings │ │ │ │ └── test-gpio-basic-api.yaml │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ ├── i2c │ │ ├── i2c_bme688 │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── README.txt │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ │ ├── i2c_nrfx_twim │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.conf │ │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ │ └── nrf7120pdk_nrf7120_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ │ └── i2c_target_api │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.conf │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns.conf │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns.overlay │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.conf │ │ │ └── nrf7120pdk_nrf7120_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ ├── i2s │ │ ├── i2s_additional │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ │ └── nrf7120pdk_nrf7120_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ │ ├── i2s_api │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.overlay │ │ │ │ └── tdm_audiopll.overlay │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ │ └── i2s_speed │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ ├── nrf54h20dk_nrf54h20_cpuapp.overlay │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.overlay │ │ │ └── tdm_audiopll.overlay │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ ├── mspi │ │ ├── api │ │ │ ├── CMakeLists.txt │ │ │ ├── boards │ │ │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ ├── sysbuild.conf │ │ │ └── testcase.yaml │ │ └── controller_peripheral │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ └── nrf54l15dk_spis.overlay │ │ │ ├── prj.conf │ │ │ ├── src │ │ │ └── main.c │ │ │ ├── sysbuild.conf │ │ │ └── testcase.yaml │ ├── pwm │ │ └── pwm_gpio_loopback │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.conf │ │ │ └── nrf7120pdk_nrf7120_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ ├── retained_mem │ │ └── api │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.conf │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ ├── sensor │ │ └── temp_sensor │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns.overlay │ │ │ └── nrf7120pdk_nrf7120_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ ├── spi │ │ ├── dt_spec │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── app.overlay │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ │ ├── spi_controller_peripheral │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns.conf │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns.overlay │ │ │ │ └── nrf7120pdk_nrf7120_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ │ ├── spi_error_cases │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ │ └── nrf7120pdk_nrf7120_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ │ └── spi_loopback │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns.overlay │ │ │ └── nrf7120pdk_nrf7120_cpuapp.overlay │ │ │ ├── dts │ │ │ └── bindings │ │ │ │ ├── test-spi-loopback-fast.yaml │ │ │ │ └── test-spi-loopback-slow.yaml │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ ├── timer │ │ └── nrf_grtc_timer │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ ├── uart │ │ ├── uart_async_api │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_common.dtsi │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns.conf │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns.overlay │ │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.conf │ │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.overlay │ │ │ │ └── nrf7120pdk_nrf7120_cpuflpr.overlay │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ │ ├── uart_elementary │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp_dual_uart.overlay │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_common.dtsi │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuflpr.overlay │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_dual_uart.overlay │ │ │ │ ├── nrf7120pdk_nrf7120_cpuapp.overlay │ │ │ │ ├── nrf7120pdk_nrf7120_cpuapp_dual_uart.overlay │ │ │ │ ├── nrf7120pdk_nrf7120_cpuflpr.overlay │ │ │ │ └── nrf7120pdk_nrf7120_cpuflpr_dual_uart.overlay │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ │ ├── uart_errors │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ │ └── nrf7120pdk_nrf7120_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ │ ├── uart_mix_fifo_poll │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ │ └── nrf7120pdk_nrf7120_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ │ └── uart_pm │ │ │ ├── CMakeLists.txt │ │ │ ├── README.txt │ │ │ ├── boards │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ └── nrf7120pdk_nrf7120_cpuapp.overlay │ │ │ ├── prj.conf │ │ │ └── testcase.yaml │ └── watchdog │ │ ├── wdt_basic_api │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ ├── boards │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp_ns.overlay │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuflpr.overlay │ │ ├── prj.conf │ │ └── testcase.yaml │ │ ├── wdt_error_cases │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ ├── boards │ │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ ├── prj.conf │ │ └── testcase.yaml │ │ └── wdt_variables │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ ├── boards │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.overlay │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.overlay │ │ └── nrf54lv10dk_nrf54lv10a_cpuflpr.overlay │ │ ├── prj.conf │ │ └── testcase.yaml │ ├── kernel │ └── timer │ │ └── timer_behavior │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── README.txt │ │ ├── boards │ │ ├── nrf54ls05dk_nrf54ls05b_cpuapp.conf │ │ ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf │ │ └── nrf54lv10dk_nrf54lv10a_cpuapp_ns.conf │ │ ├── prj.conf │ │ └── testcase.yaml │ └── subsys │ ├── secure_storage │ └── psa │ │ └── its │ │ ├── CMakeLists.txt │ │ ├── prj.conf │ │ └── testcase.yaml │ └── settings │ └── performance │ ├── CMakeLists.txt │ ├── README.txt │ ├── prj.conf │ └── testcase.yaml ├── west-test.yml ├── west.yml └── zephyr └── module.yml /.checkpatch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/.checkpatch.conf -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/codeql/codeql-actions-config.yml: -------------------------------------------------------------------------------- 1 | paths: 2 | - .github 3 | -------------------------------------------------------------------------------- /.github/codeql/codeql-js-config.yml: -------------------------------------------------------------------------------- 1 | paths: 2 | - doc 3 | -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/.github/mergify.yml -------------------------------------------------------------------------------- /.github/test-spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/.github/test-spec.yml -------------------------------------------------------------------------------- /.github/workflows/dnm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/.github/workflows/dnm.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/.gitlint -------------------------------------------------------------------------------- /.ruff-excludes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/.ruff-excludes.toml -------------------------------------------------------------------------------- /.ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/.ruff.toml -------------------------------------------------------------------------------- /.sonarcloud.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/.sonarcloud.properties -------------------------------------------------------------------------------- /.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/.vale.ini -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /Kconfig.nrf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/Kconfig.nrf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/README.rst -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 3.1.99 2 | -------------------------------------------------------------------------------- /applications/hpf/gpio/prj.conf: -------------------------------------------------------------------------------- 1 | CONFIG_MBOX=y 2 | -------------------------------------------------------------------------------- /applications/hpf/hpf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/applications/hpf/hpf.rst -------------------------------------------------------------------------------- /applications/hpf/mspi/sysbuild.conf: -------------------------------------------------------------------------------- 1 | SB_CONFIG_PARTITION_MANAGER=n 2 | -------------------------------------------------------------------------------- /boards/deprecated.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/boards/deprecated.cmake -------------------------------------------------------------------------------- /boards/nordic/nrf52840gmouse/nrf52840gmouse_nrf52840_defconfig: -------------------------------------------------------------------------------- 1 | # Enable MPU 2 | CONFIG_ARM_MPU=y 3 | -------------------------------------------------------------------------------- /boards/nordic/nrf52dmouse/nrf52dmouse_nrf52832_defconfig: -------------------------------------------------------------------------------- 1 | # Enable MPU 2 | CONFIG_ARM_MPU=y 3 | -------------------------------------------------------------------------------- /boards/nordic/nrf52kbd/nrf52kbd_nrf52832_defconfig: -------------------------------------------------------------------------------- 1 | # Enable MPU 2 | CONFIG_ARM_MPU=y 3 | -------------------------------------------------------------------------------- /cmake/boilerplate.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/cmake/boilerplate.cmake -------------------------------------------------------------------------------- /cmake/commit.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/cmake/commit.h.in -------------------------------------------------------------------------------- /cmake/dfu_extra.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/cmake/dfu_extra.cmake -------------------------------------------------------------------------------- /cmake/dfu_multi_image.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/cmake/dfu_multi_image.cmake -------------------------------------------------------------------------------- /cmake/extensions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/cmake/extensions.cmake -------------------------------------------------------------------------------- /cmake/fw_zip.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/cmake/fw_zip.cmake -------------------------------------------------------------------------------- /cmake/gen_commit_h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/cmake/gen_commit_h.cmake -------------------------------------------------------------------------------- /cmake/hpf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/cmake/hpf.cmake -------------------------------------------------------------------------------- /cmake/hpf_asm_check.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/cmake/hpf_asm_check.cmake -------------------------------------------------------------------------------- /cmake/hpf_asm_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/cmake/hpf_asm_install.cmake -------------------------------------------------------------------------------- /cmake/modules/kconfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/cmake/modules/kconfig.cmake -------------------------------------------------------------------------------- /cmake/sysbuild/hpf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/cmake/sysbuild/hpf.cmake -------------------------------------------------------------------------------- /cmake/sysbuild/sign.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/cmake/sysbuild/sign.cmake -------------------------------------------------------------------------------- /cmake/sysbuild/zip.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/cmake/sysbuild/zip.cmake -------------------------------------------------------------------------------- /cmake/version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/cmake/version.cmake -------------------------------------------------------------------------------- /cmake/version_app.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/cmake/version_app.cmake -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/_doxygen/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/_doxygen/header.html -------------------------------------------------------------------------------- /doc/_doxygen/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/_doxygen/logo.png -------------------------------------------------------------------------------- /doc/_static/css/kconfig.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/_static/css/kconfig.css -------------------------------------------------------------------------------- /doc/_static/css/matter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/_static/css/matter.css -------------------------------------------------------------------------------- /doc/_static/css/nrf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/_static/css/nrf.css -------------------------------------------------------------------------------- /doc/_static/css/nrfxlib.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/_static/css/nrfxlib.css -------------------------------------------------------------------------------- /doc/_static/css/tfm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/_static/css/tfm.css -------------------------------------------------------------------------------- /doc/_static/css/zephyr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/_static/css/zephyr.css -------------------------------------------------------------------------------- /doc/_static/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/_static/html/index.html -------------------------------------------------------------------------------- /doc/_utils/redirects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/_utils/redirects.py -------------------------------------------------------------------------------- /doc/_utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/_utils/utils.py -------------------------------------------------------------------------------- /doc/_zoomin/footer_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/_zoomin/footer_patch.py -------------------------------------------------------------------------------- /doc/_zoomin/ncs.tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/_zoomin/ncs.tags.yml -------------------------------------------------------------------------------- /doc/internal/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/internal/conf.py -------------------------------------------------------------------------------- /doc/kconfig/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/kconfig/conf.py -------------------------------------------------------------------------------- /doc/kconfig/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/kconfig/index.rst -------------------------------------------------------------------------------- /doc/kconfig/regex.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/kconfig/regex.rst -------------------------------------------------------------------------------- /doc/matter/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/matter/conf.py -------------------------------------------------------------------------------- /doc/matter/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/matter/index.rst -------------------------------------------------------------------------------- /doc/mcuboot/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/mcuboot/conf.py -------------------------------------------------------------------------------- /doc/mcuboot/index-ncs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/mcuboot/index-ncs.rst -------------------------------------------------------------------------------- /doc/mcuboot/links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/mcuboot/links.txt -------------------------------------------------------------------------------- /doc/mcuboot/readme-ncs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/mcuboot/readme-ncs.rst -------------------------------------------------------------------------------- /doc/mcuboot/shortcuts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/mcuboot/shortcuts.txt -------------------------------------------------------------------------------- /doc/mcuboot/wrapper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/mcuboot/wrapper.rst -------------------------------------------------------------------------------- /doc/nrf/404.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/404.rst -------------------------------------------------------------------------------- /doc/nrf/app_dev.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/app_dev.rst -------------------------------------------------------------------------------- /doc/nrf/applications.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/applications.rst -------------------------------------------------------------------------------- /doc/nrf/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/conf.py -------------------------------------------------------------------------------- /doc/nrf/drivers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/drivers.rst -------------------------------------------------------------------------------- /doc/nrf/drivers/bh1749.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/drivers/bh1749.rst -------------------------------------------------------------------------------- /doc/nrf/drivers/eth_rtt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/drivers/eth_rtt.rst -------------------------------------------------------------------------------- /doc/nrf/drivers/paw3212.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/drivers/paw3212.rst -------------------------------------------------------------------------------- /doc/nrf/drivers/pmw3360.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/drivers/pmw3360.rst -------------------------------------------------------------------------------- /doc/nrf/drivers/wifi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/drivers/wifi.rst -------------------------------------------------------------------------------- /doc/nrf/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/glossary.rst -------------------------------------------------------------------------------- /doc/nrf/gsg_guides.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/gsg_guides.rst -------------------------------------------------------------------------------- /doc/nrf/images/DevZone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/images/DevZone.svg -------------------------------------------------------------------------------- /doc/nrf/images/doc_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/images/doc_icon.svg -------------------------------------------------------------------------------- /doc/nrf/images/putty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/images/putty.svg -------------------------------------------------------------------------------- /doc/nrf/images/realterm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/images/realterm.png -------------------------------------------------------------------------------- /doc/nrf/includes/tfm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/includes/tfm.txt -------------------------------------------------------------------------------- /doc/nrf/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/index.rst -------------------------------------------------------------------------------- /doc/nrf/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/installation.rst -------------------------------------------------------------------------------- /doc/nrf/integrations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/integrations.rst -------------------------------------------------------------------------------- /doc/nrf/libraries/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/libraries/index.rst -------------------------------------------------------------------------------- /doc/nrf/links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/links.txt -------------------------------------------------------------------------------- /doc/nrf/nrf.doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/nrf.doxyfile.in -------------------------------------------------------------------------------- /doc/nrf/protocols.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/protocols.rst -------------------------------------------------------------------------------- /doc/nrf/samples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/samples.rst -------------------------------------------------------------------------------- /doc/nrf/samples/bl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/samples/bl.rst -------------------------------------------------------------------------------- /doc/nrf/samples/crypto.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/samples/crypto.rst -------------------------------------------------------------------------------- /doc/nrf/samples/debug.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/samples/debug.rst -------------------------------------------------------------------------------- /doc/nrf/samples/dect.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/samples/dect.rst -------------------------------------------------------------------------------- /doc/nrf/samples/dfu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/samples/dfu.rst -------------------------------------------------------------------------------- /doc/nrf/samples/edge.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/samples/edge.rst -------------------------------------------------------------------------------- /doc/nrf/samples/esb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/samples/esb.rst -------------------------------------------------------------------------------- /doc/nrf/samples/gazell.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/samples/gazell.rst -------------------------------------------------------------------------------- /doc/nrf/samples/keys.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/samples/keys.rst -------------------------------------------------------------------------------- /doc/nrf/samples/matter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/samples/matter.rst -------------------------------------------------------------------------------- /doc/nrf/samples/mesh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/samples/mesh.rst -------------------------------------------------------------------------------- /doc/nrf/samples/net.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/samples/net.rst -------------------------------------------------------------------------------- /doc/nrf/samples/nfc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/samples/nfc.rst -------------------------------------------------------------------------------- /doc/nrf/samples/nrf5340.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/samples/nrf5340.rst -------------------------------------------------------------------------------- /doc/nrf/samples/other.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/samples/other.rst -------------------------------------------------------------------------------- /doc/nrf/samples/pmic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/samples/pmic.rst -------------------------------------------------------------------------------- /doc/nrf/samples/sensor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/samples/sensor.rst -------------------------------------------------------------------------------- /doc/nrf/samples/tfm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/samples/tfm.rst -------------------------------------------------------------------------------- /doc/nrf/samples/thread.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/samples/thread.rst -------------------------------------------------------------------------------- /doc/nrf/samples/wifi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/samples/wifi.rst -------------------------------------------------------------------------------- /doc/nrf/samples/zigbee.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/samples/zigbee.rst -------------------------------------------------------------------------------- /doc/nrf/scripts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/scripts.rst -------------------------------------------------------------------------------- /doc/nrf/security.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/security.rst -------------------------------------------------------------------------------- /doc/nrf/shortcuts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrf/shortcuts.txt -------------------------------------------------------------------------------- /doc/nrfx/nrfx.doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrfx/nrfx.doxyfile.in -------------------------------------------------------------------------------- /doc/nrfxlib/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/nrfxlib/conf.py -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/tfm/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/tfm/conf.py -------------------------------------------------------------------------------- /doc/tfm/known-warnings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/tfm/known-warnings.txt -------------------------------------------------------------------------------- /doc/tfm/wrapper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/tfm/wrapper.rst -------------------------------------------------------------------------------- /doc/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/versions.json -------------------------------------------------------------------------------- /doc/wifi/wifi.doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/wifi/wifi.doxyfile.in -------------------------------------------------------------------------------- /doc/zephyr/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/doc/zephyr/conf.py -------------------------------------------------------------------------------- /drivers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/drivers/CMakeLists.txt -------------------------------------------------------------------------------- /drivers/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/drivers/Kconfig -------------------------------------------------------------------------------- /drivers/bluetooth/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/drivers/bluetooth/Kconfig -------------------------------------------------------------------------------- /drivers/entropy/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/drivers/entropy/Kconfig -------------------------------------------------------------------------------- /drivers/flash/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/drivers/flash/Kconfig -------------------------------------------------------------------------------- /drivers/gpio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/drivers/gpio/CMakeLists.txt -------------------------------------------------------------------------------- /drivers/gpio/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/drivers/gpio/Kconfig -------------------------------------------------------------------------------- /drivers/gpio/gpio_hpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/drivers/gpio/gpio_hpf.c -------------------------------------------------------------------------------- /drivers/gpio/gpio_hpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/drivers/gpio/gpio_hpf.h -------------------------------------------------------------------------------- /drivers/hw_cc3xx/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/drivers/hw_cc3xx/Kconfig -------------------------------------------------------------------------------- /drivers/hw_cc3xx/hw_cc3xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/drivers/hw_cc3xx/hw_cc3xx.c -------------------------------------------------------------------------------- /drivers/mpsl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/drivers/mpsl/CMakeLists.txt -------------------------------------------------------------------------------- /drivers/mpsl/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/drivers/mpsl/Kconfig -------------------------------------------------------------------------------- /drivers/mspi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/drivers/mspi/CMakeLists.txt -------------------------------------------------------------------------------- /drivers/mspi/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/drivers/mspi/Kconfig -------------------------------------------------------------------------------- /drivers/mspi/Kconfig.hpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/drivers/mspi/Kconfig.hpf -------------------------------------------------------------------------------- /drivers/mspi/Kconfig.sqspi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/drivers/mspi/Kconfig.sqspi -------------------------------------------------------------------------------- /drivers/mspi/mspi_hpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/drivers/mspi/mspi_hpf.c -------------------------------------------------------------------------------- /drivers/mspi/mspi_sqspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/drivers/mspi/mspi_sqspi.c -------------------------------------------------------------------------------- /drivers/net/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/drivers/net/CMakeLists.txt -------------------------------------------------------------------------------- /drivers/net/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/drivers/net/Kconfig -------------------------------------------------------------------------------- /drivers/net/eth_rtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/drivers/net/eth_rtt.c -------------------------------------------------------------------------------- /drivers/regulator/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/drivers/regulator/Kconfig -------------------------------------------------------------------------------- /drivers/sensor/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/drivers/sensor/Kconfig -------------------------------------------------------------------------------- /drivers/serial/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/drivers/serial/Kconfig -------------------------------------------------------------------------------- /drivers/serial/Kconfig.ipc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/drivers/serial/Kconfig.ipc -------------------------------------------------------------------------------- /drivers/serial/uart_ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/drivers/serial/uart_ipc.c -------------------------------------------------------------------------------- /ext/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/CMakeLists.txt -------------------------------------------------------------------------------- /ext/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/Kconfig -------------------------------------------------------------------------------- /ext/curl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/CMakeLists.txt -------------------------------------------------------------------------------- /ext/curl/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/Kconfig -------------------------------------------------------------------------------- /ext/curl/include/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/include/README.md -------------------------------------------------------------------------------- /ext/curl/lib/.gitattributes: -------------------------------------------------------------------------------- 1 | objnames.inc eol=lf 2 | -------------------------------------------------------------------------------- /ext/curl/lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/.gitignore -------------------------------------------------------------------------------- /ext/curl/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/CMakeLists.txt -------------------------------------------------------------------------------- /ext/curl/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/Makefile.am -------------------------------------------------------------------------------- /ext/curl/lib/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/Makefile.inc -------------------------------------------------------------------------------- /ext/curl/lib/Makefile.m32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/Makefile.m32 -------------------------------------------------------------------------------- /ext/curl/lib/altsvc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/altsvc.c -------------------------------------------------------------------------------- /ext/curl/lib/altsvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/altsvc.h -------------------------------------------------------------------------------- /ext/curl/lib/amigaos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/amigaos.c -------------------------------------------------------------------------------- /ext/curl/lib/amigaos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/amigaos.h -------------------------------------------------------------------------------- /ext/curl/lib/arpa_telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/arpa_telnet.h -------------------------------------------------------------------------------- /ext/curl/lib/asyn-ares.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/asyn-ares.c -------------------------------------------------------------------------------- /ext/curl/lib/asyn-thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/asyn-thread.c -------------------------------------------------------------------------------- /ext/curl/lib/asyn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/asyn.h -------------------------------------------------------------------------------- /ext/curl/lib/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/base64.c -------------------------------------------------------------------------------- /ext/curl/lib/checksrc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/checksrc.pl -------------------------------------------------------------------------------- /ext/curl/lib/config-dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/config-dos.h -------------------------------------------------------------------------------- /ext/curl/lib/config-mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/config-mac.h -------------------------------------------------------------------------------- /ext/curl/lib/config-os400.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/config-os400.h -------------------------------------------------------------------------------- /ext/curl/lib/config-plan9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/config-plan9.h -------------------------------------------------------------------------------- /ext/curl/lib/config-tpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/config-tpf.h -------------------------------------------------------------------------------- /ext/curl/lib/config-win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/config-win32.h -------------------------------------------------------------------------------- /ext/curl/lib/conncache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/conncache.c -------------------------------------------------------------------------------- /ext/curl/lib/conncache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/conncache.h -------------------------------------------------------------------------------- /ext/curl/lib/connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/connect.c -------------------------------------------------------------------------------- /ext/curl/lib/connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/connect.h -------------------------------------------------------------------------------- /ext/curl/lib/cookie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/cookie.c -------------------------------------------------------------------------------- /ext/curl/lib/cookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/cookie.h -------------------------------------------------------------------------------- /ext/curl/lib/curl_base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_base64.h -------------------------------------------------------------------------------- /ext/curl/lib/curl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_config.h -------------------------------------------------------------------------------- /ext/curl/lib/curl_ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_ctype.c -------------------------------------------------------------------------------- /ext/curl/lib/curl_ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_ctype.h -------------------------------------------------------------------------------- /ext/curl/lib/curl_des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_des.c -------------------------------------------------------------------------------- /ext/curl/lib/curl_des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_des.h -------------------------------------------------------------------------------- /ext/curl/lib/curl_endian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_endian.c -------------------------------------------------------------------------------- /ext/curl/lib/curl_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_endian.h -------------------------------------------------------------------------------- /ext/curl/lib/curl_fnmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_fnmatch.c -------------------------------------------------------------------------------- /ext/curl/lib/curl_fnmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_fnmatch.h -------------------------------------------------------------------------------- /ext/curl/lib/curl_gssapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_gssapi.c -------------------------------------------------------------------------------- /ext/curl/lib/curl_gssapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_gssapi.h -------------------------------------------------------------------------------- /ext/curl/lib/curl_hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_hmac.h -------------------------------------------------------------------------------- /ext/curl/lib/curl_krb5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_krb5.h -------------------------------------------------------------------------------- /ext/curl/lib/curl_ldap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_ldap.h -------------------------------------------------------------------------------- /ext/curl/lib/curl_md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_md4.h -------------------------------------------------------------------------------- /ext/curl/lib/curl_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_md5.h -------------------------------------------------------------------------------- /ext/curl/lib/curl_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_memory.h -------------------------------------------------------------------------------- /ext/curl/lib/curl_memrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_memrchr.c -------------------------------------------------------------------------------- /ext/curl/lib/curl_memrchr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_memrchr.h -------------------------------------------------------------------------------- /ext/curl/lib/curl_ntlm_wb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_ntlm_wb.c -------------------------------------------------------------------------------- /ext/curl/lib/curl_ntlm_wb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_ntlm_wb.h -------------------------------------------------------------------------------- /ext/curl/lib/curl_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_path.c -------------------------------------------------------------------------------- /ext/curl/lib/curl_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_path.h -------------------------------------------------------------------------------- /ext/curl/lib/curl_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_printf.h -------------------------------------------------------------------------------- /ext/curl/lib/curl_range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_range.c -------------------------------------------------------------------------------- /ext/curl/lib/curl_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_range.h -------------------------------------------------------------------------------- /ext/curl/lib/curl_rtmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_rtmp.c -------------------------------------------------------------------------------- /ext/curl/lib/curl_rtmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_rtmp.h -------------------------------------------------------------------------------- /ext/curl/lib/curl_sasl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_sasl.c -------------------------------------------------------------------------------- /ext/curl/lib/curl_sasl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_sasl.h -------------------------------------------------------------------------------- /ext/curl/lib/curl_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_setup.h -------------------------------------------------------------------------------- /ext/curl/lib/curl_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_sha256.h -------------------------------------------------------------------------------- /ext/curl/lib/curl_sspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_sspi.c -------------------------------------------------------------------------------- /ext/curl/lib/curl_sspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_sspi.h -------------------------------------------------------------------------------- /ext/curl/lib/curl_threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_threads.c -------------------------------------------------------------------------------- /ext/curl/lib/curl_threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curl_threads.h -------------------------------------------------------------------------------- /ext/curl/lib/curlx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/curlx.h -------------------------------------------------------------------------------- /ext/curl/lib/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/dict.c -------------------------------------------------------------------------------- /ext/curl/lib/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/dict.h -------------------------------------------------------------------------------- /ext/curl/lib/doh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/doh.c -------------------------------------------------------------------------------- /ext/curl/lib/doh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/doh.h -------------------------------------------------------------------------------- /ext/curl/lib/dotdot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/dotdot.c -------------------------------------------------------------------------------- /ext/curl/lib/dotdot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/dotdot.h -------------------------------------------------------------------------------- /ext/curl/lib/dynbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/dynbuf.c -------------------------------------------------------------------------------- /ext/curl/lib/dynbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/dynbuf.h -------------------------------------------------------------------------------- /ext/curl/lib/easy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/easy.c -------------------------------------------------------------------------------- /ext/curl/lib/easygetopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/easygetopt.c -------------------------------------------------------------------------------- /ext/curl/lib/easyif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/easyif.h -------------------------------------------------------------------------------- /ext/curl/lib/easyoptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/easyoptions.c -------------------------------------------------------------------------------- /ext/curl/lib/easyoptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/easyoptions.h -------------------------------------------------------------------------------- /ext/curl/lib/escape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/escape.c -------------------------------------------------------------------------------- /ext/curl/lib/escape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/escape.h -------------------------------------------------------------------------------- /ext/curl/lib/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/file.c -------------------------------------------------------------------------------- /ext/curl/lib/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/file.h -------------------------------------------------------------------------------- /ext/curl/lib/fileinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/fileinfo.c -------------------------------------------------------------------------------- /ext/curl/lib/fileinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/fileinfo.h -------------------------------------------------------------------------------- /ext/curl/lib/formdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/formdata.c -------------------------------------------------------------------------------- /ext/curl/lib/formdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/formdata.h -------------------------------------------------------------------------------- /ext/curl/lib/ftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/ftp.c -------------------------------------------------------------------------------- /ext/curl/lib/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/ftp.h -------------------------------------------------------------------------------- /ext/curl/lib/getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/getenv.c -------------------------------------------------------------------------------- /ext/curl/lib/getinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/getinfo.c -------------------------------------------------------------------------------- /ext/curl/lib/getinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/getinfo.h -------------------------------------------------------------------------------- /ext/curl/lib/gopher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/gopher.c -------------------------------------------------------------------------------- /ext/curl/lib/gopher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/gopher.h -------------------------------------------------------------------------------- /ext/curl/lib/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/hash.c -------------------------------------------------------------------------------- /ext/curl/lib/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/hash.h -------------------------------------------------------------------------------- /ext/curl/lib/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/hmac.c -------------------------------------------------------------------------------- /ext/curl/lib/hostasyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/hostasyn.c -------------------------------------------------------------------------------- /ext/curl/lib/hostcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/hostcheck.c -------------------------------------------------------------------------------- /ext/curl/lib/hostcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/hostcheck.h -------------------------------------------------------------------------------- /ext/curl/lib/hostip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/hostip.c -------------------------------------------------------------------------------- /ext/curl/lib/hostip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/hostip.h -------------------------------------------------------------------------------- /ext/curl/lib/hostip4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/hostip4.c -------------------------------------------------------------------------------- /ext/curl/lib/hostip6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/hostip6.c -------------------------------------------------------------------------------- /ext/curl/lib/hostsyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/hostsyn.c -------------------------------------------------------------------------------- /ext/curl/lib/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/http.c -------------------------------------------------------------------------------- /ext/curl/lib/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/http.h -------------------------------------------------------------------------------- /ext/curl/lib/http2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/http2.c -------------------------------------------------------------------------------- /ext/curl/lib/http2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/http2.h -------------------------------------------------------------------------------- /ext/curl/lib/http_chunks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/http_chunks.c -------------------------------------------------------------------------------- /ext/curl/lib/http_chunks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/http_chunks.h -------------------------------------------------------------------------------- /ext/curl/lib/http_digest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/http_digest.c -------------------------------------------------------------------------------- /ext/curl/lib/http_digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/http_digest.h -------------------------------------------------------------------------------- /ext/curl/lib/http_ntlm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/http_ntlm.c -------------------------------------------------------------------------------- /ext/curl/lib/http_ntlm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/http_ntlm.h -------------------------------------------------------------------------------- /ext/curl/lib/http_proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/http_proxy.c -------------------------------------------------------------------------------- /ext/curl/lib/http_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/http_proxy.h -------------------------------------------------------------------------------- /ext/curl/lib/idn_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/idn_win32.c -------------------------------------------------------------------------------- /ext/curl/lib/if2ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/if2ip.c -------------------------------------------------------------------------------- /ext/curl/lib/if2ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/if2ip.h -------------------------------------------------------------------------------- /ext/curl/lib/imap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/imap.c -------------------------------------------------------------------------------- /ext/curl/lib/imap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/imap.h -------------------------------------------------------------------------------- /ext/curl/lib/inet_ntop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/inet_ntop.c -------------------------------------------------------------------------------- /ext/curl/lib/inet_ntop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/inet_ntop.h -------------------------------------------------------------------------------- /ext/curl/lib/inet_pton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/inet_pton.c -------------------------------------------------------------------------------- /ext/curl/lib/inet_pton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/inet_pton.h -------------------------------------------------------------------------------- /ext/curl/lib/krb5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/krb5.c -------------------------------------------------------------------------------- /ext/curl/lib/ldap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/ldap.c -------------------------------------------------------------------------------- /ext/curl/lib/libcurl.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/libcurl.plist -------------------------------------------------------------------------------- /ext/curl/lib/libcurl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/libcurl.rc -------------------------------------------------------------------------------- /ext/curl/lib/libcurl.vers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/libcurl.vers -------------------------------------------------------------------------------- /ext/curl/lib/llist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/llist.c -------------------------------------------------------------------------------- /ext/curl/lib/llist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/llist.h -------------------------------------------------------------------------------- /ext/curl/lib/makefile.amiga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/makefile.amiga -------------------------------------------------------------------------------- /ext/curl/lib/makefile.dj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/makefile.dj -------------------------------------------------------------------------------- /ext/curl/lib/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/md4.c -------------------------------------------------------------------------------- /ext/curl/lib/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/md5.c -------------------------------------------------------------------------------- /ext/curl/lib/memdebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/memdebug.c -------------------------------------------------------------------------------- /ext/curl/lib/memdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/memdebug.h -------------------------------------------------------------------------------- /ext/curl/lib/mime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/mime.c -------------------------------------------------------------------------------- /ext/curl/lib/mime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/mime.h -------------------------------------------------------------------------------- /ext/curl/lib/mprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/mprintf.c -------------------------------------------------------------------------------- /ext/curl/lib/mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/mqtt.c -------------------------------------------------------------------------------- /ext/curl/lib/mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/mqtt.h -------------------------------------------------------------------------------- /ext/curl/lib/multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/multi.c -------------------------------------------------------------------------------- /ext/curl/lib/multihandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/multihandle.h -------------------------------------------------------------------------------- /ext/curl/lib/multiif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/multiif.h -------------------------------------------------------------------------------- /ext/curl/lib/netrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/netrc.c -------------------------------------------------------------------------------- /ext/curl/lib/netrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/netrc.h -------------------------------------------------------------------------------- /ext/curl/lib/non-ascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/non-ascii.c -------------------------------------------------------------------------------- /ext/curl/lib/non-ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/non-ascii.h -------------------------------------------------------------------------------- /ext/curl/lib/nonblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/nonblock.c -------------------------------------------------------------------------------- /ext/curl/lib/nonblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/nonblock.h -------------------------------------------------------------------------------- /ext/curl/lib/nwlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/nwlib.c -------------------------------------------------------------------------------- /ext/curl/lib/nwos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/nwos.c -------------------------------------------------------------------------------- /ext/curl/lib/openldap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/openldap.c -------------------------------------------------------------------------------- /ext/curl/lib/optiontable.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/optiontable.pl -------------------------------------------------------------------------------- /ext/curl/lib/parsedate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/parsedate.c -------------------------------------------------------------------------------- /ext/curl/lib/parsedate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/parsedate.h -------------------------------------------------------------------------------- /ext/curl/lib/pingpong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/pingpong.c -------------------------------------------------------------------------------- /ext/curl/lib/pingpong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/pingpong.h -------------------------------------------------------------------------------- /ext/curl/lib/pop3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/pop3.c -------------------------------------------------------------------------------- /ext/curl/lib/pop3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/pop3.h -------------------------------------------------------------------------------- /ext/curl/lib/progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/progress.c -------------------------------------------------------------------------------- /ext/curl/lib/progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/progress.h -------------------------------------------------------------------------------- /ext/curl/lib/psl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/psl.c -------------------------------------------------------------------------------- /ext/curl/lib/psl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/psl.h -------------------------------------------------------------------------------- /ext/curl/lib/quic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/quic.h -------------------------------------------------------------------------------- /ext/curl/lib/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/rand.c -------------------------------------------------------------------------------- /ext/curl/lib/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/rand.h -------------------------------------------------------------------------------- /ext/curl/lib/rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/rename.c -------------------------------------------------------------------------------- /ext/curl/lib/rename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/rename.h -------------------------------------------------------------------------------- /ext/curl/lib/rtsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/rtsp.c -------------------------------------------------------------------------------- /ext/curl/lib/rtsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/rtsp.h -------------------------------------------------------------------------------- /ext/curl/lib/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/select.c -------------------------------------------------------------------------------- /ext/curl/lib/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/select.h -------------------------------------------------------------------------------- /ext/curl/lib/sendf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/sendf.c -------------------------------------------------------------------------------- /ext/curl/lib/sendf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/sendf.h -------------------------------------------------------------------------------- /ext/curl/lib/setopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/setopt.c -------------------------------------------------------------------------------- /ext/curl/lib/setopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/setopt.h -------------------------------------------------------------------------------- /ext/curl/lib/setup-os400.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/setup-os400.h -------------------------------------------------------------------------------- /ext/curl/lib/setup-vms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/setup-vms.h -------------------------------------------------------------------------------- /ext/curl/lib/setup-win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/setup-win32.h -------------------------------------------------------------------------------- /ext/curl/lib/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/sha256.c -------------------------------------------------------------------------------- /ext/curl/lib/share.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/share.c -------------------------------------------------------------------------------- /ext/curl/lib/share.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/share.h -------------------------------------------------------------------------------- /ext/curl/lib/sigpipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/sigpipe.h -------------------------------------------------------------------------------- /ext/curl/lib/slist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/slist.c -------------------------------------------------------------------------------- /ext/curl/lib/slist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/slist.h -------------------------------------------------------------------------------- /ext/curl/lib/smb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/smb.c -------------------------------------------------------------------------------- /ext/curl/lib/smb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/smb.h -------------------------------------------------------------------------------- /ext/curl/lib/smtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/smtp.c -------------------------------------------------------------------------------- /ext/curl/lib/smtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/smtp.h -------------------------------------------------------------------------------- /ext/curl/lib/sockaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/sockaddr.h -------------------------------------------------------------------------------- /ext/curl/lib/socketpair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/socketpair.c -------------------------------------------------------------------------------- /ext/curl/lib/socketpair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/socketpair.h -------------------------------------------------------------------------------- /ext/curl/lib/socks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/socks.c -------------------------------------------------------------------------------- /ext/curl/lib/socks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/socks.h -------------------------------------------------------------------------------- /ext/curl/lib/socks_gssapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/socks_gssapi.c -------------------------------------------------------------------------------- /ext/curl/lib/socks_sspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/socks_sspi.c -------------------------------------------------------------------------------- /ext/curl/lib/speedcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/speedcheck.c -------------------------------------------------------------------------------- /ext/curl/lib/speedcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/speedcheck.h -------------------------------------------------------------------------------- /ext/curl/lib/splay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/splay.c -------------------------------------------------------------------------------- /ext/curl/lib/splay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/splay.h -------------------------------------------------------------------------------- /ext/curl/lib/strcase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/strcase.c -------------------------------------------------------------------------------- /ext/curl/lib/strcase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/strcase.h -------------------------------------------------------------------------------- /ext/curl/lib/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/strdup.c -------------------------------------------------------------------------------- /ext/curl/lib/strdup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/strdup.h -------------------------------------------------------------------------------- /ext/curl/lib/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/strerror.c -------------------------------------------------------------------------------- /ext/curl/lib/strerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/strerror.h -------------------------------------------------------------------------------- /ext/curl/lib/strtok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/strtok.c -------------------------------------------------------------------------------- /ext/curl/lib/strtok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/strtok.h -------------------------------------------------------------------------------- /ext/curl/lib/strtoofft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/strtoofft.c -------------------------------------------------------------------------------- /ext/curl/lib/strtoofft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/strtoofft.h -------------------------------------------------------------------------------- /ext/curl/lib/system_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/system_win32.c -------------------------------------------------------------------------------- /ext/curl/lib/system_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/system_win32.h -------------------------------------------------------------------------------- /ext/curl/lib/telnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/telnet.c -------------------------------------------------------------------------------- /ext/curl/lib/telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/telnet.h -------------------------------------------------------------------------------- /ext/curl/lib/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/tftp.c -------------------------------------------------------------------------------- /ext/curl/lib/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/tftp.h -------------------------------------------------------------------------------- /ext/curl/lib/timeval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/timeval.c -------------------------------------------------------------------------------- /ext/curl/lib/timeval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/timeval.h -------------------------------------------------------------------------------- /ext/curl/lib/transfer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/transfer.c -------------------------------------------------------------------------------- /ext/curl/lib/transfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/transfer.h -------------------------------------------------------------------------------- /ext/curl/lib/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/url.c -------------------------------------------------------------------------------- /ext/curl/lib/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/url.h -------------------------------------------------------------------------------- /ext/curl/lib/urlapi-int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/urlapi-int.h -------------------------------------------------------------------------------- /ext/curl/lib/urlapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/urlapi.c -------------------------------------------------------------------------------- /ext/curl/lib/urldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/urldata.h -------------------------------------------------------------------------------- /ext/curl/lib/vauth/cram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vauth/cram.c -------------------------------------------------------------------------------- /ext/curl/lib/vauth/digest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vauth/digest.c -------------------------------------------------------------------------------- /ext/curl/lib/vauth/digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vauth/digest.h -------------------------------------------------------------------------------- /ext/curl/lib/vauth/ntlm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vauth/ntlm.c -------------------------------------------------------------------------------- /ext/curl/lib/vauth/ntlm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vauth/ntlm.h -------------------------------------------------------------------------------- /ext/curl/lib/vauth/oauth2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vauth/oauth2.c -------------------------------------------------------------------------------- /ext/curl/lib/vauth/vauth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vauth/vauth.c -------------------------------------------------------------------------------- /ext/curl/lib/vauth/vauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vauth/vauth.h -------------------------------------------------------------------------------- /ext/curl/lib/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/version.c -------------------------------------------------------------------------------- /ext/curl/lib/vquic/ngtcp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vquic/ngtcp2.c -------------------------------------------------------------------------------- /ext/curl/lib/vquic/ngtcp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vquic/ngtcp2.h -------------------------------------------------------------------------------- /ext/curl/lib/vquic/quiche.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vquic/quiche.c -------------------------------------------------------------------------------- /ext/curl/lib/vquic/quiche.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vquic/quiche.h -------------------------------------------------------------------------------- /ext/curl/lib/vquic/vquic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vquic/vquic.c -------------------------------------------------------------------------------- /ext/curl/lib/vquic/vquic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vquic/vquic.h -------------------------------------------------------------------------------- /ext/curl/lib/vssh/libssh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vssh/libssh.c -------------------------------------------------------------------------------- /ext/curl/lib/vssh/libssh2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vssh/libssh2.c -------------------------------------------------------------------------------- /ext/curl/lib/vssh/ssh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vssh/ssh.h -------------------------------------------------------------------------------- /ext/curl/lib/vssh/wolfssh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vssh/wolfssh.c -------------------------------------------------------------------------------- /ext/curl/lib/vssh/wolfssh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vssh/wolfssh.h -------------------------------------------------------------------------------- /ext/curl/lib/vtls/bearssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vtls/bearssl.c -------------------------------------------------------------------------------- /ext/curl/lib/vtls/bearssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vtls/bearssl.h -------------------------------------------------------------------------------- /ext/curl/lib/vtls/gskit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vtls/gskit.c -------------------------------------------------------------------------------- /ext/curl/lib/vtls/gskit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vtls/gskit.h -------------------------------------------------------------------------------- /ext/curl/lib/vtls/gtls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vtls/gtls.c -------------------------------------------------------------------------------- /ext/curl/lib/vtls/gtls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vtls/gtls.h -------------------------------------------------------------------------------- /ext/curl/lib/vtls/keylog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vtls/keylog.c -------------------------------------------------------------------------------- /ext/curl/lib/vtls/keylog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vtls/keylog.h -------------------------------------------------------------------------------- /ext/curl/lib/vtls/mbedtls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vtls/mbedtls.c -------------------------------------------------------------------------------- /ext/curl/lib/vtls/mbedtls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vtls/mbedtls.h -------------------------------------------------------------------------------- /ext/curl/lib/vtls/nss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vtls/nss.c -------------------------------------------------------------------------------- /ext/curl/lib/vtls/nssg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vtls/nssg.h -------------------------------------------------------------------------------- /ext/curl/lib/vtls/openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vtls/openssl.c -------------------------------------------------------------------------------- /ext/curl/lib/vtls/openssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vtls/openssl.h -------------------------------------------------------------------------------- /ext/curl/lib/vtls/vtls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vtls/vtls.c -------------------------------------------------------------------------------- /ext/curl/lib/vtls/vtls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vtls/vtls.h -------------------------------------------------------------------------------- /ext/curl/lib/vtls/wolfssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vtls/wolfssl.c -------------------------------------------------------------------------------- /ext/curl/lib/vtls/wolfssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/vtls/wolfssl.h -------------------------------------------------------------------------------- /ext/curl/lib/warnless.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/warnless.c -------------------------------------------------------------------------------- /ext/curl/lib/warnless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/warnless.h -------------------------------------------------------------------------------- /ext/curl/lib/wildcard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/wildcard.c -------------------------------------------------------------------------------- /ext/curl/lib/wildcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/wildcard.h -------------------------------------------------------------------------------- /ext/curl/lib/x509asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/x509asn1.c -------------------------------------------------------------------------------- /ext/curl/lib/x509asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/lib/x509asn1.h -------------------------------------------------------------------------------- /ext/curl/tool/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/.gitignore -------------------------------------------------------------------------------- /ext/curl/tool/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/Makefile.am -------------------------------------------------------------------------------- /ext/curl/tool/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/Makefile.inc -------------------------------------------------------------------------------- /ext/curl/tool/Makefile.m32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/Makefile.m32 -------------------------------------------------------------------------------- /ext/curl/tool/curl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/curl.rc -------------------------------------------------------------------------------- /ext/curl/tool/makefile.dj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/makefile.dj -------------------------------------------------------------------------------- /ext/curl/tool/mkhelp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/mkhelp.pl -------------------------------------------------------------------------------- /ext/curl/tool/slist_wc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/slist_wc.c -------------------------------------------------------------------------------- /ext/curl/tool/slist_wc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/slist_wc.h -------------------------------------------------------------------------------- /ext/curl/tool/tool_bname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_bname.c -------------------------------------------------------------------------------- /ext/curl/tool/tool_bname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_bname.h -------------------------------------------------------------------------------- /ext/curl/tool/tool_cb_dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_cb_dbg.c -------------------------------------------------------------------------------- /ext/curl/tool/tool_cb_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_cb_dbg.h -------------------------------------------------------------------------------- /ext/curl/tool/tool_cb_hdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_cb_hdr.c -------------------------------------------------------------------------------- /ext/curl/tool/tool_cb_hdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_cb_hdr.h -------------------------------------------------------------------------------- /ext/curl/tool/tool_cb_prg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_cb_prg.c -------------------------------------------------------------------------------- /ext/curl/tool/tool_cb_prg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_cb_prg.h -------------------------------------------------------------------------------- /ext/curl/tool/tool_cb_rea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_cb_rea.c -------------------------------------------------------------------------------- /ext/curl/tool/tool_cb_rea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_cb_rea.h -------------------------------------------------------------------------------- /ext/curl/tool/tool_cb_see.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_cb_see.c -------------------------------------------------------------------------------- /ext/curl/tool/tool_cb_see.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_cb_see.h -------------------------------------------------------------------------------- /ext/curl/tool/tool_cb_wrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_cb_wrt.c -------------------------------------------------------------------------------- /ext/curl/tool/tool_cb_wrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_cb_wrt.h -------------------------------------------------------------------------------- /ext/curl/tool/tool_dirhie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_dirhie.c -------------------------------------------------------------------------------- /ext/curl/tool/tool_dirhie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_dirhie.h -------------------------------------------------------------------------------- /ext/curl/tool/tool_doswin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_doswin.c -------------------------------------------------------------------------------- /ext/curl/tool/tool_doswin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_doswin.h -------------------------------------------------------------------------------- /ext/curl/tool/tool_help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_help.c -------------------------------------------------------------------------------- /ext/curl/tool/tool_help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_help.h -------------------------------------------------------------------------------- /ext/curl/tool/tool_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_main.c -------------------------------------------------------------------------------- /ext/curl/tool/tool_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_main.h -------------------------------------------------------------------------------- /ext/curl/tool/tool_msgs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_msgs.c -------------------------------------------------------------------------------- /ext/curl/tool/tool_msgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_msgs.h -------------------------------------------------------------------------------- /ext/curl/tool/tool_sdecls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_sdecls.h -------------------------------------------------------------------------------- /ext/curl/tool/tool_setopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_setopt.c -------------------------------------------------------------------------------- /ext/curl/tool/tool_setopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_setopt.h -------------------------------------------------------------------------------- /ext/curl/tool/tool_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_setup.h -------------------------------------------------------------------------------- /ext/curl/tool/tool_sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_sleep.c -------------------------------------------------------------------------------- /ext/curl/tool/tool_sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_sleep.h -------------------------------------------------------------------------------- /ext/curl/tool/tool_strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_strdup.c -------------------------------------------------------------------------------- /ext/curl/tool/tool_strdup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_strdup.h -------------------------------------------------------------------------------- /ext/curl/tool/tool_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_util.c -------------------------------------------------------------------------------- /ext/curl/tool/tool_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_util.h -------------------------------------------------------------------------------- /ext/curl/tool/tool_vms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_vms.c -------------------------------------------------------------------------------- /ext/curl/tool/tool_vms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_vms.h -------------------------------------------------------------------------------- /ext/curl/tool/tool_xattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_xattr.c -------------------------------------------------------------------------------- /ext/curl/tool/tool_xattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/curl/tool/tool_xattr.h -------------------------------------------------------------------------------- /ext/freebsd-getopt/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/freebsd-getopt/Kconfig -------------------------------------------------------------------------------- /ext/freebsd-getopt/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/freebsd-getopt/getopt.c -------------------------------------------------------------------------------- /ext/freebsd-getopt/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/freebsd-getopt/getopt.h -------------------------------------------------------------------------------- /ext/iperf3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/CMakeLists.txt -------------------------------------------------------------------------------- /ext/iperf3/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/Kconfig -------------------------------------------------------------------------------- /ext/iperf3/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/Makefile.am -------------------------------------------------------------------------------- /ext/iperf3/cjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/cjson.c -------------------------------------------------------------------------------- /ext/iperf3/cjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/cjson.h -------------------------------------------------------------------------------- /ext/iperf3/dscp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/dscp.c -------------------------------------------------------------------------------- /ext/iperf3/flowlabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/flowlabel.h -------------------------------------------------------------------------------- /ext/iperf3/iperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/iperf.h -------------------------------------------------------------------------------- /ext/iperf3/iperf3.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/iperf3.1 -------------------------------------------------------------------------------- /ext/iperf3/iperf_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/iperf_api.c -------------------------------------------------------------------------------- /ext/iperf3/iperf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/iperf_api.h -------------------------------------------------------------------------------- /ext/iperf3/iperf_auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/iperf_auth.c -------------------------------------------------------------------------------- /ext/iperf3/iperf_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/iperf_auth.h -------------------------------------------------------------------------------- /ext/iperf3/iperf_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/iperf_config.h -------------------------------------------------------------------------------- /ext/iperf3/iperf_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/iperf_error.c -------------------------------------------------------------------------------- /ext/iperf3/iperf_locale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/iperf_locale.c -------------------------------------------------------------------------------- /ext/iperf3/iperf_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/iperf_locale.h -------------------------------------------------------------------------------- /ext/iperf3/iperf_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/iperf_main.c -------------------------------------------------------------------------------- /ext/iperf3/iperf_sctp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/iperf_sctp.c -------------------------------------------------------------------------------- /ext/iperf3/iperf_sctp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/iperf_sctp.h -------------------------------------------------------------------------------- /ext/iperf3/iperf_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/iperf_tcp.c -------------------------------------------------------------------------------- /ext/iperf3/iperf_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/iperf_tcp.h -------------------------------------------------------------------------------- /ext/iperf3/iperf_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/iperf_time.c -------------------------------------------------------------------------------- /ext/iperf3/iperf_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/iperf_time.h -------------------------------------------------------------------------------- /ext/iperf3/iperf_udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/iperf_udp.c -------------------------------------------------------------------------------- /ext/iperf3/iperf_udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/iperf_udp.h -------------------------------------------------------------------------------- /ext/iperf3/iperf_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/iperf_util.c -------------------------------------------------------------------------------- /ext/iperf3/iperf_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/iperf_util.h -------------------------------------------------------------------------------- /ext/iperf3/libiperf.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/libiperf.3 -------------------------------------------------------------------------------- /ext/iperf3/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/main.c -------------------------------------------------------------------------------- /ext/iperf3/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/net.c -------------------------------------------------------------------------------- /ext/iperf3/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/net.h -------------------------------------------------------------------------------- /ext/iperf3/private.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/private.pem -------------------------------------------------------------------------------- /ext/iperf3/public.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/public.pem -------------------------------------------------------------------------------- /ext/iperf3/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/queue.h -------------------------------------------------------------------------------- /ext/iperf3/t_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/t_api.c -------------------------------------------------------------------------------- /ext/iperf3/t_auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/t_auth.c -------------------------------------------------------------------------------- /ext/iperf3/t_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/t_timer.c -------------------------------------------------------------------------------- /ext/iperf3/t_units.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/t_units.c -------------------------------------------------------------------------------- /ext/iperf3/t_uuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/t_uuid.c -------------------------------------------------------------------------------- /ext/iperf3/tcp_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/tcp_info.c -------------------------------------------------------------------------------- /ext/iperf3/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/timer.c -------------------------------------------------------------------------------- /ext/iperf3/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/timer.h -------------------------------------------------------------------------------- /ext/iperf3/units.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/units.c -------------------------------------------------------------------------------- /ext/iperf3/units.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/units.h -------------------------------------------------------------------------------- /ext/iperf3/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/ext/iperf3/version.h.in -------------------------------------------------------------------------------- /include/adp536x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/adp536x.h -------------------------------------------------------------------------------- /include/app_event_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/app_event_manager.h -------------------------------------------------------------------------------- /include/app_jwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/app_jwt.h -------------------------------------------------------------------------------- /include/audio_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/audio_defines.h -------------------------------------------------------------------------------- /include/bl_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/bl_crypto.h -------------------------------------------------------------------------------- /include/bl_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/bl_storage.h -------------------------------------------------------------------------------- /include/bl_validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/bl_validation.h -------------------------------------------------------------------------------- /include/bluetooth/bt_rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/bluetooth/bt_rpc.h -------------------------------------------------------------------------------- /include/bluetooth/cs_de.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/bluetooth/cs_de.h -------------------------------------------------------------------------------- /include/bluetooth/enocean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/bluetooth/enocean.h -------------------------------------------------------------------------------- /include/bluetooth/gatt_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/bluetooth/gatt_dm.h -------------------------------------------------------------------------------- /include/bluetooth/scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/bluetooth/scan.h -------------------------------------------------------------------------------- /include/caf/gpio_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/caf/gpio_pins.h -------------------------------------------------------------------------------- /include/caf/key_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/caf/key_id.h -------------------------------------------------------------------------------- /include/caf/led_effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/caf/led_effect.h -------------------------------------------------------------------------------- /include/contin_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/contin_array.h -------------------------------------------------------------------------------- /include/data_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/data_fifo.h -------------------------------------------------------------------------------- /include/date_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/date_time.h -------------------------------------------------------------------------------- /include/debug/cpu_load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/debug/cpu_load.h -------------------------------------------------------------------------------- /include/debug/etb_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/debug/etb_trace.h -------------------------------------------------------------------------------- /include/debug/ppi_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/debug/ppi_trace.h -------------------------------------------------------------------------------- /include/dfu/dfu_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/dfu/dfu_target.h -------------------------------------------------------------------------------- /include/dfu/fmfu_fdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/dfu/fmfu_fdev.h -------------------------------------------------------------------------------- /include/dfu/pcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/dfu/pcd.h -------------------------------------------------------------------------------- /include/dfu/pcd_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/dfu/pcd_common.h -------------------------------------------------------------------------------- /include/dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/dm.h -------------------------------------------------------------------------------- /include/dult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/dult.h -------------------------------------------------------------------------------- /include/ei_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/ei_wrapper.h -------------------------------------------------------------------------------- /include/emds/emds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/emds/emds.h -------------------------------------------------------------------------------- /include/esb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/esb.h -------------------------------------------------------------------------------- /include/fem_al/fem_al.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/fem_al/fem_al.h -------------------------------------------------------------------------------- /include/flash_map_pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/flash_map_pm.h -------------------------------------------------------------------------------- /include/fprotect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/fprotect.h -------------------------------------------------------------------------------- /include/fw_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/fw_info.h -------------------------------------------------------------------------------- /include/fw_info_bare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/fw_info_bare.h -------------------------------------------------------------------------------- /include/gzll_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/gzll_glue.h -------------------------------------------------------------------------------- /include/gzp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/gzp.h -------------------------------------------------------------------------------- /include/gzp_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/gzp_config.h -------------------------------------------------------------------------------- /include/hpf/hpf_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/hpf/hpf_common.h -------------------------------------------------------------------------------- /include/hw_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/hw_id.h -------------------------------------------------------------------------------- /include/hw_unique_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/hw_unique_key.h -------------------------------------------------------------------------------- /include/identity_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/identity_key.h -------------------------------------------------------------------------------- /include/logging/log_rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/logging/log_rpc.h -------------------------------------------------------------------------------- /include/memfault_ncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/memfault_ncs.h -------------------------------------------------------------------------------- /include/mgmt/fmfu_mgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/mgmt/fmfu_mgmt.h -------------------------------------------------------------------------------- /include/modem/at_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/modem/at_monitor.h -------------------------------------------------------------------------------- /include/modem/at_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/modem/at_parser.h -------------------------------------------------------------------------------- /include/modem/location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/modem/location.h -------------------------------------------------------------------------------- /include/modem/lte_lc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/modem/lte_lc.h -------------------------------------------------------------------------------- /include/modem/modem_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/modem/modem_info.h -------------------------------------------------------------------------------- /include/modem/ntn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/modem/ntn.h -------------------------------------------------------------------------------- /include/modem/pdn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/modem/pdn.h -------------------------------------------------------------------------------- /include/modem/sms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/modem/sms.h -------------------------------------------------------------------------------- /include/mpsl/mpsl_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/mpsl/mpsl_lib.h -------------------------------------------------------------------------------- /include/mpsl/mpsl_work.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/mpsl/mpsl_work.h -------------------------------------------------------------------------------- /include/net/aws_fota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/net/aws_fota.h -------------------------------------------------------------------------------- /include/net/aws_iot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/net/aws_iot.h -------------------------------------------------------------------------------- /include/net/aws_jobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/net/aws_jobs.h -------------------------------------------------------------------------------- /include/net/azure_fota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/net/azure_fota.h -------------------------------------------------------------------------------- /include/net/coap_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/net/coap_utils.h -------------------------------------------------------------------------------- /include/net/downloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/net/downloader.h -------------------------------------------------------------------------------- /include/net/ftp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/net/ftp_client.h -------------------------------------------------------------------------------- /include/net/nrf_cloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/net/nrf_cloud.h -------------------------------------------------------------------------------- /include/net/ot_rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/net/ot_rpc.h -------------------------------------------------------------------------------- /include/net/wifi_ready.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/net/wifi_ready.h -------------------------------------------------------------------------------- /include/nfc/ndef/ch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/nfc/ndef/ch.h -------------------------------------------------------------------------------- /include/nfc/ndef/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/nfc/ndef/msg.h -------------------------------------------------------------------------------- /include/nfc/t2t/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/nfc/t2t/parser.h -------------------------------------------------------------------------------- /include/nfc/t4t/apdu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/nfc/t4t/apdu.h -------------------------------------------------------------------------------- /include/nfc/t4t/isodep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/nfc/t4t/isodep.h -------------------------------------------------------------------------------- /include/nfc/tnep/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/nfc/tnep/base.h -------------------------------------------------------------------------------- /include/nfc/tnep/ch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/nfc/tnep/ch.h -------------------------------------------------------------------------------- /include/nfc/tnep/tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/nfc/tnep/tag.h -------------------------------------------------------------------------------- /include/nrf_profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/nrf_profiler.h -------------------------------------------------------------------------------- /include/pcm_mix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/pcm_mix.h -------------------------------------------------------------------------------- /include/power/reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/power/reboot.h -------------------------------------------------------------------------------- /include/qos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/qos.h -------------------------------------------------------------------------------- /include/ram_pwrdn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/ram_pwrdn.h -------------------------------------------------------------------------------- /include/sensor/paw3212.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/sensor/paw3212.h -------------------------------------------------------------------------------- /include/sensor/pmw3360.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/sensor/pmw3360.h -------------------------------------------------------------------------------- /include/sfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/sfloat.h -------------------------------------------------------------------------------- /include/supl_os_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/supl_os_client.h -------------------------------------------------------------------------------- /include/tone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/tone.h -------------------------------------------------------------------------------- /include/wave_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/include/wave_gen.h -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/Kconfig -------------------------------------------------------------------------------- /lib/adp536x/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/adp536x/Kconfig -------------------------------------------------------------------------------- /lib/adp536x/adp536x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/adp536x/adp536x.c -------------------------------------------------------------------------------- /lib/app_jwt/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/app_jwt/Kconfig -------------------------------------------------------------------------------- /lib/app_jwt/app_jwt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/app_jwt/app_jwt.c -------------------------------------------------------------------------------- /lib/at_host/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/at_host/Kconfig -------------------------------------------------------------------------------- /lib/at_host/at_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/at_host/at_host.c -------------------------------------------------------------------------------- /lib/at_monitor/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/at_monitor/Kconfig -------------------------------------------------------------------------------- /lib/at_parser/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/at_parser/Kconfig -------------------------------------------------------------------------------- /lib/at_parser/at_match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/at_parser/at_match.h -------------------------------------------------------------------------------- /lib/at_parser/at_token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/at_parser/at_token.h -------------------------------------------------------------------------------- /lib/at_shell/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/at_shell/Kconfig -------------------------------------------------------------------------------- /lib/at_shell/at_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/at_shell/at_shell.c -------------------------------------------------------------------------------- /lib/bin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/bin/CMakeLists.txt -------------------------------------------------------------------------------- /lib/bin/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/bin/Kconfig -------------------------------------------------------------------------------- /lib/boot_banner/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/boot_banner/Kconfig -------------------------------------------------------------------------------- /lib/boot_banner/banner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/boot_banner/banner.c -------------------------------------------------------------------------------- /lib/contin_array/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/contin_array/Kconfig -------------------------------------------------------------------------------- /lib/data_fifo/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/data_fifo/Kconfig -------------------------------------------------------------------------------- /lib/date_time/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/date_time/Kconfig -------------------------------------------------------------------------------- /lib/edge_impulse/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/edge_impulse/Kconfig -------------------------------------------------------------------------------- /lib/fatal_error/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/fatal_error/Kconfig -------------------------------------------------------------------------------- /lib/fem_al/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/fem_al/Kconfig -------------------------------------------------------------------------------- /lib/fem_al/fem_al.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/fem_al/fem_al.c -------------------------------------------------------------------------------- /lib/fem_al/generic_fem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/fem_al/generic_fem.c -------------------------------------------------------------------------------- /lib/fem_al/nrf21540.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/fem_al/nrf21540.c -------------------------------------------------------------------------------- /lib/fem_al/nrf22xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/fem_al/nrf22xx.c -------------------------------------------------------------------------------- /lib/fem_al/radio_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/fem_al/radio_def.h -------------------------------------------------------------------------------- /lib/flash_patch/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/flash_patch/Kconfig -------------------------------------------------------------------------------- /lib/fprotect/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/fprotect/Kconfig -------------------------------------------------------------------------------- /lib/gcf_sms/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/gcf_sms/Kconfig -------------------------------------------------------------------------------- /lib/gcf_sms/gcf_sms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/gcf_sms/gcf_sms.c -------------------------------------------------------------------------------- /lib/hw_id/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/hw_id/CMakeLists.txt -------------------------------------------------------------------------------- /lib/hw_id/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/hw_id/Kconfig -------------------------------------------------------------------------------- /lib/hw_id/hw_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/hw_id/hw_id.c -------------------------------------------------------------------------------- /lib/identity_key/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/identity_key/Kconfig -------------------------------------------------------------------------------- /lib/location/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/location/Kconfig -------------------------------------------------------------------------------- /lib/location/location.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/location/location.c -------------------------------------------------------------------------------- /lib/location/scan_wifi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/location/scan_wifi.c -------------------------------------------------------------------------------- /lib/location/scan_wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/location/scan_wifi.h -------------------------------------------------------------------------------- /lib/modem_info/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/modem_info/Kconfig -------------------------------------------------------------------------------- /lib/modem_jwt/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/modem_jwt/Kconfig -------------------------------------------------------------------------------- /lib/nrf_modem_lib/diag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/nrf_modem_lib/diag.c -------------------------------------------------------------------------------- /lib/ntn/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/ntn/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ntn/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/ntn/Kconfig -------------------------------------------------------------------------------- /lib/ntn/ntn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/ntn/ntn.c -------------------------------------------------------------------------------- /lib/pcm_mix/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/pcm_mix/Kconfig -------------------------------------------------------------------------------- /lib/pcm_mix/pcm_mix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/pcm_mix/pcm_mix.c -------------------------------------------------------------------------------- /lib/pdn/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/pdn/CMakeLists.txt -------------------------------------------------------------------------------- /lib/pdn/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/pdn/Kconfig -------------------------------------------------------------------------------- /lib/pdn/esm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/pdn/esm.c -------------------------------------------------------------------------------- /lib/pdn/pdn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/pdn/pdn.c -------------------------------------------------------------------------------- /lib/qos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/qos/CMakeLists.txt -------------------------------------------------------------------------------- /lib/qos/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/qos/Kconfig -------------------------------------------------------------------------------- /lib/qos/qos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/qos/qos.c -------------------------------------------------------------------------------- /lib/ram_pwrdn/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/ram_pwrdn/Kconfig -------------------------------------------------------------------------------- /lib/sfloat/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/sfloat/Kconfig -------------------------------------------------------------------------------- /lib/sfloat/sfloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/sfloat/sfloat.c -------------------------------------------------------------------------------- /lib/sms/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/sms/CMakeLists.txt -------------------------------------------------------------------------------- /lib/sms/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/sms/Kconfig -------------------------------------------------------------------------------- /lib/sms/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/sms/parser.c -------------------------------------------------------------------------------- /lib/sms/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/sms/parser.h -------------------------------------------------------------------------------- /lib/sms/sms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/sms/sms.c -------------------------------------------------------------------------------- /lib/sms/sms_deliver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/sms/sms_deliver.c -------------------------------------------------------------------------------- /lib/sms/sms_deliver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/sms/sms_deliver.h -------------------------------------------------------------------------------- /lib/sms/sms_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/sms/sms_internal.h -------------------------------------------------------------------------------- /lib/sms/sms_submit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/sms/sms_submit.c -------------------------------------------------------------------------------- /lib/sms/sms_submit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/sms/sms_submit.h -------------------------------------------------------------------------------- /lib/st25r3911b/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/st25r3911b/Kconfig -------------------------------------------------------------------------------- /lib/supl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/supl/CMakeLists.txt -------------------------------------------------------------------------------- /lib/supl/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/supl/Kconfig -------------------------------------------------------------------------------- /lib/supl/include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/supl/include/utils.h -------------------------------------------------------------------------------- /lib/supl/os/lte_params.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/supl/os/lte_params.c -------------------------------------------------------------------------------- /lib/supl/os/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/supl/os/utils.c -------------------------------------------------------------------------------- /lib/tone/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/tone/CMakeLists.txt -------------------------------------------------------------------------------- /lib/tone/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/tone/Kconfig -------------------------------------------------------------------------------- /lib/tone/tone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/tone/tone.c -------------------------------------------------------------------------------- /lib/uicc_lwm2m/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/uicc_lwm2m/Kconfig -------------------------------------------------------------------------------- /lib/wave_gen/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/wave_gen/Kconfig -------------------------------------------------------------------------------- /lib/wave_gen/wave_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/lib/wave_gen/wave_gen.c -------------------------------------------------------------------------------- /modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/modules/CMakeLists.txt -------------------------------------------------------------------------------- /modules/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/modules/Kconfig -------------------------------------------------------------------------------- /modules/cjson/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/modules/cjson/Kconfig -------------------------------------------------------------------------------- /modules/coremark/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/modules/coremark/Kconfig -------------------------------------------------------------------------------- /modules/mcuboot/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/modules/mcuboot/Kconfig -------------------------------------------------------------------------------- /modules/mcuboot/tfm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/modules/mcuboot/tfm.conf -------------------------------------------------------------------------------- /modules/modules.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/modules/modules.cmake -------------------------------------------------------------------------------- /modules/trusted-firmware-m/Kconfig.psa.defconfig: -------------------------------------------------------------------------------- 1 | config MBEDTLS 2 | bool 3 | default n 4 | -------------------------------------------------------------------------------- /modules/wfa-qt/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/modules/wfa-qt/Kconfig -------------------------------------------------------------------------------- /samples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/samples/CMakeLists.txt -------------------------------------------------------------------------------- /samples/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/samples/Kconfig -------------------------------------------------------------------------------- /samples/app_jwt/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/samples/app_jwt/Kconfig -------------------------------------------------------------------------------- /samples/app_jwt/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/samples/app_jwt/prj.conf -------------------------------------------------------------------------------- /samples/basic/empty/prj.conf: -------------------------------------------------------------------------------- 1 | # Intentionally empty 2 | -------------------------------------------------------------------------------- /samples/caf/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/samples/caf/Kconfig -------------------------------------------------------------------------------- /samples/caf/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/samples/caf/README.rst -------------------------------------------------------------------------------- /samples/caf/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/samples/caf/prj.conf -------------------------------------------------------------------------------- /samples/caf/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/samples/caf/sample.yaml -------------------------------------------------------------------------------- /samples/caf/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/samples/caf/src/main.c -------------------------------------------------------------------------------- /samples/cellular/nrf_cloud_multi_service/.gitignore: -------------------------------------------------------------------------------- 1 | certs 2 | -------------------------------------------------------------------------------- /samples/common/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/samples/common/Kconfig -------------------------------------------------------------------------------- /samples/crypto/kmu_cracen_usage/keys/sources/aes_128_key.txt: -------------------------------------------------------------------------------- 1 | 0x44daa497a188ad60c7962cba7c5c7d8f 2 | -------------------------------------------------------------------------------- /samples/debug/ppi_trace/boards/nrf52dk_nrf52832.conf: -------------------------------------------------------------------------------- 1 | CONFIG_BT_LL_SW_SPLIT=y 2 | -------------------------------------------------------------------------------- /samples/dect/dect_phy/hello_dect/overlay-eu.conf: -------------------------------------------------------------------------------- 1 | CONFIG_CARRIER=1677 2 | -------------------------------------------------------------------------------- /samples/dfu/ab/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/samples/dfu/ab/Kconfig -------------------------------------------------------------------------------- /samples/dfu/ab/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/samples/dfu/ab/prj.conf -------------------------------------------------------------------------------- /samples/dfu/single_slot/prj.conf: -------------------------------------------------------------------------------- 1 | # nothing here 2 | -------------------------------------------------------------------------------- /samples/esb/esb_prx/boards/nrf54h20dk_nrf54h20_cpurad.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_GPPI_V1=n 2 | -------------------------------------------------------------------------------- /samples/esb/esb_ptx/boards/nrf54h20dk_nrf54h20_cpurad.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRFX_GPPI_V1=n 2 | -------------------------------------------------------------------------------- /samples/hw_id/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/samples/hw_id/README.rst -------------------------------------------------------------------------------- /samples/hw_id/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/samples/hw_id/prj.conf -------------------------------------------------------------------------------- /samples/hw_id/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/samples/hw_id/src/main.c -------------------------------------------------------------------------------- /samples/net/mqtt/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/samples/net/mqtt/Kconfig -------------------------------------------------------------------------------- /samples/net/udp/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/samples/net/udp/Kconfig -------------------------------------------------------------------------------- /samples/net/udp/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/samples/net/udp/prj.conf -------------------------------------------------------------------------------- /samples/nrf_compress/mcuboot_update/sysbuild/mcuboot.conf: -------------------------------------------------------------------------------- 1 | CONFIG_BOOT_MAX_IMG_SECTORS=512 2 | -------------------------------------------------------------------------------- /samples/nrf_rpc/protocols_serialization/client/find_test.ignore: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /samples/nrf_rpc/protocols_serialization/server/find_test.ignore: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /samples/wifi/shell/overlay-wpa_cli.conf: -------------------------------------------------------------------------------- 1 | CONFIG_WPA_CLI=y 2 | -------------------------------------------------------------------------------- /samples/wifi/sta/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/samples/wifi/sta/Kconfig -------------------------------------------------------------------------------- /samples/wifi/sta/boards/nrf52840dk_nrf52840.conf: -------------------------------------------------------------------------------- 1 | CONFIG_WIFI_READY_LIB=n 2 | -------------------------------------------------------------------------------- /samples/wifi/twt/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/samples/wifi/twt/Kconfig -------------------------------------------------------------------------------- /samples/zephyr/basic/blinky/prj.conf: -------------------------------------------------------------------------------- 1 | CONFIG_GPIO=y 2 | -------------------------------------------------------------------------------- /samples/zephyr/boards/nordic/system_off/Kconfig: -------------------------------------------------------------------------------- 1 | source "samples/boards/nordic/system_off/Kconfig" 2 | -------------------------------------------------------------------------------- /samples/zephyr/drivers/adc/adc_dt/prj.conf: -------------------------------------------------------------------------------- 1 | CONFIG_ADC=y 2 | -------------------------------------------------------------------------------- /samples/zephyr/drivers/adc/adc_sequence/prj.conf: -------------------------------------------------------------------------------- 1 | CONFIG_ADC=y 2 | -------------------------------------------------------------------------------- /samples/zephyr/drivers/counter/alarm/Kconfig: -------------------------------------------------------------------------------- 1 | source "samples/drivers/counter/alarm/Kconfig" 2 | -------------------------------------------------------------------------------- /samples/zephyr/drivers/i2c/rtio_loopback/Kconfig: -------------------------------------------------------------------------------- 1 | source "samples/drivers/i2c/rtio_loopback/Kconfig" 2 | -------------------------------------------------------------------------------- /samples/zephyr/drivers/mbox/Kconfig: -------------------------------------------------------------------------------- 1 | source "samples/drivers/mbox/Kconfig" 2 | -------------------------------------------------------------------------------- /samples/zephyr/drivers/mbox/remote/Kconfig: -------------------------------------------------------------------------------- 1 | source "samples/drivers/mbox/remote/Kconfig" 2 | -------------------------------------------------------------------------------- /samples/zephyr/drivers/mbox/sysbuild.conf: -------------------------------------------------------------------------------- 1 | SB_CONFIG_PARTITION_MANAGER=n 2 | -------------------------------------------------------------------------------- /samples/zephyr/subsys/ipc/ipc_service/icmsg/sysbuild.conf: -------------------------------------------------------------------------------- 1 | SB_CONFIG_PARTITION_MANAGER=n 2 | -------------------------------------------------------------------------------- /samples/zephyr/subsys/mgmt/mcumgr/smp_svr/sysbuild/mcuboot/prj.conf: -------------------------------------------------------------------------------- 1 | #empty 2 | -------------------------------------------------------------------------------- /samples/zephyr/subsys/usb/cdc_acm/Kconfig: -------------------------------------------------------------------------------- 1 | source "samples/subsys/usb/cdc_acm/Kconfig" 2 | -------------------------------------------------------------------------------- /samples/zephyr/subsys/usb/hid-keyboard/Kconfig: -------------------------------------------------------------------------------- 1 | source "samples/subsys/usb/hid-keyboard/Kconfig" 2 | -------------------------------------------------------------------------------- /samples/zephyr/subsys/usb/hid-mouse/Kconfig: -------------------------------------------------------------------------------- 1 | source "samples/subsys/usb/hid-mouse/Kconfig" 2 | -------------------------------------------------------------------------------- /samples/zephyr/subsys/usb/mass/Kconfig: -------------------------------------------------------------------------------- 1 | source "samples/subsys/usb/mass/Kconfig" 2 | -------------------------------------------------------------------------------- /scripts/cert_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/scripts/cert_tool.py -------------------------------------------------------------------------------- /scripts/ci/codeowners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/scripts/ci/codeowners.py -------------------------------------------------------------------------------- /scripts/ci/requirements.txt: -------------------------------------------------------------------------------- 1 | jinja2 2 | pyyaml 3 | junit-xml 4 | -------------------------------------------------------------------------------- /scripts/ci/tags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/scripts/ci/tags.yaml -------------------------------------------------------------------------------- /scripts/ci/test_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/scripts/ci/test_plan.py -------------------------------------------------------------------------------- /scripts/esb_sniffer/requirements.txt: -------------------------------------------------------------------------------- 1 | pynrfjprog 2 | pyserial 3 | -------------------------------------------------------------------------------- /scripts/hid_configurator/requirements_music_led_stream.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | wave 3 | pyaudio 4 | -------------------------------------------------------------------------------- /scripts/memfault/requirements.txt: -------------------------------------------------------------------------------- 1 | pc-ble-driver-py>=0.16.4 2 | requests 3 | -------------------------------------------------------------------------------- /scripts/ncs-docker-version.txt: -------------------------------------------------------------------------------- 1 | 5ea73affbf 2 | -------------------------------------------------------------------------------- /scripts/nrf_profiler/requirements.txt: -------------------------------------------------------------------------------- 1 | pynrfjprog 2 | matplotlib>=3.5.2 3 | numpy 4 | -------------------------------------------------------------------------------- /scripts/nrf_provision/fast_pair/requirements.txt: -------------------------------------------------------------------------------- 1 | intelhex 2 | -------------------------------------------------------------------------------- /scripts/quarantine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/scripts/quarantine.yaml -------------------------------------------------------------------------------- /scripts/reglock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/scripts/reglock.py -------------------------------------------------------------------------------- /scripts/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/scripts/requirements.txt -------------------------------------------------------------------------------- /scripts/shell/requirements.txt: -------------------------------------------------------------------------------- 1 | pc-ble-driver-py>=0.15.0 2 | nrfutil>=6.0.0 3 | -------------------------------------------------------------------------------- /scripts/tools-versions-linux-extra.txt: -------------------------------------------------------------------------------- 1 | ruby=2.7.0 2 | -------------------------------------------------------------------------------- /scripts/vale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/scripts/vale/README.md -------------------------------------------------------------------------------- /scripts/vale/vocab/Base/accept.txt: -------------------------------------------------------------------------------- 1 | nRF 2 | nrfutil 3 | Nordic 4 | SDFU 5 | Util 6 | -------------------------------------------------------------------------------- /scripts/west_commands/create_board/templates/nrf52/board-pinctrl.dtsi: -------------------------------------------------------------------------------- 1 | &pinctrl { 2 | }; 3 | -------------------------------------------------------------------------------- /scripts/west_commands/create_board/templates/nrf53/board-pinctrl.dtsi: -------------------------------------------------------------------------------- 1 | &pinctrl { 2 | }; 3 | -------------------------------------------------------------------------------- /scripts/west_commands/create_board/templates/nrf54l/board-pinctrl.dtsi: -------------------------------------------------------------------------------- 1 | &pinctrl { 2 | }; 3 | -------------------------------------------------------------------------------- /scripts/west_commands/create_board/templates/nrf91/board-pinctrl.dtsi: -------------------------------------------------------------------------------- 1 | &pinctrl { 2 | }; 3 | -------------------------------------------------------------------------------- /snippets/hpf/gpio/icbmsg/flpr.conf: -------------------------------------------------------------------------------- 1 | CONFIG_HPF_GPIO_BACKEND_ICBMSG=y 2 | -------------------------------------------------------------------------------- /snippets/hpf/gpio/icmsg/flpr.conf: -------------------------------------------------------------------------------- 1 | CONFIG_HPF_GPIO_BACKEND_ICMSG=y 2 | -------------------------------------------------------------------------------- /snippets/hpf/gpio/mbox/flpr.conf: -------------------------------------------------------------------------------- 1 | CONFIG_HPF_GPIO_BACKEND_MBOX=y 2 | -------------------------------------------------------------------------------- /soc/nordic/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/soc/nordic/Kconfig -------------------------------------------------------------------------------- /soc/nordic/Kconfig.soc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/soc/nordic/Kconfig.soc -------------------------------------------------------------------------------- /soc/nordic/nrf71/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/soc/nordic/nrf71/Kconfig -------------------------------------------------------------------------------- /soc/nordic/nrf71/soc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/soc/nordic/nrf71/soc.c -------------------------------------------------------------------------------- /soc/nordic/nrf71/soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/soc/nordic/nrf71/soc.h -------------------------------------------------------------------------------- /soc/nordic/soc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/soc/nordic/soc.yml -------------------------------------------------------------------------------- /subsys/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/CMakeLists.txt -------------------------------------------------------------------------------- /subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/Kconfig -------------------------------------------------------------------------------- /subsys/app_event_manager_profiler_tracer/em_pt.ld: -------------------------------------------------------------------------------- 1 | ITERABLE_SECTION_ROM(nrf_profiler_info, 4) 2 | -------------------------------------------------------------------------------- /subsys/bluetooth/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/bluetooth/Kconfig -------------------------------------------------------------------------------- /subsys/bluetooth/scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/bluetooth/scan.c -------------------------------------------------------------------------------- /subsys/bluetooth/services/fast_pair/fp_activation.ld: -------------------------------------------------------------------------------- 1 | ITERABLE_SECTION_ROM(fp_activation_module, 4) 2 | -------------------------------------------------------------------------------- /subsys/bootloader/image/fw_info.conf: -------------------------------------------------------------------------------- 1 | CONFIG_FW_INFO=y 2 | -------------------------------------------------------------------------------- /subsys/bootloader/image/multi_image_mcuboot.conf: -------------------------------------------------------------------------------- 1 | CONFIG_UPDATEABLE_IMAGE_NUMBER=2 2 | -------------------------------------------------------------------------------- /subsys/bootloader/image/secure_boot.conf: -------------------------------------------------------------------------------- 1 | CONFIG_SECURE_BOOT=y 2 | -------------------------------------------------------------------------------- /subsys/caf/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/caf/Kconfig -------------------------------------------------------------------------------- /subsys/debug/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/debug/Kconfig -------------------------------------------------------------------------------- /subsys/dfu/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/dfu/Kconfig -------------------------------------------------------------------------------- /subsys/dm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/dm/CMakeLists.txt -------------------------------------------------------------------------------- /subsys/dm/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/dm/Kconfig -------------------------------------------------------------------------------- /subsys/dm/dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/dm/dm.c -------------------------------------------------------------------------------- /subsys/dm/dm_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/dm/dm_io.c -------------------------------------------------------------------------------- /subsys/dm/dm_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/dm/dm_io.h -------------------------------------------------------------------------------- /subsys/dm/rpc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/dm/rpc/Kconfig -------------------------------------------------------------------------------- /subsys/dm/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/dm/time.c -------------------------------------------------------------------------------- /subsys/dm/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/dm/time.h -------------------------------------------------------------------------------- /subsys/dult/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/dult/Kconfig -------------------------------------------------------------------------------- /subsys/dult/battery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/dult/battery.c -------------------------------------------------------------------------------- /subsys/dult/bt/anos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/dult/bt/anos.c -------------------------------------------------------------------------------- /subsys/dult/id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/dult/id.c -------------------------------------------------------------------------------- /subsys/dult/sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/dult/sound.c -------------------------------------------------------------------------------- /subsys/dult/user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/dult/user.c -------------------------------------------------------------------------------- /subsys/emds/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/emds/Kconfig -------------------------------------------------------------------------------- /subsys/emds/emds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/emds/emds.c -------------------------------------------------------------------------------- /subsys/emds/emds_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/emds/emds_flash.c -------------------------------------------------------------------------------- /subsys/emds/emds_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/emds/emds_flash.h -------------------------------------------------------------------------------- /subsys/esb/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/esb/Kconfig -------------------------------------------------------------------------------- /subsys/esb/esb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/esb/esb.c -------------------------------------------------------------------------------- /subsys/esb/esb_dppi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/esb/esb_dppi.c -------------------------------------------------------------------------------- /subsys/esb/esb_ppi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/esb/esb_ppi.c -------------------------------------------------------------------------------- /subsys/esb/esb_ppi_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/esb/esb_ppi_api.h -------------------------------------------------------------------------------- /subsys/fw_info/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/fw_info/Kconfig -------------------------------------------------------------------------------- /subsys/fw_info/fw_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/fw_info/fw_info.c -------------------------------------------------------------------------------- /subsys/gazell/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/gazell/Kconfig -------------------------------------------------------------------------------- /subsys/gazell/gzp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/gazell/gzp.c -------------------------------------------------------------------------------- /subsys/gazell/gzp_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/gazell/gzp_host.c -------------------------------------------------------------------------------- /subsys/logging/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/logging/Kconfig -------------------------------------------------------------------------------- /subsys/mgmt/fmfu/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/mgmt/fmfu/Kconfig -------------------------------------------------------------------------------- /subsys/mpsl/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/mpsl/Kconfig -------------------------------------------------------------------------------- /subsys/mpsl/cx/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/mpsl/cx/Kconfig -------------------------------------------------------------------------------- /subsys/mpsl/fem/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/mpsl/fem/Kconfig -------------------------------------------------------------------------------- /subsys/mpsl/init/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/mpsl/init/Kconfig -------------------------------------------------------------------------------- /subsys/mpsl/pm/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/mpsl/pm/Kconfig -------------------------------------------------------------------------------- /subsys/net/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/net/Kconfig -------------------------------------------------------------------------------- /subsys/net/lib/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/net/lib/Kconfig -------------------------------------------------------------------------------- /subsys/net/lib/wifi_prov_core/proto/response.options: -------------------------------------------------------------------------------- 1 | ConnectionInfo.ip4_addr max_size:4 2 | -------------------------------------------------------------------------------- /subsys/net/lib/wifi_prov_core/proto/version.options: -------------------------------------------------------------------------------- 1 | Info.version int_size:IS_8 2 | -------------------------------------------------------------------------------- /subsys/nfc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/nfc/Kconfig -------------------------------------------------------------------------------- /subsys/nfc/lib/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/nfc/lib/Kconfig -------------------------------------------------------------------------------- /subsys/nfc/ndef/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/nfc/ndef/Kconfig -------------------------------------------------------------------------------- /subsys/nfc/ndef/ch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/nfc/ndef/ch.c -------------------------------------------------------------------------------- /subsys/nfc/ndef/ch_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/nfc/ndef/ch_msg.c -------------------------------------------------------------------------------- /subsys/nfc/ndef/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/nfc/ndef/msg.c -------------------------------------------------------------------------------- /subsys/nfc/ndef/record.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/nfc/ndef/record.c -------------------------------------------------------------------------------- /subsys/nfc/rpc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/nfc/rpc/Kconfig -------------------------------------------------------------------------------- /subsys/nfc/t2t/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/nfc/t2t/Kconfig -------------------------------------------------------------------------------- /subsys/nfc/t2t/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/nfc/t2t/parser.c -------------------------------------------------------------------------------- /subsys/nfc/t4t/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/nfc/t4t/Kconfig -------------------------------------------------------------------------------- /subsys/nfc/t4t/apdu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/nfc/t4t/apdu.c -------------------------------------------------------------------------------- /subsys/nfc/t4t/cc_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/nfc/t4t/cc_file.c -------------------------------------------------------------------------------- /subsys/nfc/t4t/isodep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/nfc/t4t/isodep.c -------------------------------------------------------------------------------- /subsys/nfc/tnep/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/nfc/tnep/Kconfig -------------------------------------------------------------------------------- /subsys/nfc/tnep/ch/tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/nfc/tnep/ch/tag.c -------------------------------------------------------------------------------- /subsys/nfc/tnep/poller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/nfc/tnep/poller.c -------------------------------------------------------------------------------- /subsys/nfc/tnep/tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/nfc/tnep/tag.c -------------------------------------------------------------------------------- /subsys/nfc/tnep/tag.ld: -------------------------------------------------------------------------------- 1 | ITERABLE_SECTION_ROM(nfc_tnep_tag_service, 4) 2 | -------------------------------------------------------------------------------- /subsys/nrf_rpc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/nrf_rpc/Kconfig -------------------------------------------------------------------------------- /subsys/pcd/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/pcd/Kconfig -------------------------------------------------------------------------------- /subsys/pcd/pcd.conf: -------------------------------------------------------------------------------- 1 | CONFIG_PCD_APP=y 2 | -------------------------------------------------------------------------------- /subsys/pcd/src/pcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/pcd/src/pcd.c -------------------------------------------------------------------------------- /subsys/settings/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/settings/Kconfig -------------------------------------------------------------------------------- /subsys/shell/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/shell/Kconfig -------------------------------------------------------------------------------- /subsys/shell/shell_ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/shell/shell_ipc.c -------------------------------------------------------------------------------- /subsys/shell/shell_nfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/subsys/shell/shell_nfc.c -------------------------------------------------------------------------------- /sysbuild/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/sysbuild/CMakeLists.txt -------------------------------------------------------------------------------- /sysbuild/Kconfig.appcore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/sysbuild/Kconfig.appcore -------------------------------------------------------------------------------- /sysbuild/Kconfig.cracen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/sysbuild/Kconfig.cracen -------------------------------------------------------------------------------- /sysbuild/Kconfig.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/sysbuild/Kconfig.dfu -------------------------------------------------------------------------------- /sysbuild/Kconfig.hpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/sysbuild/Kconfig.hpf -------------------------------------------------------------------------------- /sysbuild/Kconfig.matter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/sysbuild/Kconfig.matter -------------------------------------------------------------------------------- /sysbuild/Kconfig.mcuboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/sysbuild/Kconfig.mcuboot -------------------------------------------------------------------------------- /sysbuild/Kconfig.netcore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/sysbuild/Kconfig.netcore -------------------------------------------------------------------------------- /sysbuild/Kconfig.pprcore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/sysbuild/Kconfig.pprcore -------------------------------------------------------------------------------- /sysbuild/Kconfig.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/sysbuild/Kconfig.tfm -------------------------------------------------------------------------------- /sysbuild/Kconfig.wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/sysbuild/Kconfig.wifi -------------------------------------------------------------------------------- /sysbuild/Kconfig.xip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/sysbuild/Kconfig.xip -------------------------------------------------------------------------------- /sysbuild/Kconfig.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/sysbuild/Kconfig.zip -------------------------------------------------------------------------------- /sysbuild/appcore.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/sysbuild/appcore.cmake -------------------------------------------------------------------------------- /sysbuild/flprcore.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/sysbuild/flprcore.cmake -------------------------------------------------------------------------------- /sysbuild/mcuboot.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/sysbuild/mcuboot.cmake -------------------------------------------------------------------------------- /sysbuild/netcore.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/sysbuild/netcore.cmake -------------------------------------------------------------------------------- /sysbuild/pprcore.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/sysbuild/pprcore.cmake -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/tests/Kconfig -------------------------------------------------------------------------------- /tests/benchmarks/current_consumption/multicore_system_off/remote/prj.conf: -------------------------------------------------------------------------------- 1 | CONFIG_PM_DEVICE=y 2 | -------------------------------------------------------------------------------- /tests/benchmarks/multicore/idle_adc/disable_s2ram.overlay: -------------------------------------------------------------------------------- 1 | &s2ram { 2 | status = "disabled"; 3 | }; 4 | -------------------------------------------------------------------------------- /tests/benchmarks/multicore/idle_ipc/disable_s2ram.overlay: -------------------------------------------------------------------------------- 1 | &s2ram { 2 | status = "disabled"; 3 | }; 4 | -------------------------------------------------------------------------------- /tests/benchmarks/multicore/idle_ipc/sysbuild/mcuboot.conf: -------------------------------------------------------------------------------- 1 | CONFIG_SOC_EARLY_RESET_HOOK=y 2 | -------------------------------------------------------------------------------- /tests/crypto/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/tests/crypto/Kconfig -------------------------------------------------------------------------------- /tests/crypto/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/tests/crypto/README.rst -------------------------------------------------------------------------------- /tests/crypto/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/tests/crypto/prj.conf -------------------------------------------------------------------------------- /tests/drivers/flash/flash_rpc/sysbuild.conf: -------------------------------------------------------------------------------- 1 | SB_CONFIG_NETCORE_EMPTY=y 2 | -------------------------------------------------------------------------------- /tests/drivers/gpio/gpio_nfct/boards/nrf54h20dk_nrf54h20_cpuapp.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRF_REGTOOL_VERBOSITY=1 2 | -------------------------------------------------------------------------------- /tests/drivers/gpio/gpio_nfct/boards/nrf54h20dk_nrf54h20_cpurad.conf: -------------------------------------------------------------------------------- 1 | CONFIG_NRF_REGTOOL_VERBOSITY=1 2 | -------------------------------------------------------------------------------- /tests/drivers/grtc/grtc_reset/prj.conf: -------------------------------------------------------------------------------- 1 | CONFIG_LOG=y 2 | -------------------------------------------------------------------------------- /tests/drivers/i2c/twim_instances/sysbuild/vpr_launcher/prj.conf: -------------------------------------------------------------------------------- 1 | # nothing here 2 | -------------------------------------------------------------------------------- /tests/drivers/spi/spim_instances/sysbuild/vpr_launcher/prj.conf: -------------------------------------------------------------------------------- 1 | # nothing here 2 | -------------------------------------------------------------------------------- /tests/drivers/watchdog/wdt_instances/sysbuild/vpr_launcher/prj.conf: -------------------------------------------------------------------------------- 1 | # nothing here 2 | -------------------------------------------------------------------------------- /tests/lib/hw_id/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/tests/lib/hw_id/Kconfig -------------------------------------------------------------------------------- /tests/lib/hw_id/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/tests/lib/hw_id/prj.conf -------------------------------------------------------------------------------- /tests/lib/ntn/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/tests/lib/ntn/Kconfig -------------------------------------------------------------------------------- /tests/lib/ntn/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/tests/lib/ntn/prj.conf -------------------------------------------------------------------------------- /tests/lib/ntn/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/tests/lib/ntn/src/main.c -------------------------------------------------------------------------------- /tests/lib/qos/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/tests/lib/qos/prj.conf -------------------------------------------------------------------------------- /tests/lib/sms/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/tests/lib/sms/prj.conf -------------------------------------------------------------------------------- /tests/lib/tone/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/tests/lib/tone/prj.conf -------------------------------------------------------------------------------- /tests/mocks/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/tests/mocks/Kconfig -------------------------------------------------------------------------------- /tests/nrf5340_audio/lc3_file/prj.conf: -------------------------------------------------------------------------------- 1 | CONFIG_ZTEST=y 2 | -------------------------------------------------------------------------------- /tests/subsys/bootloader/boot_chains/prj.conf: -------------------------------------------------------------------------------- 1 | # Intentionally left empty. 2 | -------------------------------------------------------------------------------- /tests/subsys/ipc/ipc_latency/boards/nrf5340dk_nrf5340_cpuapp.conf: -------------------------------------------------------------------------------- 1 | CONFIG_SOC_NRF53_CPUNET_ENABLE=y 2 | -------------------------------------------------------------------------------- /tests/subsys/kmu/hello_for_kmu/prj.conf: -------------------------------------------------------------------------------- 1 | # nothing here 2 | -------------------------------------------------------------------------------- /tests/subsys/net/lib/lwm2m_client_utils/src/iterables.ld: -------------------------------------------------------------------------------- 1 | ITERABLE_SECTION_ROM(lwm2m_init_func, 4) 2 | -------------------------------------------------------------------------------- /tests/subsys/net/lib/lwm2m_fota_utils/src/iterables.ld: -------------------------------------------------------------------------------- 1 | ITERABLE_SECTION_ROM(lwm2m_init_func, 4) 2 | -------------------------------------------------------------------------------- /tests/unity/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/tests/unity/Kconfig -------------------------------------------------------------------------------- /tests/unity/wrap_test/src/test_code/.clang-format: -------------------------------------------------------------------------------- 1 | { 2 | "DisableFormat": true 3 | } 4 | -------------------------------------------------------------------------------- /tests/zephyr/drivers/clock_control/clock_control_api/prj.conf: -------------------------------------------------------------------------------- 1 | CONFIG_ZTEST=y 2 | -------------------------------------------------------------------------------- /tests/zephyr/drivers/clock_control/nrf_lf_clock_start/prj.conf: -------------------------------------------------------------------------------- 1 | CONFIG_ZTEST=y 2 | -------------------------------------------------------------------------------- /tests/zephyr/drivers/clock_control/onoff/prj.conf: -------------------------------------------------------------------------------- 1 | CONFIG_ZTEST=y 2 | -------------------------------------------------------------------------------- /tests/zephyr/drivers/flash/negative_tests/sysbuild.conf: -------------------------------------------------------------------------------- 1 | SB_CONFIG_PARTITION_MANAGER=n 2 | -------------------------------------------------------------------------------- /tests/zephyr/drivers/flash/negative_tests_nrf7120/sysbuild.conf: -------------------------------------------------------------------------------- 1 | SB_CONFIG_PARTITION_MANAGER=n 2 | -------------------------------------------------------------------------------- /tests/zephyr/drivers/retained_mem/api/Kconfig: -------------------------------------------------------------------------------- 1 | source "tests/drivers/retained_mem/api/Kconfig" 2 | -------------------------------------------------------------------------------- /tests/zephyr/drivers/retained_mem/api/boards/nrf54ls05dk_nrf54ls05b_cpuapp.conf: -------------------------------------------------------------------------------- 1 | CONFIG_POWEROFF=y 2 | -------------------------------------------------------------------------------- /tests/zephyr/drivers/retained_mem/api/boards/nrf54lv10dk_nrf54lv10a_cpuapp.conf: -------------------------------------------------------------------------------- 1 | CONFIG_POWEROFF=y 2 | -------------------------------------------------------------------------------- /west-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/west-test.yml -------------------------------------------------------------------------------- /west.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/west.yml -------------------------------------------------------------------------------- /zephyr/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrf/HEAD/zephyr/module.yml --------------------------------------------------------------------------------