├── .gitignore ├── README.rst ├── ble_comprehensive ├── CMakeLists.txt ├── Kconfig ├── Kconfig.sysbuild ├── README.rst ├── boards │ ├── nrf52840dk_nrf52840.conf │ ├── nrf52840dk_nrf52840.overlay │ ├── nrf5340dk_nrf5340_cpuapp.conf │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ ├── nrf54l15dk_nrf54l15_cpuapp.conf │ ├── nrf54l15dk_nrf54l15_cpuapp.overlay │ ├── nrf54l15dk_nrf54l15_cpuapp_flpr.conf │ ├── nrf54l15dk_nrf54l15_cpuapp_flpr.overlay │ ├── nrf7002dk_nrf5340_cpuapp.conf │ ├── nrf7002dk_nrf5340_cpuapp.overlay │ ├── nrf7002dk_nrf5340_cpuapp_nrf7001.conf │ └── nrf7002dk_nrf5340_cpuapp_nrf7001.overlay ├── dts │ └── bindings │ │ └── spi-user-define.yaml ├── pm_static_nrf52840dk_nrf52840.yml ├── pm_static_nrf5340dk_nrf5340_cpuapp.yml ├── pm_static_nrf5340dk_nrf5340_cpuapp_hci_ipc.yml ├── pm_static_nrf54l15dk_nrf54l15_cpuapp.yml ├── pm_static_nrf54l15dk_nrf54l15_cpuapp_flpr.yml ├── pm_static_nrf7002dk_nrf5340_cpuapp.yml ├── pm_static_nrf7002dk_nrf5340_cpuapp_nrf7001.yml ├── prj.conf ├── prj_flpr.conf ├── program.bat ├── program_flpr.bat ├── sample.yaml ├── sdk_change │ ├── dtm_in_app_ncs_v3.0.0 │ │ └── mpsl_init.c │ ├── ncs_v1.5.x │ │ ├── bootloader │ │ │ └── mcuboot │ │ │ │ └── boot │ │ │ │ └── bootutil │ │ │ │ └── src │ │ │ │ └── loader.c │ │ ├── ncs_samples │ │ │ └── comprehensive │ │ │ │ ├── child_image │ │ │ │ ├── hci_rpmsg.conf │ │ │ │ └── mcuboot.conf │ │ │ │ └── prj.conf │ │ ├── nrf │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ └── nrfxlib │ │ │ └── mpsl │ │ │ └── include │ │ │ └── nrf_errno.h │ ├── ncs_v1.6.x │ │ ├── bootloader │ │ │ └── mcuboot │ │ │ │ └── boot │ │ │ │ └── bootutil │ │ │ │ └── src │ │ │ │ └── loader.c │ │ ├── ncs_samples │ │ │ └── comprehensive │ │ │ │ ├── child_image │ │ │ │ ├── hci_rpmsg.conf │ │ │ │ └── mcuboot.conf │ │ │ │ └── prj.conf │ │ └── nrf │ │ │ └── subsys │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── nrf_dfu │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── adapt_rpc_app.c │ │ │ ├── adapt_rpc_net.c │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ ├── dfu_tran_sect.ld │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ ├── nrf_dfu_ble.c │ │ │ ├── nrf_dfu_serial.c │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ └── slip.c │ │ │ └── partition_manager │ │ │ └── flash_map_partition_manager.c │ ├── ncs_v1.7.x │ │ ├── bootloader │ │ │ └── mcuboot │ │ │ │ └── boot │ │ │ │ └── bootutil │ │ │ │ └── src │ │ │ │ └── loader.c │ │ ├── ncs_samples │ │ │ └── comprehensive │ │ │ │ ├── child_image │ │ │ │ ├── hci_rpmsg.conf │ │ │ │ └── mcuboot.conf │ │ │ │ └── prj.conf │ │ └── nrf │ │ │ └── subsys │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── nrf_dfu │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── adapt_rpc_app.c │ │ │ ├── adapt_rpc_net.c │ │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── crc32.c │ │ │ ├── dfu-cc.options │ │ │ ├── dfu-cc.pb.c │ │ │ ├── dfu-cc.proto │ │ │ ├── dfu_trans.ld │ │ │ ├── nrf_dfu.c │ │ │ ├── nrf_dfu_flash.c │ │ │ ├── nrf_dfu_handling_error.c │ │ │ ├── nrf_dfu_req_handler.c │ │ │ ├── nrf_dfu_settings.c │ │ │ ├── nrf_dfu_transport.c │ │ │ ├── nrf_dfu_validation.c │ │ │ ├── pb_common.c │ │ │ └── pb_decode.c │ │ │ ├── dfu_tran_sect.ld │ │ │ ├── inc │ │ │ ├── app_util.h │ │ │ ├── common_ids.h │ │ │ ├── crc32.h │ │ │ ├── dfu-cc.pb.h │ │ │ ├── nordic_common.h │ │ │ ├── nrf_dfu.h │ │ │ ├── nrf_dfu_flash.h │ │ │ ├── nrf_dfu_handling_error.h │ │ │ ├── nrf_dfu_req_handler.h │ │ │ ├── nrf_dfu_serial.h │ │ │ ├── nrf_dfu_settings.h │ │ │ ├── nrf_dfu_transport.h │ │ │ ├── nrf_dfu_types.h │ │ │ ├── nrf_dfu_validation.h │ │ │ ├── nrf_error.h │ │ │ ├── nrf_section.h │ │ │ ├── pb.h │ │ │ ├── pb_common.h │ │ │ ├── pb_decode.h │ │ │ ├── sdk_config.h │ │ │ └── slip.h │ │ │ ├── nrf_dfu_ble.c │ │ │ ├── nrf_dfu_serial.c │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ └── slip.c │ ├── ncs_v1.8.x │ │ ├── bootloader │ │ │ └── mcuboot │ │ │ │ └── boot │ │ │ │ └── bootutil │ │ │ │ └── src │ │ │ │ └── loader.c │ │ └── nrf │ │ │ └── subsys │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── nrf_dfu │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── adapt_rpc_app.c │ │ │ ├── adapt_rpc_net.c │ │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── crc32.c │ │ │ ├── dfu-cc.options │ │ │ ├── dfu-cc.pb.c │ │ │ ├── dfu-cc.proto │ │ │ ├── dfu_trans.ld │ │ │ ├── nrf_dfu.c │ │ │ ├── nrf_dfu_flash.c │ │ │ ├── nrf_dfu_handling_error.c │ │ │ ├── nrf_dfu_req_handler.c │ │ │ ├── nrf_dfu_settings.c │ │ │ ├── nrf_dfu_transport.c │ │ │ ├── nrf_dfu_validation.c │ │ │ ├── pb_common.c │ │ │ └── pb_decode.c │ │ │ ├── dfu_tran_sect.ld │ │ │ ├── inc │ │ │ ├── app_util.h │ │ │ ├── common_ids.h │ │ │ ├── crc32.h │ │ │ ├── dfu-cc.pb.h │ │ │ ├── nordic_common.h │ │ │ ├── nrf_dfu.h │ │ │ ├── nrf_dfu_flash.h │ │ │ ├── nrf_dfu_handling_error.h │ │ │ ├── nrf_dfu_req_handler.h │ │ │ ├── nrf_dfu_serial.h │ │ │ ├── nrf_dfu_settings.h │ │ │ ├── nrf_dfu_transport.h │ │ │ ├── nrf_dfu_types.h │ │ │ ├── nrf_dfu_validation.h │ │ │ ├── nrf_error.h │ │ │ ├── nrf_section.h │ │ │ ├── pb.h │ │ │ ├── pb_common.h │ │ │ ├── pb_decode.h │ │ │ ├── sdk_config.h │ │ │ └── slip.h │ │ │ ├── nrf_dfu_ble.c │ │ │ ├── nrf_dfu_serial.c │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ └── slip.c │ ├── ncs_v1.9.x │ │ ├── bootloader │ │ │ └── mcuboot │ │ │ │ └── boot │ │ │ │ └── bootutil │ │ │ │ └── src │ │ │ │ └── loader.c │ │ └── nrf │ │ │ └── subsys │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── nrf_dfu │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── adapt_rpc_app.c │ │ │ ├── adapt_rpc_net.c │ │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── crc32.c │ │ │ ├── dfu-cc.options │ │ │ ├── dfu-cc.pb.c │ │ │ ├── dfu-cc.proto │ │ │ ├── dfu_trans.ld │ │ │ ├── nrf_dfu.c │ │ │ ├── nrf_dfu_flash.c │ │ │ ├── nrf_dfu_handling_error.c │ │ │ ├── nrf_dfu_req_handler.c │ │ │ ├── nrf_dfu_settings.c │ │ │ ├── nrf_dfu_transport.c │ │ │ ├── nrf_dfu_validation.c │ │ │ ├── pb_common.c │ │ │ └── pb_decode.c │ │ │ ├── dfu_tran_sect.ld │ │ │ ├── inc │ │ │ ├── app_util.h │ │ │ ├── common_ids.h │ │ │ ├── crc32.h │ │ │ ├── dfu-cc.pb.h │ │ │ ├── nordic_common.h │ │ │ ├── nrf_dfu.h │ │ │ ├── nrf_dfu_flash.h │ │ │ ├── nrf_dfu_handling_error.h │ │ │ ├── nrf_dfu_req_handler.h │ │ │ ├── nrf_dfu_serial.h │ │ │ ├── nrf_dfu_settings.h │ │ │ ├── nrf_dfu_transport.h │ │ │ ├── nrf_dfu_types.h │ │ │ ├── nrf_dfu_validation.h │ │ │ ├── nrf_error.h │ │ │ ├── nrf_section.h │ │ │ ├── pb.h │ │ │ ├── pb_common.h │ │ │ ├── pb_decode.h │ │ │ ├── sdk_config.h │ │ │ └── slip.h │ │ │ ├── nrf_dfu_ble.c │ │ │ ├── nrf_dfu_serial.c │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ └── slip.c │ ├── ncs_v2.0.x │ │ ├── bootloader │ │ │ └── mcuboot │ │ │ │ └── boot │ │ │ │ └── bootutil │ │ │ │ └── src │ │ │ │ └── loader.c │ │ └── nrf │ │ │ └── modules │ │ │ └── mcuboot │ │ │ └── hooks │ │ │ └── nrf53_hooks.c │ ├── ncs_v2.5.x │ │ └── nrf │ │ │ └── samples │ │ │ └── common │ │ │ └── mcumgr_bt_ota_dfu │ │ │ └── Kconfig │ └── ncs_v2.7.x │ │ └── nrf │ │ └── samples │ │ └── common │ │ └── mcumgr_bt_ota_dfu │ │ └── Kconfig ├── src │ ├── adc_thread.c │ ├── dtm │ │ ├── CMakeLists.txt │ │ ├── dtm.c │ │ ├── dtm.h │ │ ├── dtm_hw.c │ │ ├── dtm_hw.h │ │ ├── dtm_hw_config.h │ │ ├── dtm_main.c │ │ ├── rpc │ │ │ └── dtm_serialization.h │ │ └── transport │ │ │ ├── dtm_hci.c │ │ │ ├── dtm_transport.h │ │ │ ├── dtm_uart_twowire.c │ │ │ ├── dtm_uart_wait.c │ │ │ ├── dtm_uart_wait.h │ │ │ ├── hci_uart.c │ │ │ ├── hci_uart.h │ │ │ └── hci_uart_remote.c │ ├── i2c_thread.c │ ├── io_int_thread.c │ ├── main.c │ ├── nvs_thread.c │ ├── settings_thread.c │ ├── spi_thread.c │ └── uart_thread.c ├── sysbuild.conf ├── sysbuild │ ├── b0n.conf │ ├── ipc_radio.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 │ │ ├── nrf7002dk_nrf5340_cpuapp.conf │ │ ├── nrf7002dk_nrf5340_cpuapp.overlay │ │ ├── nrf7002dk_nrf5340_cpuapp_nrf7001.conf │ │ └── nrf7002dk_nrf5340_cpuapp_nrf7001.overlay │ │ └── prj.conf └── sysbuild_hci_ipc.conf ├── ble_ipc ├── comprehensive_ipc │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── boards │ │ └── nrf5340dk_nrf5340_cpuapp.overlay │ ├── child_image │ │ ├── hci_rpmsg.conf │ │ ├── mcuboot.conf │ │ ├── mcuboot.overlay │ │ └── mcuboot │ │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ └── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ └── prj.conf │ ├── pm_static.yml │ ├── prj.conf │ ├── program.bat │ ├── sample.yaml │ ├── sdk_change │ │ ├── ncs_v1.5.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ ├── ncs_samples │ │ │ │ ├── comprehensive_rpc │ │ │ │ │ └── prj.conf │ │ │ │ └── netcore_ble │ │ │ │ │ └── prj.conf │ │ │ ├── nrf │ │ │ │ ├── cmake │ │ │ │ │ └── partition_manager.cmake │ │ │ │ ├── modules │ │ │ │ │ └── mcuboot │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── samples │ │ │ │ │ └── CMakeLists.txt │ │ │ │ └── subsys │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── nrf_dfu │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ │ ├── common │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── crc32.c │ │ │ │ │ │ ├── dfu-cc.options │ │ │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ │ │ ├── dfu-cc.proto │ │ │ │ │ │ ├── dfu_trans.ld │ │ │ │ │ │ ├── nrf_dfu.c │ │ │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ │ │ ├── pb_common.c │ │ │ │ │ │ └── pb_decode.c │ │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ │ ├── inc │ │ │ │ │ │ ├── app_util.h │ │ │ │ │ │ ├── common_ids.h │ │ │ │ │ │ ├── crc32.h │ │ │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ │ │ ├── nordic_common.h │ │ │ │ │ │ ├── nrf_dfu.h │ │ │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ │ │ ├── nrf_error.h │ │ │ │ │ │ ├── nrf_section.h │ │ │ │ │ │ ├── pb.h │ │ │ │ │ │ ├── pb_common.h │ │ │ │ │ │ ├── pb_decode.h │ │ │ │ │ │ ├── sdk_config.h │ │ │ │ │ │ └── slip.h │ │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ │ └── slip.c │ │ │ │ │ └── nrf_rpc │ │ │ │ │ └── rp_ll.c │ │ │ └── nrfxlib │ │ │ │ └── mpsl │ │ │ │ └── include │ │ │ │ └── nrf_errno.h │ │ ├── ncs_v1.6.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ ├── ncs_samples │ │ │ │ ├── comprehensive_rpc │ │ │ │ │ └── prj.conf │ │ │ │ └── netcore_ble │ │ │ │ │ └── prj.conf │ │ │ └── nrf │ │ │ │ ├── cmake │ │ │ │ └── partition_manager.cmake │ │ │ │ ├── modules │ │ │ │ └── mcuboot │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── samples │ │ │ │ └── CMakeLists.txt │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── crc32.c │ │ │ │ │ ├── dfu-cc.options │ │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ │ ├── dfu-cc.proto │ │ │ │ │ ├── dfu_trans.ld │ │ │ │ │ ├── nrf_dfu.c │ │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ │ ├── pb_common.c │ │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ │ ├── app_util.h │ │ │ │ │ ├── common_ids.h │ │ │ │ │ ├── crc32.h │ │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ │ ├── nordic_common.h │ │ │ │ │ ├── nrf_dfu.h │ │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ │ ├── nrf_error.h │ │ │ │ │ ├── nrf_section.h │ │ │ │ │ ├── pb.h │ │ │ │ │ ├── pb_common.h │ │ │ │ │ ├── pb_decode.h │ │ │ │ │ ├── sdk_config.h │ │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ │ │ ├── nrf_rpc │ │ │ │ └── rp_ll.c │ │ │ │ └── partition_manager │ │ │ │ └── flash_map_partition_manager.c │ │ ├── ncs_v1.7.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ ├── ncs_samples │ │ │ │ ├── comprehensive_rpc │ │ │ │ │ ├── child_image │ │ │ │ │ │ └── mcuboot.conf │ │ │ │ │ └── prj.conf │ │ │ │ └── netcore_ble │ │ │ │ │ ├── child_image │ │ │ │ │ └── b0n.conf │ │ │ │ │ └── prj.conf │ │ │ └── nrf │ │ │ │ ├── samples │ │ │ │ └── CMakeLists.txt │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v1.8.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ │ ├── samples │ │ │ │ └── CMakeLists.txt │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v1.9.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ │ ├── samples │ │ │ │ └── CMakeLists.txt │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v2.0.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ │ ├── modules │ │ │ │ └── mcuboot │ │ │ │ │ └── hooks │ │ │ │ │ └── nrf53_hooks.c │ │ │ │ └── samples │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Kconfig │ │ └── ncs_v2.2.x │ │ │ └── nrf │ │ │ └── samples │ │ │ ├── CMakeLists.txt │ │ │ └── Kconfig │ ├── src │ │ ├── adc_thread.c │ │ ├── flash_thread.c │ │ ├── iic_thread.c │ │ ├── ipc_app_api.c │ │ ├── ipc_app_api.h │ │ ├── ipc_app_smp_bt.c │ │ ├── ipc_app_smp_bt.h │ │ ├── ipc_lib.c │ │ ├── ipc_lib.h │ │ ├── ipc_thread.c │ │ ├── main.c │ │ ├── smp_reassembly.h │ │ ├── spi_thread.c │ │ └── uart_thread.c │ └── update │ │ └── zip_generate.bat ├── flash_script │ ├── flash.bat │ └── root-ec-p256.pem ├── ipc_cmd_ids.h ├── netcore_ipc │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── child_image │ │ └── b0n.conf │ ├── prj.conf │ ├── program_53.bat │ ├── sample.yaml │ └── src │ │ ├── ipc_lib.c │ │ ├── ipc_lib.h │ │ ├── ipc_net_api.c │ │ ├── ipc_net_api.h │ │ ├── ipc_net_smp_bt.c │ │ ├── ipc_net_smp_bt.h │ │ └── main.c └── uart_nrf_dfu │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── app.overlay │ ├── child_image │ ├── hci_rpmsg.conf │ └── mcuboot.conf │ ├── pm_static.yml │ ├── prj.conf │ ├── program.bat │ ├── sample.yaml │ ├── sdk_change │ ├── ncs_v1.9.x │ │ ├── bootloader │ │ │ └── mcuboot │ │ │ │ └── boot │ │ │ │ └── bootutil │ │ │ │ └── src │ │ │ │ └── loader.c │ │ └── nrf │ │ │ ├── samples │ │ │ └── CMakeLists.txt │ │ │ └── subsys │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── nrf_dfu │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── adapt_rpc_app.c │ │ │ ├── adapt_rpc_net.c │ │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── crc32.c │ │ │ ├── dfu-cc.options │ │ │ ├── dfu-cc.pb.c │ │ │ ├── dfu-cc.proto │ │ │ ├── dfu_trans.ld │ │ │ ├── nrf_dfu.c │ │ │ ├── nrf_dfu_flash.c │ │ │ ├── nrf_dfu_handling_error.c │ │ │ ├── nrf_dfu_req_handler.c │ │ │ ├── nrf_dfu_settings.c │ │ │ ├── nrf_dfu_transport.c │ │ │ ├── nrf_dfu_validation.c │ │ │ ├── pb_common.c │ │ │ └── pb_decode.c │ │ │ ├── dfu_tran_sect.ld │ │ │ ├── inc │ │ │ ├── app_util.h │ │ │ ├── common_ids.h │ │ │ ├── crc32.h │ │ │ ├── dfu-cc.pb.h │ │ │ ├── nordic_common.h │ │ │ ├── nrf_dfu.h │ │ │ ├── nrf_dfu_flash.h │ │ │ ├── nrf_dfu_handling_error.h │ │ │ ├── nrf_dfu_req_handler.h │ │ │ ├── nrf_dfu_serial.h │ │ │ ├── nrf_dfu_settings.h │ │ │ ├── nrf_dfu_transport.h │ │ │ ├── nrf_dfu_types.h │ │ │ ├── nrf_dfu_validation.h │ │ │ ├── nrf_error.h │ │ │ ├── nrf_section.h │ │ │ ├── pb.h │ │ │ ├── pb_common.h │ │ │ ├── pb_decode.h │ │ │ ├── sdk_config.h │ │ │ └── slip.h │ │ │ ├── nrf_dfu_ble.c │ │ │ ├── nrf_dfu_serial.c │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ └── slip.c │ └── ncs_v2.0.x │ │ ├── bootloader │ │ └── mcuboot │ │ │ └── boot │ │ │ └── bootutil │ │ │ └── src │ │ │ └── loader.c │ │ └── nrf │ │ ├── samples │ │ ├── CMakeLists.txt │ │ └── Kconfig │ │ └── subsys │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── nrf_dfu │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── adapt_rpc_app.c │ │ ├── adapt_rpc_net.c │ │ ├── common │ │ ├── CMakeLists.txt │ │ ├── crc32.c │ │ ├── dfu-cc.options │ │ ├── dfu-cc.pb.c │ │ ├── dfu-cc.proto │ │ ├── dfu_trans.ld │ │ ├── nrf_dfu.c │ │ ├── nrf_dfu_flash.c │ │ ├── nrf_dfu_handling_error.c │ │ ├── nrf_dfu_req_handler.c │ │ ├── nrf_dfu_settings.c │ │ ├── nrf_dfu_transport.c │ │ ├── nrf_dfu_validation.c │ │ ├── pb_common.c │ │ └── pb_decode.c │ │ ├── dfu_tran_sect.ld │ │ ├── inc │ │ ├── app_util.h │ │ ├── common_ids.h │ │ ├── crc32.h │ │ ├── dfu-cc.pb.h │ │ ├── nordic_common.h │ │ ├── nrf_dfu.h │ │ ├── nrf_dfu_flash.h │ │ ├── nrf_dfu_handling_error.h │ │ ├── nrf_dfu_req_handler.h │ │ ├── nrf_dfu_serial.h │ │ ├── nrf_dfu_settings.h │ │ ├── nrf_dfu_transport.h │ │ ├── nrf_dfu_types.h │ │ ├── nrf_dfu_validation.h │ │ ├── nrf_error.h │ │ ├── nrf_section.h │ │ ├── pb.h │ │ ├── pb_common.h │ │ ├── pb_decode.h │ │ ├── sdk_config.h │ │ └── slip.h │ │ ├── nrf_dfu_ble.c │ │ ├── nrf_dfu_serial.c │ │ ├── nrf_dfu_serial_uart.c │ │ └── slip.c │ ├── src │ └── main.c │ └── update │ └── upload_app.bat ├── ble_rpc ├── comprehensive_rpc │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── boards │ │ └── nrf5340dk_nrf5340_cpuapp.overlay │ ├── child_image │ │ ├── mcuboot.conf │ │ ├── mcuboot.overlay │ │ └── mcuboot │ │ │ ├── boards │ │ │ ├── nrf5340dk_nrf5340_cpuapp.conf │ │ │ └── nrf5340dk_nrf5340_cpuapp.overlay │ │ │ └── prj.conf │ ├── pm_static.yml │ ├── prj.conf │ ├── program.bat │ ├── sample.yaml │ ├── sdk_change │ │ ├── ncs_v1.5.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ ├── ncs_samples │ │ │ │ ├── comprehensive_rpc │ │ │ │ │ └── prj.conf │ │ │ │ └── netcore_ble │ │ │ │ │ └── prj.conf │ │ │ ├── nrf │ │ │ │ ├── cmake │ │ │ │ │ └── partition_manager.cmake │ │ │ │ ├── modules │ │ │ │ │ └── mcuboot │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── samples │ │ │ │ │ └── CMakeLists.txt │ │ │ │ └── subsys │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── nrf_dfu │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ │ ├── common │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── crc32.c │ │ │ │ │ │ ├── dfu-cc.options │ │ │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ │ │ ├── dfu-cc.proto │ │ │ │ │ │ ├── dfu_trans.ld │ │ │ │ │ │ ├── nrf_dfu.c │ │ │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ │ │ ├── pb_common.c │ │ │ │ │ │ └── pb_decode.c │ │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ │ ├── inc │ │ │ │ │ │ ├── app_util.h │ │ │ │ │ │ ├── common_ids.h │ │ │ │ │ │ ├── crc32.h │ │ │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ │ │ ├── nordic_common.h │ │ │ │ │ │ ├── nrf_dfu.h │ │ │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ │ │ ├── nrf_error.h │ │ │ │ │ │ ├── nrf_section.h │ │ │ │ │ │ ├── pb.h │ │ │ │ │ │ ├── pb_common.h │ │ │ │ │ │ ├── pb_decode.h │ │ │ │ │ │ ├── sdk_config.h │ │ │ │ │ │ └── slip.h │ │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ │ └── slip.c │ │ │ │ │ └── nrf_rpc │ │ │ │ │ └── rp_ll.c │ │ │ └── nrfxlib │ │ │ │ └── mpsl │ │ │ │ └── include │ │ │ │ └── nrf_errno.h │ │ ├── ncs_v1.6.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ ├── ncs_samples │ │ │ │ ├── comprehensive_rpc │ │ │ │ │ └── prj.conf │ │ │ │ └── netcore_ble │ │ │ │ │ └── prj.conf │ │ │ └── nrf │ │ │ │ ├── cmake │ │ │ │ └── partition_manager.cmake │ │ │ │ ├── modules │ │ │ │ └── mcuboot │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── samples │ │ │ │ └── CMakeLists.txt │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── crc32.c │ │ │ │ │ ├── dfu-cc.options │ │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ │ ├── dfu-cc.proto │ │ │ │ │ ├── dfu_trans.ld │ │ │ │ │ ├── nrf_dfu.c │ │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ │ ├── pb_common.c │ │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ │ ├── app_util.h │ │ │ │ │ ├── common_ids.h │ │ │ │ │ ├── crc32.h │ │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ │ ├── nordic_common.h │ │ │ │ │ ├── nrf_dfu.h │ │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ │ ├── nrf_error.h │ │ │ │ │ ├── nrf_section.h │ │ │ │ │ ├── pb.h │ │ │ │ │ ├── pb_common.h │ │ │ │ │ ├── pb_decode.h │ │ │ │ │ ├── sdk_config.h │ │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ │ │ ├── nrf_rpc │ │ │ │ └── rp_ll.c │ │ │ │ └── partition_manager │ │ │ │ └── flash_map_partition_manager.c │ │ ├── ncs_v1.7.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ ├── ncs_samples │ │ │ │ ├── comprehensive_rpc │ │ │ │ │ ├── child_image │ │ │ │ │ │ └── mcuboot.conf │ │ │ │ │ └── prj.conf │ │ │ │ └── netcore_ble │ │ │ │ │ ├── child_image │ │ │ │ │ └── b0n.conf │ │ │ │ │ └── prj.conf │ │ │ └── nrf │ │ │ │ ├── samples │ │ │ │ └── CMakeLists.txt │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v1.8.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ │ ├── samples │ │ │ │ └── CMakeLists.txt │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v1.9.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ │ ├── samples │ │ │ │ └── CMakeLists.txt │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v2.0.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ │ ├── modules │ │ │ │ └── mcuboot │ │ │ │ │ └── hooks │ │ │ │ │ └── nrf53_hooks.c │ │ │ │ └── samples │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Kconfig │ │ └── ncs_v2.2.x │ │ │ └── nrf │ │ │ └── samples │ │ │ ├── CMakeLists.txt │ │ │ └── Kconfig │ ├── src │ │ ├── adc_thread.c │ │ ├── common_ids.h │ │ ├── flash_thread.c │ │ ├── iic_thread.c │ │ ├── main.c │ │ ├── rpc_app_api.c │ │ ├── rpc_app_api.h │ │ ├── rpc_app_api_general.c │ │ ├── rpc_app_smp_bt.c │ │ ├── rpc_app_smp_bt.h │ │ ├── rpc_thread.c │ │ ├── smp_reassembly.h │ │ ├── spi_thread.c │ │ └── uart_thread.c │ └── update │ │ └── zip_generate.bat ├── netcore_rpc │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── boards │ │ └── nrf5340dk_nrf5340_cpunet.overlay │ ├── child_image │ │ └── b0n.conf │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ ├── common_ids.h │ │ ├── main.c │ │ ├── rpc_net_api.c │ │ ├── rpc_net_api.h │ │ ├── rpc_net_api_general.c │ │ ├── rpc_net_smp_bt.c │ │ └── rpc_net_smp_bt.h ├── nrf_dfu_extFlash_rpc │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── boards │ │ └── nrf5340dk_nrf5340_cpuapp.overlay │ ├── child_image │ │ ├── hci_rpmsg.conf │ │ └── mcuboot.conf │ ├── pm_static.yml │ ├── prj.conf │ ├── program.bat │ ├── sample.yaml │ ├── sdk_change │ │ ├── ncs_v1.5.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ ├── nrf │ │ │ │ ├── cmake │ │ │ │ │ └── partition_manager.cmake │ │ │ │ ├── modules │ │ │ │ │ └── mcuboot │ │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── samples │ │ │ │ │ └── CMakeLists.txt │ │ │ │ └── subsys │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── nrf_dfu │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ │ ├── common │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── crc32.c │ │ │ │ │ │ ├── dfu-cc.options │ │ │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ │ │ ├── dfu-cc.proto │ │ │ │ │ │ ├── dfu_trans.ld │ │ │ │ │ │ ├── nrf_dfu.c │ │ │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ │ │ ├── pb_common.c │ │ │ │ │ │ └── pb_decode.c │ │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ │ ├── inc │ │ │ │ │ │ ├── app_util.h │ │ │ │ │ │ ├── common_ids.h │ │ │ │ │ │ ├── crc32.h │ │ │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ │ │ ├── nordic_common.h │ │ │ │ │ │ ├── nrf_dfu.h │ │ │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ │ │ ├── nrf_error.h │ │ │ │ │ │ ├── nrf_section.h │ │ │ │ │ │ ├── pb.h │ │ │ │ │ │ ├── pb_common.h │ │ │ │ │ │ ├── pb_decode.h │ │ │ │ │ │ ├── sdk_config.h │ │ │ │ │ │ └── slip.h │ │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ │ └── slip.c │ │ │ │ │ └── nrf_rpc │ │ │ │ │ └── rp_ll.c │ │ │ └── nrfxlib │ │ │ │ └── mpsl │ │ │ │ └── include │ │ │ │ └── nrf_errno.h │ │ ├── ncs_v1.6.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ │ ├── cmake │ │ │ │ └── partition_manager.cmake │ │ │ │ ├── modules │ │ │ │ └── mcuboot │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── samples │ │ │ │ └── CMakeLists.txt │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── crc32.c │ │ │ │ │ ├── dfu-cc.options │ │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ │ ├── dfu-cc.proto │ │ │ │ │ ├── dfu_trans.ld │ │ │ │ │ ├── nrf_dfu.c │ │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ │ ├── pb_common.c │ │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ │ ├── app_util.h │ │ │ │ │ ├── common_ids.h │ │ │ │ │ ├── crc32.h │ │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ │ ├── nordic_common.h │ │ │ │ │ ├── nrf_dfu.h │ │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ │ ├── nrf_error.h │ │ │ │ │ ├── nrf_section.h │ │ │ │ │ ├── pb.h │ │ │ │ │ ├── pb_common.h │ │ │ │ │ ├── pb_decode.h │ │ │ │ │ ├── sdk_config.h │ │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ │ │ ├── nrf_rpc │ │ │ │ └── rp_ll.c │ │ │ │ └── partition_manager │ │ │ │ └── flash_map_partition_manager.c │ │ ├── ncs_v1.7.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ │ ├── samples │ │ │ │ └── CMakeLists.txt │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v1.8.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ │ ├── samples │ │ │ │ └── CMakeLists.txt │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v1.9.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ │ ├── samples │ │ │ │ └── CMakeLists.txt │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ └── ncs_v2.0.x │ │ │ ├── bootloader │ │ │ └── mcuboot │ │ │ │ └── boot │ │ │ │ └── bootutil │ │ │ │ └── src │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ ├── samples │ │ │ ├── CMakeLists.txt │ │ │ └── Kconfig │ │ │ └── subsys │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── nrf_dfu │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── adapt_rpc_app.c │ │ │ ├── adapt_rpc_net.c │ │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── crc32.c │ │ │ ├── dfu-cc.options │ │ │ ├── dfu-cc.pb.c │ │ │ ├── dfu-cc.proto │ │ │ ├── dfu_trans.ld │ │ │ ├── nrf_dfu.c │ │ │ ├── nrf_dfu_flash.c │ │ │ ├── nrf_dfu_handling_error.c │ │ │ ├── nrf_dfu_req_handler.c │ │ │ ├── nrf_dfu_settings.c │ │ │ ├── nrf_dfu_transport.c │ │ │ ├── nrf_dfu_validation.c │ │ │ ├── pb_common.c │ │ │ └── pb_decode.c │ │ │ ├── dfu_tran_sect.ld │ │ │ ├── inc │ │ │ ├── app_util.h │ │ │ ├── common_ids.h │ │ │ ├── crc32.h │ │ │ ├── dfu-cc.pb.h │ │ │ ├── nordic_common.h │ │ │ ├── nrf_dfu.h │ │ │ ├── nrf_dfu_flash.h │ │ │ ├── nrf_dfu_handling_error.h │ │ │ ├── nrf_dfu_req_handler.h │ │ │ ├── nrf_dfu_serial.h │ │ │ ├── nrf_dfu_settings.h │ │ │ ├── nrf_dfu_transport.h │ │ │ ├── nrf_dfu_types.h │ │ │ ├── nrf_dfu_validation.h │ │ │ ├── nrf_error.h │ │ │ ├── nrf_section.h │ │ │ ├── pb.h │ │ │ ├── pb_common.h │ │ │ ├── pb_decode.h │ │ │ ├── sdk_config.h │ │ │ └── slip.h │ │ │ ├── nrf_dfu_ble.c │ │ │ ├── nrf_dfu_serial.c │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ └── slip.c │ ├── src │ │ ├── main.c │ │ ├── rpc_app_api.c │ │ ├── rpc_app_api.h │ │ ├── rpc_app_api_general.c │ │ ├── uart_hs.c │ │ └── uart_hs.h │ └── update │ │ └── zip_generate.bat └── nrf_dfu_intFlash_rpc │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── boards │ └── nrf5340dk_nrf5340_cpuapp.overlay │ ├── child_image │ ├── hci_rpmsg.conf │ └── mcuboot.conf │ ├── prj.conf │ ├── program.bat │ ├── sample.yaml │ ├── sdk_change │ ├── ncs_v1.5.x │ │ ├── nrf │ │ │ ├── cmake │ │ │ │ └── partition_manager.cmake │ │ │ ├── modules │ │ │ │ └── mcuboot │ │ │ │ │ └── CMakeLists.txt │ │ │ ├── samples │ │ │ │ └── CMakeLists.txt │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── crc32.c │ │ │ │ │ ├── dfu-cc.options │ │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ │ ├── dfu-cc.proto │ │ │ │ │ ├── dfu_trans.ld │ │ │ │ │ ├── nrf_dfu.c │ │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ │ ├── pb_common.c │ │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ │ ├── app_util.h │ │ │ │ │ ├── common_ids.h │ │ │ │ │ ├── crc32.h │ │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ │ ├── nordic_common.h │ │ │ │ │ ├── nrf_dfu.h │ │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ │ ├── nrf_error.h │ │ │ │ │ ├── nrf_section.h │ │ │ │ │ ├── pb.h │ │ │ │ │ ├── pb_common.h │ │ │ │ │ ├── pb_decode.h │ │ │ │ │ ├── sdk_config.h │ │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ │ │ └── nrf_rpc │ │ │ │ └── rp_ll.c │ │ └── nrfxlib │ │ │ └── mpsl │ │ │ └── include │ │ │ └── nrf_errno.h │ ├── ncs_v1.6.x │ │ └── nrf │ │ │ ├── cmake │ │ │ └── partition_manager.cmake │ │ │ ├── modules │ │ │ └── mcuboot │ │ │ │ └── CMakeLists.txt │ │ │ ├── samples │ │ │ └── CMakeLists.txt │ │ │ └── subsys │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── nrf_dfu │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── adapt_rpc_app.c │ │ │ ├── adapt_rpc_net.c │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ ├── dfu_tran_sect.ld │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ ├── nrf_dfu_ble.c │ │ │ ├── nrf_dfu_serial.c │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ └── slip.c │ │ │ ├── nrf_rpc │ │ │ └── rp_ll.c │ │ │ └── partition_manager │ │ │ └── flash_map_partition_manager.c │ ├── ncs_v1.7.x │ │ └── nrf │ │ │ ├── samples │ │ │ └── CMakeLists.txt │ │ │ └── subsys │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── nrf_dfu │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── adapt_rpc_app.c │ │ │ ├── adapt_rpc_net.c │ │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── crc32.c │ │ │ ├── dfu-cc.options │ │ │ ├── dfu-cc.pb.c │ │ │ ├── dfu-cc.proto │ │ │ ├── dfu_trans.ld │ │ │ ├── nrf_dfu.c │ │ │ ├── nrf_dfu_flash.c │ │ │ ├── nrf_dfu_handling_error.c │ │ │ ├── nrf_dfu_req_handler.c │ │ │ ├── nrf_dfu_settings.c │ │ │ ├── nrf_dfu_transport.c │ │ │ ├── nrf_dfu_validation.c │ │ │ ├── pb_common.c │ │ │ └── pb_decode.c │ │ │ ├── dfu_tran_sect.ld │ │ │ ├── inc │ │ │ ├── app_util.h │ │ │ ├── common_ids.h │ │ │ ├── crc32.h │ │ │ ├── dfu-cc.pb.h │ │ │ ├── nordic_common.h │ │ │ ├── nrf_dfu.h │ │ │ ├── nrf_dfu_flash.h │ │ │ ├── nrf_dfu_handling_error.h │ │ │ ├── nrf_dfu_req_handler.h │ │ │ ├── nrf_dfu_serial.h │ │ │ ├── nrf_dfu_settings.h │ │ │ ├── nrf_dfu_transport.h │ │ │ ├── nrf_dfu_types.h │ │ │ ├── nrf_dfu_validation.h │ │ │ ├── nrf_error.h │ │ │ ├── nrf_section.h │ │ │ ├── pb.h │ │ │ ├── pb_common.h │ │ │ ├── pb_decode.h │ │ │ ├── sdk_config.h │ │ │ └── slip.h │ │ │ ├── nrf_dfu_ble.c │ │ │ ├── nrf_dfu_serial.c │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ └── slip.c │ ├── ncs_v1.8.x │ │ └── nrf │ │ │ ├── samples │ │ │ └── CMakeLists.txt │ │ │ └── subsys │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── nrf_dfu │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── adapt_rpc_app.c │ │ │ ├── adapt_rpc_net.c │ │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── crc32.c │ │ │ ├── dfu-cc.options │ │ │ ├── dfu-cc.pb.c │ │ │ ├── dfu-cc.proto │ │ │ ├── dfu_trans.ld │ │ │ ├── nrf_dfu.c │ │ │ ├── nrf_dfu_flash.c │ │ │ ├── nrf_dfu_handling_error.c │ │ │ ├── nrf_dfu_req_handler.c │ │ │ ├── nrf_dfu_settings.c │ │ │ ├── nrf_dfu_transport.c │ │ │ ├── nrf_dfu_validation.c │ │ │ ├── pb_common.c │ │ │ └── pb_decode.c │ │ │ ├── dfu_tran_sect.ld │ │ │ ├── inc │ │ │ ├── app_util.h │ │ │ ├── common_ids.h │ │ │ ├── crc32.h │ │ │ ├── dfu-cc.pb.h │ │ │ ├── nordic_common.h │ │ │ ├── nrf_dfu.h │ │ │ ├── nrf_dfu_flash.h │ │ │ ├── nrf_dfu_handling_error.h │ │ │ ├── nrf_dfu_req_handler.h │ │ │ ├── nrf_dfu_serial.h │ │ │ ├── nrf_dfu_settings.h │ │ │ ├── nrf_dfu_transport.h │ │ │ ├── nrf_dfu_types.h │ │ │ ├── nrf_dfu_validation.h │ │ │ ├── nrf_error.h │ │ │ ├── nrf_section.h │ │ │ ├── pb.h │ │ │ ├── pb_common.h │ │ │ ├── pb_decode.h │ │ │ ├── sdk_config.h │ │ │ └── slip.h │ │ │ ├── nrf_dfu_ble.c │ │ │ ├── nrf_dfu_serial.c │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ └── slip.c │ ├── ncs_v1.9.x │ │ └── nrf │ │ │ ├── samples │ │ │ └── CMakeLists.txt │ │ │ └── subsys │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── nrf_dfu │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── adapt_rpc_app.c │ │ │ ├── adapt_rpc_net.c │ │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── crc32.c │ │ │ ├── dfu-cc.options │ │ │ ├── dfu-cc.pb.c │ │ │ ├── dfu-cc.proto │ │ │ ├── dfu_trans.ld │ │ │ ├── nrf_dfu.c │ │ │ ├── nrf_dfu_flash.c │ │ │ ├── nrf_dfu_handling_error.c │ │ │ ├── nrf_dfu_req_handler.c │ │ │ ├── nrf_dfu_settings.c │ │ │ ├── nrf_dfu_transport.c │ │ │ ├── nrf_dfu_validation.c │ │ │ ├── pb_common.c │ │ │ └── pb_decode.c │ │ │ ├── dfu_tran_sect.ld │ │ │ ├── inc │ │ │ ├── app_util.h │ │ │ ├── common_ids.h │ │ │ ├── crc32.h │ │ │ ├── dfu-cc.pb.h │ │ │ ├── nordic_common.h │ │ │ ├── nrf_dfu.h │ │ │ ├── nrf_dfu_flash.h │ │ │ ├── nrf_dfu_handling_error.h │ │ │ ├── nrf_dfu_req_handler.h │ │ │ ├── nrf_dfu_serial.h │ │ │ ├── nrf_dfu_settings.h │ │ │ ├── nrf_dfu_transport.h │ │ │ ├── nrf_dfu_types.h │ │ │ ├── nrf_dfu_validation.h │ │ │ ├── nrf_error.h │ │ │ ├── nrf_section.h │ │ │ ├── pb.h │ │ │ ├── pb_common.h │ │ │ ├── pb_decode.h │ │ │ ├── sdk_config.h │ │ │ └── slip.h │ │ │ ├── nrf_dfu_ble.c │ │ │ ├── nrf_dfu_serial.c │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ └── slip.c │ └── ncs_v2.0.x │ │ └── nrf │ │ ├── samples │ │ ├── CMakeLists.txt │ │ └── Kconfig │ │ └── subsys │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── nrf_dfu │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── adapt_rpc_app.c │ │ ├── adapt_rpc_net.c │ │ ├── common │ │ ├── CMakeLists.txt │ │ ├── crc32.c │ │ ├── dfu-cc.options │ │ ├── dfu-cc.pb.c │ │ ├── dfu-cc.proto │ │ ├── dfu_trans.ld │ │ ├── nrf_dfu.c │ │ ├── nrf_dfu_flash.c │ │ ├── nrf_dfu_handling_error.c │ │ ├── nrf_dfu_req_handler.c │ │ ├── nrf_dfu_settings.c │ │ ├── nrf_dfu_transport.c │ │ ├── nrf_dfu_validation.c │ │ ├── pb_common.c │ │ └── pb_decode.c │ │ ├── dfu_tran_sect.ld │ │ ├── inc │ │ ├── app_util.h │ │ ├── common_ids.h │ │ ├── crc32.h │ │ ├── dfu-cc.pb.h │ │ ├── nordic_common.h │ │ ├── nrf_dfu.h │ │ ├── nrf_dfu_flash.h │ │ ├── nrf_dfu_handling_error.h │ │ ├── nrf_dfu_req_handler.h │ │ ├── nrf_dfu_serial.h │ │ ├── nrf_dfu_settings.h │ │ ├── nrf_dfu_transport.h │ │ ├── nrf_dfu_types.h │ │ ├── nrf_dfu_validation.h │ │ ├── nrf_error.h │ │ ├── nrf_section.h │ │ ├── pb.h │ │ ├── pb_common.h │ │ ├── pb_decode.h │ │ ├── sdk_config.h │ │ └── slip.h │ │ ├── nrf_dfu_ble.c │ │ ├── nrf_dfu_serial.c │ │ ├── nrf_dfu_serial_uart.c │ │ └── slip.c │ ├── src │ ├── main.c │ ├── rpc_app_api.c │ ├── rpc_app_api.h │ ├── rpc_app_api_general.c │ ├── uart_hs.c │ └── uart_hs.h │ └── update │ └── zip_generate.bat ├── external_interrupt ├── CMakeLists.txt ├── Kconfig ├── README.rst ├── boards │ ├── nrf52840dk_nrf52840.overlay │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ └── nrf9160dk_nrf9160_ns.overlay ├── child_image │ └── tfm.conf ├── prj.conf ├── program.bat ├── sample.yaml └── src │ └── main.c ├── hello_world ├── CMakeLists.txt ├── README.rst ├── boards │ ├── nrf52840dk_nrf52840.overlay │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ └── nrf9160dk_nrf9160_ns.overlay ├── child_image │ └── tfm.conf ├── prj.conf ├── sample.yaml ├── spm.conf ├── spm.overlay └── src │ ├── blinky.c │ └── main.c ├── i2c_master ├── CMakeLists.txt ├── Kconfig ├── README.rst ├── boards │ ├── nrf52840dk_nrf52840.overlay │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ └── nrf9160dk_nrf9160_ns.overlay ├── prj.conf ├── program.bat ├── resources │ ├── twi_master_with_twis_slave_pca10040.hex │ └── twi_master_with_twis_slave_pca10056.hex ├── sample.yaml └── src │ └── main.c ├── matter └── window_covering_nus │ ├── CMakeLists.txt │ ├── Kconfig │ ├── Kconfig.sysbuild │ ├── README.rst │ ├── VERSION │ ├── app.overlay │ ├── boards │ ├── nrf21540dk_nrf52840.conf │ ├── nrf21540dk_nrf52840.overlay │ ├── nrf52840dk_nrf52840.overlay │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ ├── nrf54l15pdk_nrf54l15_cpuapp.conf │ ├── nrf54l15pdk_nrf54l15_cpuapp.overlay │ └── nrf54l15pdk_nrf54l15_cpuapp_0_2_1.overlay │ ├── pm_static_nrf52840dk_nrf52840.yml │ ├── pm_static_nrf5340dk_nrf5340_cpuapp.yml │ ├── pm_static_nrf54l15pdk_nrf54l15_cpuapp.yml │ ├── prj.conf │ ├── prj_release.conf │ ├── sample.yaml │ ├── sdk_change │ ├── BLEAdvertisingArbiter.cpp │ └── BLEManagerImpl.cpp │ ├── src │ ├── app_task.cpp │ ├── app_task.h │ ├── chip_project_config.h │ ├── main.cpp │ ├── nus.c │ ├── window-app.matter │ ├── window-app.zap │ ├── window_covering.cpp │ ├── window_covering.h │ ├── zap-generated │ │ ├── CHIPClientCallbacks.h │ │ ├── CHIPClusters.h │ │ ├── IMClusterCommandHandler.cpp │ │ ├── PluginApplicationCallbacks.h │ │ ├── access.h │ │ ├── callback-stub.cpp │ │ ├── endpoint_config.h │ │ ├── gen_config.h │ │ └── gen_tokens.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 │ ├── nrf54l15pdk_nrf54l15_cpuapp.conf │ ├── nrf54l15pdk_nrf54l15_cpuapp.overlay │ └── nrf7002dk_nrf5340_cpuapp.conf │ └── prj.conf ├── nrf_dfu ├── README.rst ├── ble_extFlash │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── app.overlay │ ├── child_image │ │ ├── hci_rpmsg.conf │ │ ├── mcuboot.conf │ │ └── mcuboot │ │ │ └── boards │ │ │ └── nrf5340dk_nrf5340_cpuapp.overlay │ ├── pm_static.yml │ ├── prj.conf │ ├── program.bat │ ├── sample.yaml │ ├── sdk_change │ │ ├── ncs_v1.5.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ ├── nrf │ │ │ │ └── subsys │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Kconfig │ │ │ │ │ └── nrf_dfu │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ │ ├── common │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── crc32.c │ │ │ │ │ ├── dfu-cc.options │ │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ │ ├── dfu-cc.proto │ │ │ │ │ ├── dfu_trans.ld │ │ │ │ │ ├── nrf_dfu.c │ │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ │ ├── pb_common.c │ │ │ │ │ └── pb_decode.c │ │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ │ ├── inc │ │ │ │ │ ├── app_util.h │ │ │ │ │ ├── common_ids.h │ │ │ │ │ ├── crc32.h │ │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ │ ├── nordic_common.h │ │ │ │ │ ├── nrf_dfu.h │ │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ │ ├── nrf_error.h │ │ │ │ │ ├── nrf_section.h │ │ │ │ │ ├── pb.h │ │ │ │ │ ├── pb_common.h │ │ │ │ │ ├── pb_decode.h │ │ │ │ │ ├── sdk_config.h │ │ │ │ │ └── slip.h │ │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ │ └── slip.c │ │ │ └── nrfxlib │ │ │ │ └── mpsl │ │ │ │ └── include │ │ │ │ └── nrf_errno.h │ │ ├── ncs_v1.6.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── crc32.c │ │ │ │ │ ├── dfu-cc.options │ │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ │ ├── dfu-cc.proto │ │ │ │ │ ├── dfu_trans.ld │ │ │ │ │ ├── nrf_dfu.c │ │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ │ ├── pb_common.c │ │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ │ ├── app_util.h │ │ │ │ │ ├── common_ids.h │ │ │ │ │ ├── crc32.h │ │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ │ ├── nordic_common.h │ │ │ │ │ ├── nrf_dfu.h │ │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ │ ├── nrf_error.h │ │ │ │ │ ├── nrf_section.h │ │ │ │ │ ├── pb.h │ │ │ │ │ ├── pb_common.h │ │ │ │ │ ├── pb_decode.h │ │ │ │ │ ├── sdk_config.h │ │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ │ │ └── partition_manager │ │ │ │ └── flash_map_partition_manager.c │ │ ├── ncs_v1.7.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v1.8.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v1.9.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v2.0.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ └── ncs_v2.2.x │ │ │ ├── bootloader │ │ │ └── mcuboot │ │ │ │ └── boot │ │ │ │ └── bootutil │ │ │ │ └── src │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ └── subsys │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── nrf_dfu │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── adapt_rpc_app.c │ │ │ ├── adapt_rpc_net.c │ │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── crc32.c │ │ │ ├── dfu-cc.options │ │ │ ├── dfu-cc.pb.c │ │ │ ├── dfu-cc.proto │ │ │ ├── dfu_trans.ld │ │ │ ├── nrf_dfu.c │ │ │ ├── nrf_dfu_flash.c │ │ │ ├── nrf_dfu_handling_error.c │ │ │ ├── nrf_dfu_req_handler.c │ │ │ ├── nrf_dfu_settings.c │ │ │ ├── nrf_dfu_transport.c │ │ │ ├── nrf_dfu_validation.c │ │ │ ├── pb_common.c │ │ │ └── pb_decode.c │ │ │ ├── dfu_tran_sect.ld │ │ │ ├── inc │ │ │ ├── app_util.h │ │ │ ├── common_ids.h │ │ │ ├── crc32.h │ │ │ ├── dfu-cc.pb.h │ │ │ ├── nordic_common.h │ │ │ ├── nrf_dfu.h │ │ │ ├── nrf_dfu_flash.h │ │ │ ├── nrf_dfu_handling_error.h │ │ │ ├── nrf_dfu_req_handler.h │ │ │ ├── nrf_dfu_serial.h │ │ │ ├── nrf_dfu_settings.h │ │ │ ├── nrf_dfu_transport.h │ │ │ ├── nrf_dfu_types.h │ │ │ ├── nrf_dfu_validation.h │ │ │ ├── nrf_error.h │ │ │ ├── nrf_section.h │ │ │ ├── pb.h │ │ │ ├── pb_common.h │ │ │ ├── pb_decode.h │ │ │ ├── sdk_config.h │ │ │ └── slip.h │ │ │ ├── nrf_dfu_ble.c │ │ │ ├── nrf_dfu_serial.c │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ └── slip.c │ ├── src │ │ ├── main.c │ │ ├── uart_hs.c │ │ └── uart_hs.h │ └── update │ │ └── zip_generate.bat ├── ble_intFlash │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── child_image │ │ └── hci_rpmsg.conf │ ├── prj.conf │ ├── program.bat │ ├── sample.yaml │ ├── sdk_change │ │ ├── ncs_v1.5.x │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v1.6.x │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v1.7.x │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v1.8.x │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v1.9.x │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v2.0.x │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ └── ncs_v2.2.x │ │ │ └── nrf │ │ │ └── subsys │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── nrf_dfu │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── adapt_rpc_app.c │ │ │ ├── adapt_rpc_net.c │ │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── crc32.c │ │ │ ├── dfu-cc.options │ │ │ ├── dfu-cc.pb.c │ │ │ ├── dfu-cc.proto │ │ │ ├── dfu_trans.ld │ │ │ ├── nrf_dfu.c │ │ │ ├── nrf_dfu_flash.c │ │ │ ├── nrf_dfu_handling_error.c │ │ │ ├── nrf_dfu_req_handler.c │ │ │ ├── nrf_dfu_settings.c │ │ │ ├── nrf_dfu_transport.c │ │ │ ├── nrf_dfu_validation.c │ │ │ ├── pb_common.c │ │ │ └── pb_decode.c │ │ │ ├── dfu_tran_sect.ld │ │ │ ├── inc │ │ │ ├── app_util.h │ │ │ ├── common_ids.h │ │ │ ├── crc32.h │ │ │ ├── dfu-cc.pb.h │ │ │ ├── nordic_common.h │ │ │ ├── nrf_dfu.h │ │ │ ├── nrf_dfu_flash.h │ │ │ ├── nrf_dfu_handling_error.h │ │ │ ├── nrf_dfu_req_handler.h │ │ │ ├── nrf_dfu_serial.h │ │ │ ├── nrf_dfu_settings.h │ │ │ ├── nrf_dfu_transport.h │ │ │ ├── nrf_dfu_types.h │ │ │ ├── nrf_dfu_validation.h │ │ │ ├── nrf_error.h │ │ │ ├── nrf_section.h │ │ │ ├── pb.h │ │ │ ├── pb_common.h │ │ │ ├── pb_decode.h │ │ │ ├── sdk_config.h │ │ │ └── slip.h │ │ │ ├── nrf_dfu_ble.c │ │ │ ├── nrf_dfu_serial.c │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ └── slip.c │ ├── src │ │ ├── main.c │ │ ├── uart_hs.c │ │ └── uart_hs.h │ └── update │ │ └── zip_generate.bat ├── ble_intFlash_b0 │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── child_image │ │ └── hci_rpmsg.conf │ ├── prj.conf │ ├── program.bat │ ├── sample.yaml │ ├── sdk_change │ │ ├── ncs_v1.5.x │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v1.6.x │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v1.7.x │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v1.8.x │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v1.9.x │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v2.0.x │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ └── ncs_v2.2.x │ │ │ └── nrf │ │ │ └── subsys │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── nrf_dfu │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── adapt_rpc_app.c │ │ │ ├── adapt_rpc_net.c │ │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── crc32.c │ │ │ ├── dfu-cc.options │ │ │ ├── dfu-cc.pb.c │ │ │ ├── dfu-cc.proto │ │ │ ├── dfu_trans.ld │ │ │ ├── nrf_dfu.c │ │ │ ├── nrf_dfu_flash.c │ │ │ ├── nrf_dfu_handling_error.c │ │ │ ├── nrf_dfu_req_handler.c │ │ │ ├── nrf_dfu_settings.c │ │ │ ├── nrf_dfu_transport.c │ │ │ ├── nrf_dfu_validation.c │ │ │ ├── pb_common.c │ │ │ └── pb_decode.c │ │ │ ├── dfu_tran_sect.ld │ │ │ ├── inc │ │ │ ├── app_util.h │ │ │ ├── common_ids.h │ │ │ ├── crc32.h │ │ │ ├── dfu-cc.pb.h │ │ │ ├── nordic_common.h │ │ │ ├── nrf_dfu.h │ │ │ ├── nrf_dfu_flash.h │ │ │ ├── nrf_dfu_handling_error.h │ │ │ ├── nrf_dfu_req_handler.h │ │ │ ├── nrf_dfu_serial.h │ │ │ ├── nrf_dfu_settings.h │ │ │ ├── nrf_dfu_transport.h │ │ │ ├── nrf_dfu_types.h │ │ │ ├── nrf_dfu_validation.h │ │ │ ├── nrf_error.h │ │ │ ├── nrf_section.h │ │ │ ├── pb.h │ │ │ ├── pb_common.h │ │ │ ├── pb_decode.h │ │ │ ├── sdk_config.h │ │ │ └── slip.h │ │ │ ├── nrf_dfu_ble.c │ │ │ ├── nrf_dfu_serial.c │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ └── slip.c │ ├── src │ │ ├── main.c │ │ ├── uart_hs.c │ │ └── uart_hs.h │ └── update │ │ └── zip_generate.bat ├── ble_intFlash_nrf5_bl │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── boards │ │ └── nrf52840dk_nrf52840.overlay │ ├── prj.conf │ ├── sample.yaml │ ├── sdk_change │ │ ├── ncs_v1.5.x │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v1.6.x │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v1.7.x │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v1.8.x │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v1.9.x │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v2.0.x │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ └── ncs_v2.2.x │ │ │ └── nrf │ │ │ └── subsys │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── nrf_dfu │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── adapt_rpc_app.c │ │ │ ├── adapt_rpc_net.c │ │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── crc32.c │ │ │ ├── dfu-cc.options │ │ │ ├── dfu-cc.pb.c │ │ │ ├── dfu-cc.proto │ │ │ ├── dfu_trans.ld │ │ │ ├── nrf_dfu.c │ │ │ ├── nrf_dfu_flash.c │ │ │ ├── nrf_dfu_handling_error.c │ │ │ ├── nrf_dfu_req_handler.c │ │ │ ├── nrf_dfu_settings.c │ │ │ ├── nrf_dfu_transport.c │ │ │ ├── nrf_dfu_validation.c │ │ │ ├── pb_common.c │ │ │ └── pb_decode.c │ │ │ ├── dfu_tran_sect.ld │ │ │ ├── inc │ │ │ ├── app_util.h │ │ │ ├── common_ids.h │ │ │ ├── crc32.h │ │ │ ├── dfu-cc.pb.h │ │ │ ├── nordic_common.h │ │ │ ├── nrf_dfu.h │ │ │ ├── nrf_dfu_flash.h │ │ │ ├── nrf_dfu_handling_error.h │ │ │ ├── nrf_dfu_req_handler.h │ │ │ ├── nrf_dfu_serial.h │ │ │ ├── nrf_dfu_settings.h │ │ │ ├── nrf_dfu_transport.h │ │ │ ├── nrf_dfu_types.h │ │ │ ├── nrf_dfu_validation.h │ │ │ ├── nrf_error.h │ │ │ ├── nrf_section.h │ │ │ ├── pb.h │ │ │ ├── pb_common.h │ │ │ ├── pb_decode.h │ │ │ ├── sdk_config.h │ │ │ └── slip.h │ │ │ ├── nrf_dfu_ble.c │ │ │ ├── nrf_dfu_serial.c │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ └── slip.c │ ├── src │ │ ├── main.c │ │ ├── uart_hs.c │ │ └── uart_hs.h │ └── update │ │ ├── priv.pem │ │ ├── program.bat │ │ ├── uart_dfu.bat │ │ └── zip_generate.bat ├── ble_intFlash_nrf5_bl_mcuboot │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── child_image │ │ └── mcuboot.conf │ ├── pm_static.yml │ ├── prj.conf │ ├── sample.yaml │ ├── sdk_change │ │ ├── ncs_v1.5.x │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v1.6.x │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v1.7.x │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v1.8.x │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v1.9.x │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v2.0.x │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ └── ncs_v2.2.x │ │ │ └── nrf │ │ │ └── subsys │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── nrf_dfu │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── adapt_rpc_app.c │ │ │ ├── adapt_rpc_net.c │ │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── crc32.c │ │ │ ├── dfu-cc.options │ │ │ ├── dfu-cc.pb.c │ │ │ ├── dfu-cc.proto │ │ │ ├── dfu_trans.ld │ │ │ ├── nrf_dfu.c │ │ │ ├── nrf_dfu_flash.c │ │ │ ├── nrf_dfu_handling_error.c │ │ │ ├── nrf_dfu_req_handler.c │ │ │ ├── nrf_dfu_settings.c │ │ │ ├── nrf_dfu_transport.c │ │ │ ├── nrf_dfu_validation.c │ │ │ ├── pb_common.c │ │ │ └── pb_decode.c │ │ │ ├── dfu_tran_sect.ld │ │ │ ├── inc │ │ │ ├── app_util.h │ │ │ ├── common_ids.h │ │ │ ├── crc32.h │ │ │ ├── dfu-cc.pb.h │ │ │ ├── nordic_common.h │ │ │ ├── nrf_dfu.h │ │ │ ├── nrf_dfu_flash.h │ │ │ ├── nrf_dfu_handling_error.h │ │ │ ├── nrf_dfu_req_handler.h │ │ │ ├── nrf_dfu_serial.h │ │ │ ├── nrf_dfu_settings.h │ │ │ ├── nrf_dfu_transport.h │ │ │ ├── nrf_dfu_types.h │ │ │ ├── nrf_dfu_validation.h │ │ │ ├── nrf_error.h │ │ │ ├── nrf_section.h │ │ │ ├── pb.h │ │ │ ├── pb_common.h │ │ │ ├── pb_decode.h │ │ │ ├── sdk_config.h │ │ │ └── slip.h │ │ │ ├── nrf_dfu_ble.c │ │ │ ├── nrf_dfu_serial.c │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ └── slip.c │ ├── src │ │ ├── main.c │ │ ├── uart_hs.c │ │ └── uart_hs.h │ └── update │ │ ├── app_zip_generate.bat │ │ ├── mcumgr.exe │ │ ├── priv.pem │ │ ├── program.bat │ │ └── upload_mcuboot.bat ├── uart_extFlash │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── app.overlay │ ├── child_image │ │ ├── hci_rpmsg.conf │ │ └── mcuboot.conf │ ├── pm_static.yml │ ├── prj.conf │ ├── program.bat │ ├── sample.yaml │ ├── sdk_change │ │ ├── ncs_v1.5.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ ├── nrf │ │ │ │ └── subsys │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Kconfig │ │ │ │ │ └── nrf_dfu │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ │ ├── common │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── crc32.c │ │ │ │ │ ├── dfu-cc.options │ │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ │ ├── dfu-cc.proto │ │ │ │ │ ├── dfu_trans.ld │ │ │ │ │ ├── nrf_dfu.c │ │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ │ ├── pb_common.c │ │ │ │ │ └── pb_decode.c │ │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ │ ├── inc │ │ │ │ │ ├── app_util.h │ │ │ │ │ ├── common_ids.h │ │ │ │ │ ├── crc32.h │ │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ │ ├── nordic_common.h │ │ │ │ │ ├── nrf_dfu.h │ │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ │ ├── nrf_error.h │ │ │ │ │ ├── nrf_section.h │ │ │ │ │ ├── pb.h │ │ │ │ │ ├── pb_common.h │ │ │ │ │ ├── pb_decode.h │ │ │ │ │ ├── sdk_config.h │ │ │ │ │ └── slip.h │ │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ │ └── slip.c │ │ │ └── nrfxlib │ │ │ │ └── mpsl │ │ │ │ └── include │ │ │ │ └── nrf_errno.h │ │ ├── ncs_v1.6.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── crc32.c │ │ │ │ │ ├── dfu-cc.options │ │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ │ ├── dfu-cc.proto │ │ │ │ │ ├── dfu_trans.ld │ │ │ │ │ ├── nrf_dfu.c │ │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ │ ├── pb_common.c │ │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ │ ├── app_util.h │ │ │ │ │ ├── common_ids.h │ │ │ │ │ ├── crc32.h │ │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ │ ├── nordic_common.h │ │ │ │ │ ├── nrf_dfu.h │ │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ │ ├── nrf_error.h │ │ │ │ │ ├── nrf_section.h │ │ │ │ │ ├── pb.h │ │ │ │ │ ├── pb_common.h │ │ │ │ │ ├── pb_decode.h │ │ │ │ │ ├── sdk_config.h │ │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ │ │ └── partition_manager │ │ │ │ └── flash_map_partition_manager.c │ │ ├── ncs_v1.7.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v1.8.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v1.9.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ ├── ncs_v2.0.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ │ └── subsys │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ └── nrf_dfu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── adapt_rpc_app.c │ │ │ │ ├── adapt_rpc_net.c │ │ │ │ ├── common │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── crc32.c │ │ │ │ ├── dfu-cc.options │ │ │ │ ├── dfu-cc.pb.c │ │ │ │ ├── dfu-cc.proto │ │ │ │ ├── dfu_trans.ld │ │ │ │ ├── nrf_dfu.c │ │ │ │ ├── nrf_dfu_flash.c │ │ │ │ ├── nrf_dfu_handling_error.c │ │ │ │ ├── nrf_dfu_req_handler.c │ │ │ │ ├── nrf_dfu_settings.c │ │ │ │ ├── nrf_dfu_transport.c │ │ │ │ ├── nrf_dfu_validation.c │ │ │ │ ├── pb_common.c │ │ │ │ └── pb_decode.c │ │ │ │ ├── dfu_tran_sect.ld │ │ │ │ ├── inc │ │ │ │ ├── app_util.h │ │ │ │ ├── common_ids.h │ │ │ │ ├── crc32.h │ │ │ │ ├── dfu-cc.pb.h │ │ │ │ ├── nordic_common.h │ │ │ │ ├── nrf_dfu.h │ │ │ │ ├── nrf_dfu_flash.h │ │ │ │ ├── nrf_dfu_handling_error.h │ │ │ │ ├── nrf_dfu_req_handler.h │ │ │ │ ├── nrf_dfu_serial.h │ │ │ │ ├── nrf_dfu_settings.h │ │ │ │ ├── nrf_dfu_transport.h │ │ │ │ ├── nrf_dfu_types.h │ │ │ │ ├── nrf_dfu_validation.h │ │ │ │ ├── nrf_error.h │ │ │ │ ├── nrf_section.h │ │ │ │ ├── pb.h │ │ │ │ ├── pb_common.h │ │ │ │ ├── pb_decode.h │ │ │ │ ├── sdk_config.h │ │ │ │ └── slip.h │ │ │ │ ├── nrf_dfu_ble.c │ │ │ │ ├── nrf_dfu_serial.c │ │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ │ └── slip.c │ │ └── ncs_v2.2.x │ │ │ ├── bootloader │ │ │ └── mcuboot │ │ │ │ └── boot │ │ │ │ └── bootutil │ │ │ │ └── src │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ └── subsys │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── nrf_dfu │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── adapt_rpc_app.c │ │ │ ├── adapt_rpc_net.c │ │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── crc32.c │ │ │ ├── dfu-cc.options │ │ │ ├── dfu-cc.pb.c │ │ │ ├── dfu-cc.proto │ │ │ ├── dfu_trans.ld │ │ │ ├── nrf_dfu.c │ │ │ ├── nrf_dfu_flash.c │ │ │ ├── nrf_dfu_handling_error.c │ │ │ ├── nrf_dfu_req_handler.c │ │ │ ├── nrf_dfu_settings.c │ │ │ ├── nrf_dfu_transport.c │ │ │ ├── nrf_dfu_validation.c │ │ │ ├── pb_common.c │ │ │ └── pb_decode.c │ │ │ ├── dfu_tran_sect.ld │ │ │ ├── inc │ │ │ ├── app_util.h │ │ │ ├── common_ids.h │ │ │ ├── crc32.h │ │ │ ├── dfu-cc.pb.h │ │ │ ├── nordic_common.h │ │ │ ├── nrf_dfu.h │ │ │ ├── nrf_dfu_flash.h │ │ │ ├── nrf_dfu_handling_error.h │ │ │ ├── nrf_dfu_req_handler.h │ │ │ ├── nrf_dfu_serial.h │ │ │ ├── nrf_dfu_settings.h │ │ │ ├── nrf_dfu_transport.h │ │ │ ├── nrf_dfu_types.h │ │ │ ├── nrf_dfu_validation.h │ │ │ ├── nrf_error.h │ │ │ ├── nrf_section.h │ │ │ ├── pb.h │ │ │ ├── pb_common.h │ │ │ ├── pb_decode.h │ │ │ ├── sdk_config.h │ │ │ └── slip.h │ │ │ ├── nrf_dfu_ble.c │ │ │ ├── nrf_dfu_serial.c │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ └── slip.c │ ├── src │ │ └── main.c │ └── update │ │ └── upload_app.bat └── uart_intFlash │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── child_image │ └── hci_rpmsg.conf │ ├── prj.conf │ ├── program.bat │ ├── sample.yaml │ ├── sdk_change │ ├── ncs_v1.5.x │ │ └── nrf │ │ │ └── subsys │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── nrf_dfu │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── adapt_rpc_app.c │ │ │ ├── adapt_rpc_net.c │ │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── crc32.c │ │ │ ├── dfu-cc.options │ │ │ ├── dfu-cc.pb.c │ │ │ ├── dfu-cc.proto │ │ │ ├── dfu_trans.ld │ │ │ ├── nrf_dfu.c │ │ │ ├── nrf_dfu_flash.c │ │ │ ├── nrf_dfu_handling_error.c │ │ │ ├── nrf_dfu_req_handler.c │ │ │ ├── nrf_dfu_settings.c │ │ │ ├── nrf_dfu_transport.c │ │ │ ├── nrf_dfu_validation.c │ │ │ ├── pb_common.c │ │ │ └── pb_decode.c │ │ │ ├── dfu_tran_sect.ld │ │ │ ├── inc │ │ │ ├── app_util.h │ │ │ ├── common_ids.h │ │ │ ├── crc32.h │ │ │ ├── dfu-cc.pb.h │ │ │ ├── nordic_common.h │ │ │ ├── nrf_dfu.h │ │ │ ├── nrf_dfu_flash.h │ │ │ ├── nrf_dfu_handling_error.h │ │ │ ├── nrf_dfu_req_handler.h │ │ │ ├── nrf_dfu_serial.h │ │ │ ├── nrf_dfu_settings.h │ │ │ ├── nrf_dfu_transport.h │ │ │ ├── nrf_dfu_types.h │ │ │ ├── nrf_dfu_validation.h │ │ │ ├── nrf_error.h │ │ │ ├── nrf_section.h │ │ │ ├── pb.h │ │ │ ├── pb_common.h │ │ │ ├── pb_decode.h │ │ │ ├── sdk_config.h │ │ │ └── slip.h │ │ │ ├── nrf_dfu_ble.c │ │ │ ├── nrf_dfu_serial.c │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ └── slip.c │ ├── ncs_v1.6.x │ │ └── nrf │ │ │ └── subsys │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── nrf_dfu │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── adapt_rpc_app.c │ │ │ ├── adapt_rpc_net.c │ │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── crc32.c │ │ │ ├── dfu-cc.options │ │ │ ├── dfu-cc.pb.c │ │ │ ├── dfu-cc.proto │ │ │ ├── dfu_trans.ld │ │ │ ├── nrf_dfu.c │ │ │ ├── nrf_dfu_flash.c │ │ │ ├── nrf_dfu_handling_error.c │ │ │ ├── nrf_dfu_req_handler.c │ │ │ ├── nrf_dfu_settings.c │ │ │ ├── nrf_dfu_transport.c │ │ │ ├── nrf_dfu_validation.c │ │ │ ├── pb_common.c │ │ │ └── pb_decode.c │ │ │ ├── dfu_tran_sect.ld │ │ │ ├── inc │ │ │ ├── app_util.h │ │ │ ├── common_ids.h │ │ │ ├── crc32.h │ │ │ ├── dfu-cc.pb.h │ │ │ ├── nordic_common.h │ │ │ ├── nrf_dfu.h │ │ │ ├── nrf_dfu_flash.h │ │ │ ├── nrf_dfu_handling_error.h │ │ │ ├── nrf_dfu_req_handler.h │ │ │ ├── nrf_dfu_serial.h │ │ │ ├── nrf_dfu_settings.h │ │ │ ├── nrf_dfu_transport.h │ │ │ ├── nrf_dfu_types.h │ │ │ ├── nrf_dfu_validation.h │ │ │ ├── nrf_error.h │ │ │ ├── nrf_section.h │ │ │ ├── pb.h │ │ │ ├── pb_common.h │ │ │ ├── pb_decode.h │ │ │ ├── sdk_config.h │ │ │ └── slip.h │ │ │ ├── nrf_dfu_ble.c │ │ │ ├── nrf_dfu_serial.c │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ └── slip.c │ ├── ncs_v1.7.x │ │ └── nrf │ │ │ └── subsys │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── nrf_dfu │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── adapt_rpc_app.c │ │ │ ├── adapt_rpc_net.c │ │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── crc32.c │ │ │ ├── dfu-cc.options │ │ │ ├── dfu-cc.pb.c │ │ │ ├── dfu-cc.proto │ │ │ ├── dfu_trans.ld │ │ │ ├── nrf_dfu.c │ │ │ ├── nrf_dfu_flash.c │ │ │ ├── nrf_dfu_handling_error.c │ │ │ ├── nrf_dfu_req_handler.c │ │ │ ├── nrf_dfu_settings.c │ │ │ ├── nrf_dfu_transport.c │ │ │ ├── nrf_dfu_validation.c │ │ │ ├── pb_common.c │ │ │ └── pb_decode.c │ │ │ ├── dfu_tran_sect.ld │ │ │ ├── inc │ │ │ ├── app_util.h │ │ │ ├── common_ids.h │ │ │ ├── crc32.h │ │ │ ├── dfu-cc.pb.h │ │ │ ├── nordic_common.h │ │ │ ├── nrf_dfu.h │ │ │ ├── nrf_dfu_flash.h │ │ │ ├── nrf_dfu_handling_error.h │ │ │ ├── nrf_dfu_req_handler.h │ │ │ ├── nrf_dfu_serial.h │ │ │ ├── nrf_dfu_settings.h │ │ │ ├── nrf_dfu_transport.h │ │ │ ├── nrf_dfu_types.h │ │ │ ├── nrf_dfu_validation.h │ │ │ ├── nrf_error.h │ │ │ ├── nrf_section.h │ │ │ ├── pb.h │ │ │ ├── pb_common.h │ │ │ ├── pb_decode.h │ │ │ ├── sdk_config.h │ │ │ └── slip.h │ │ │ ├── nrf_dfu_ble.c │ │ │ ├── nrf_dfu_serial.c │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ └── slip.c │ ├── ncs_v1.8.x │ │ └── nrf │ │ │ └── subsys │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── nrf_dfu │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── adapt_rpc_app.c │ │ │ ├── adapt_rpc_net.c │ │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── crc32.c │ │ │ ├── dfu-cc.options │ │ │ ├── dfu-cc.pb.c │ │ │ ├── dfu-cc.proto │ │ │ ├── dfu_trans.ld │ │ │ ├── nrf_dfu.c │ │ │ ├── nrf_dfu_flash.c │ │ │ ├── nrf_dfu_handling_error.c │ │ │ ├── nrf_dfu_req_handler.c │ │ │ ├── nrf_dfu_settings.c │ │ │ ├── nrf_dfu_transport.c │ │ │ ├── nrf_dfu_validation.c │ │ │ ├── pb_common.c │ │ │ └── pb_decode.c │ │ │ ├── dfu_tran_sect.ld │ │ │ ├── inc │ │ │ ├── app_util.h │ │ │ ├── common_ids.h │ │ │ ├── crc32.h │ │ │ ├── dfu-cc.pb.h │ │ │ ├── nordic_common.h │ │ │ ├── nrf_dfu.h │ │ │ ├── nrf_dfu_flash.h │ │ │ ├── nrf_dfu_handling_error.h │ │ │ ├── nrf_dfu_req_handler.h │ │ │ ├── nrf_dfu_serial.h │ │ │ ├── nrf_dfu_settings.h │ │ │ ├── nrf_dfu_transport.h │ │ │ ├── nrf_dfu_types.h │ │ │ ├── nrf_dfu_validation.h │ │ │ ├── nrf_error.h │ │ │ ├── nrf_section.h │ │ │ ├── pb.h │ │ │ ├── pb_common.h │ │ │ ├── pb_decode.h │ │ │ ├── sdk_config.h │ │ │ └── slip.h │ │ │ ├── nrf_dfu_ble.c │ │ │ ├── nrf_dfu_serial.c │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ └── slip.c │ ├── ncs_v1.9.x │ │ └── nrf │ │ │ └── subsys │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── nrf_dfu │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── adapt_rpc_app.c │ │ │ ├── adapt_rpc_net.c │ │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── crc32.c │ │ │ ├── dfu-cc.options │ │ │ ├── dfu-cc.pb.c │ │ │ ├── dfu-cc.proto │ │ │ ├── dfu_trans.ld │ │ │ ├── nrf_dfu.c │ │ │ ├── nrf_dfu_flash.c │ │ │ ├── nrf_dfu_handling_error.c │ │ │ ├── nrf_dfu_req_handler.c │ │ │ ├── nrf_dfu_settings.c │ │ │ ├── nrf_dfu_transport.c │ │ │ ├── nrf_dfu_validation.c │ │ │ ├── pb_common.c │ │ │ └── pb_decode.c │ │ │ ├── dfu_tran_sect.ld │ │ │ ├── inc │ │ │ ├── app_util.h │ │ │ ├── common_ids.h │ │ │ ├── crc32.h │ │ │ ├── dfu-cc.pb.h │ │ │ ├── nordic_common.h │ │ │ ├── nrf_dfu.h │ │ │ ├── nrf_dfu_flash.h │ │ │ ├── nrf_dfu_handling_error.h │ │ │ ├── nrf_dfu_req_handler.h │ │ │ ├── nrf_dfu_serial.h │ │ │ ├── nrf_dfu_settings.h │ │ │ ├── nrf_dfu_transport.h │ │ │ ├── nrf_dfu_types.h │ │ │ ├── nrf_dfu_validation.h │ │ │ ├── nrf_error.h │ │ │ ├── nrf_section.h │ │ │ ├── pb.h │ │ │ ├── pb_common.h │ │ │ ├── pb_decode.h │ │ │ ├── sdk_config.h │ │ │ └── slip.h │ │ │ ├── nrf_dfu_ble.c │ │ │ ├── nrf_dfu_serial.c │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ └── slip.c │ ├── ncs_v2.0.x │ │ └── nrf │ │ │ └── subsys │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ └── nrf_dfu │ │ │ ├── CMakeLists.txt │ │ │ ├── Kconfig │ │ │ ├── adapt_rpc_app.c │ │ │ ├── adapt_rpc_net.c │ │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── crc32.c │ │ │ ├── dfu-cc.options │ │ │ ├── dfu-cc.pb.c │ │ │ ├── dfu-cc.proto │ │ │ ├── dfu_trans.ld │ │ │ ├── nrf_dfu.c │ │ │ ├── nrf_dfu_flash.c │ │ │ ├── nrf_dfu_handling_error.c │ │ │ ├── nrf_dfu_req_handler.c │ │ │ ├── nrf_dfu_settings.c │ │ │ ├── nrf_dfu_transport.c │ │ │ ├── nrf_dfu_validation.c │ │ │ ├── pb_common.c │ │ │ └── pb_decode.c │ │ │ ├── dfu_tran_sect.ld │ │ │ ├── inc │ │ │ ├── app_util.h │ │ │ ├── common_ids.h │ │ │ ├── crc32.h │ │ │ ├── dfu-cc.pb.h │ │ │ ├── nordic_common.h │ │ │ ├── nrf_dfu.h │ │ │ ├── nrf_dfu_flash.h │ │ │ ├── nrf_dfu_handling_error.h │ │ │ ├── nrf_dfu_req_handler.h │ │ │ ├── nrf_dfu_serial.h │ │ │ ├── nrf_dfu_settings.h │ │ │ ├── nrf_dfu_transport.h │ │ │ ├── nrf_dfu_types.h │ │ │ ├── nrf_dfu_validation.h │ │ │ ├── nrf_error.h │ │ │ ├── nrf_section.h │ │ │ ├── pb.h │ │ │ ├── pb_common.h │ │ │ ├── pb_decode.h │ │ │ ├── sdk_config.h │ │ │ └── slip.h │ │ │ ├── nrf_dfu_ble.c │ │ │ ├── nrf_dfu_serial.c │ │ │ ├── nrf_dfu_serial_uart.c │ │ │ └── slip.c │ └── ncs_v2.2.x │ │ └── nrf │ │ └── subsys │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ └── nrf_dfu │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── adapt_rpc_app.c │ │ ├── adapt_rpc_net.c │ │ ├── common │ │ ├── CMakeLists.txt │ │ ├── crc32.c │ │ ├── dfu-cc.options │ │ ├── dfu-cc.pb.c │ │ ├── dfu-cc.proto │ │ ├── dfu_trans.ld │ │ ├── nrf_dfu.c │ │ ├── nrf_dfu_flash.c │ │ ├── nrf_dfu_handling_error.c │ │ ├── nrf_dfu_req_handler.c │ │ ├── nrf_dfu_settings.c │ │ ├── nrf_dfu_transport.c │ │ ├── nrf_dfu_validation.c │ │ ├── pb_common.c │ │ └── pb_decode.c │ │ ├── dfu_tran_sect.ld │ │ ├── inc │ │ ├── app_util.h │ │ ├── common_ids.h │ │ ├── crc32.h │ │ ├── dfu-cc.pb.h │ │ ├── nordic_common.h │ │ ├── nrf_dfu.h │ │ ├── nrf_dfu_flash.h │ │ ├── nrf_dfu_handling_error.h │ │ ├── nrf_dfu_req_handler.h │ │ ├── nrf_dfu_serial.h │ │ ├── nrf_dfu_settings.h │ │ ├── nrf_dfu_transport.h │ │ ├── nrf_dfu_types.h │ │ ├── nrf_dfu_validation.h │ │ ├── nrf_error.h │ │ ├── nrf_section.h │ │ ├── pb.h │ │ ├── pb_common.h │ │ ├── pb_decode.h │ │ ├── sdk_config.h │ │ └── slip.h │ │ ├── nrf_dfu_ble.c │ │ ├── nrf_dfu_serial.c │ │ ├── nrf_dfu_serial_uart.c │ │ └── slip.c │ ├── src │ └── main.c │ └── update │ └── upload_app.bat ├── nrfx_ipc ├── appcore │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── prj.conf │ ├── sample.yaml │ └── src │ │ └── main.c └── netcore │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── prj.conf │ ├── sample.yaml │ └── src │ └── main.c ├── nrfx_spi_rtc ├── CMakeLists.txt ├── Kconfig ├── README.rst ├── boards │ └── nrf52840dk_nrf52840.overlay ├── prj.conf ├── program.bat ├── sample.yaml └── src │ └── main.c ├── pwm_adc_gpio ├── CMakeLists.txt ├── README.rst ├── boards │ ├── nrf51dk_nrf51422.conf │ ├── nrf51dk_nrf51422.overlay │ ├── nrf52833dk_nrf52833.overlay │ ├── nrf52840dk_nrf52840.overlay │ ├── nrf52dk_nrf52832.overlay │ └── nrf5340dk_nrf5340_cpuapp.overlay ├── prj.conf ├── sample.yaml └── src │ ├── demo.c │ └── main.c ├── qspi_xip_dma ├── CMakeLists.txt ├── README.rst ├── boards │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ └── nrf7002dk_nrf5340_cpuapp.overlay ├── child_image │ ├── b0n.conf │ ├── hci_rpmsg.conf │ ├── mcuboot.conf │ └── mcuboot │ │ └── boards │ │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ │ └── nrf7002dk_nrf5340_cpuapp.overlay ├── custom_program.bat ├── gdqspi.ini ├── linker_arm_nocopy.ld ├── nordic_program.bat ├── pm_static.yml ├── prj.conf ├── sample.yaml ├── sdk_change │ ├── ncs_v2.3.x │ │ ├── nrf │ │ │ └── modules │ │ │ │ └── mcuboot │ │ │ │ └── hooks │ │ │ │ └── nrf53_hooks.c │ │ └── zephyr │ │ │ └── cmake │ │ │ └── modules │ │ │ └── extensions.cmake │ └── ncs_v2.4.x │ │ └── zephyr │ │ └── subsys │ │ └── pm │ │ └── pm.c ├── src │ ├── adc_thread.c │ ├── const_var.c │ ├── ext_mem_init.c │ ├── ext_mem_init_custom.bak │ ├── ext_mem_init_nordic.bak │ └── main.c └── update.bat ├── slm_comprehensive ├── CMakeLists.txt ├── Kconfig ├── README.rst ├── boards │ ├── nrf9131ek_nrf9131_ns.conf │ ├── nrf9131ek_nrf9131_ns.overlay │ ├── nrf9151dk_nrf9151_ns.conf │ ├── nrf9151dk_nrf9151_ns.overlay │ ├── nrf9160dk_nrf9160_ns.conf │ ├── nrf9160dk_nrf9160_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 ├── doc │ ├── AT_commands.rst │ ├── CARRIER_AT_commands.rst │ ├── CMUX_AT_commands.rst │ ├── FOTA_AT_commands.rst │ ├── FTP_AT_commands.rst │ ├── GNSS_AT_commands.rst │ ├── GPIO_AT_commands.rst │ ├── Generic_AT_commands.rst │ ├── HTTPC_AT_commands.rst │ ├── ICMP_AT_commands.rst │ ├── MQTT_AT_commands.rst │ ├── NRFCLOUD_AT_commands.rst │ ├── PPP_AT_commands.rst │ ├── SMS_AT_commands.rst │ ├── SOCKET_AT_commands.rst │ ├── TCPUDP_AT_commands.rst │ ├── TWI_AT_commands.rst │ ├── nRF91_as_Zephyr_modem.rst │ ├── slm_data_mode.rst │ ├── slm_description.rst │ ├── slm_extending.rst │ └── slm_testing.rst ├── overlay-carrier.conf ├── overlay-cmux.conf ├── overlay-external-mcu.overlay ├── overlay-full_fota.conf ├── overlay-native_tls.conf ├── overlay-ppp-without-cmux.conf ├── overlay-ppp-without-cmux.overlay ├── overlay-ppp.conf ├── overlay-zephyr-modem-external-mcu.conf ├── overlay-zephyr-modem-nrf9160dk-nrf52840.conf ├── overlay-zephyr-modem-nrf9160dk-nrf52840.overlay ├── overlay-zephyr-modem.conf ├── pm_static.yml ├── prj.conf ├── sample.yaml ├── sdk_change │ └── Kconfig.tfm.pm ├── src │ ├── ftp_c │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── slm_at_ftp.c │ │ ├── slm_at_ftp.h │ │ └── slm_at_tftp.c │ ├── gnss │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── slm_at_gnss.c │ │ └── slm_at_gnss.h │ ├── gpio │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── slm_at_gpio.c │ │ └── slm_at_gpio.h │ ├── http_c │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── slm_at_httpc.c │ │ └── slm_at_httpc.h │ ├── littlefs_thread.c │ ├── lwm2m_carrier │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── slm_at_carrier.c │ │ ├── slm_at_carrier.h │ │ ├── slm_at_carrier_cfg.c │ │ └── slm_at_carrier_cfg.h │ ├── main.c │ ├── mqtt_c │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── slm_at_mqtt.c │ │ └── slm_at_mqtt.h │ ├── nativetls │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── slm_at_cmng.c │ │ ├── slm_at_cmng.h │ │ ├── slm_native_tls.c │ │ └── slm_native_tls.h │ ├── nrfcloud │ │ ├── CMakeLists.txt │ │ ├── slm_at_nrfcloud.c │ │ └── slm_at_nrfcloud.h │ ├── nvs_thread.c │ ├── slm_at_commands.c │ ├── slm_at_fota.c │ ├── slm_at_fota.h │ ├── slm_at_host.c │ ├── slm_at_host.h │ ├── slm_at_icmp.c │ ├── slm_at_icmp.h │ ├── slm_at_sms.c │ ├── slm_at_sms.h │ ├── slm_at_socket.c │ ├── slm_at_socket.h │ ├── slm_at_tcp_proxy.c │ ├── slm_at_tcp_proxy.h │ ├── slm_at_udp_proxy.c │ ├── slm_at_udp_proxy.h │ ├── slm_auto_connect.h │ ├── slm_cmux.c │ ├── slm_cmux.h │ ├── slm_defines.h │ ├── slm_ppp.c │ ├── slm_ppp.h │ ├── slm_settings.c │ ├── slm_settings.h │ ├── slm_sockopt.h │ ├── slm_trap_macros.h │ ├── slm_uart_handler.c │ ├── slm_uart_handler.h │ ├── slm_util.c │ ├── slm_util.h │ ├── spi_thread.c │ ├── twi │ │ ├── CMakeLists.txt │ │ ├── Kconfig │ │ ├── slm_at_twi.c │ │ └── slm_at_twi.h │ └── uart_thread.c ├── sysbuild.conf └── sysbuild │ ├── b0 │ └── prj.conf │ └── mcuboot │ ├── app.overlay │ ├── boards │ ├── nrf9160dk_nrf9160.conf │ ├── nrf9160dk_nrf9160.overlay │ ├── thingy91_nrf9160.conf │ ├── thingy91x_nrf9151.conf │ └── thingy91x_nrf9151.overlay │ └── prj.conf ├── smp_dfu ├── ble_extFlash │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── app.overlay │ ├── child_image │ │ ├── hci_rpmsg.conf │ │ └── mcuboot.conf │ ├── pm_static.yml │ ├── prj.conf │ ├── program.bat │ ├── sample.yaml │ ├── sdk_change │ │ ├── ncs_v1.5.x │ │ │ └── bootloader │ │ │ │ └── mcuboot │ │ │ │ └── boot │ │ │ │ └── bootutil │ │ │ │ └── src │ │ │ │ └── loader.c │ │ ├── ncs_v1.6.x │ │ │ └── bootloader │ │ │ │ └── mcuboot │ │ │ │ └── boot │ │ │ │ └── bootutil │ │ │ │ └── src │ │ │ │ └── loader.c │ │ ├── ncs_v1.7.x │ │ │ └── bootloader │ │ │ │ └── mcuboot │ │ │ │ └── boot │ │ │ │ └── bootutil │ │ │ │ └── src │ │ │ │ └── loader.c │ │ ├── ncs_v1.8.x │ │ │ └── bootloader │ │ │ │ └── mcuboot │ │ │ │ └── boot │ │ │ │ └── bootutil │ │ │ │ └── src │ │ │ │ └── loader.c │ │ ├── ncs_v1.9.x │ │ │ └── bootloader │ │ │ │ └── mcuboot │ │ │ │ └── boot │ │ │ │ └── bootutil │ │ │ │ └── src │ │ │ │ └── loader.c │ │ └── ncs_v2.0.x │ │ │ └── bootloader │ │ │ └── mcuboot │ │ │ └── boot │ │ │ └── bootutil │ │ │ └── src │ │ │ └── loader.c │ └── src │ │ ├── main.c │ │ ├── uart_hs.c │ │ └── uart_hs.h ├── ble_intFlash │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── child_image │ │ ├── hci_rpmsg.conf │ │ └── mcuboot.conf │ ├── prj.conf │ ├── program.bat │ ├── sample.yaml │ └── src │ │ ├── main.c │ │ ├── uart_hs.c │ │ └── uart_hs.h ├── peripheral_uart_1s_extFlash_hook │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── app.overlay │ ├── boards │ │ ├── pm_static_thingy53_nrf5340_cpuapp.yml │ │ ├── pm_static_thingy53_nrf5340_cpuapp_ns.yml │ │ ├── thingy53.c │ │ ├── thingy53_nrf5340_cpuapp.conf │ │ ├── thingy53_nrf5340_cpuapp.overlay │ │ ├── thingy53_nrf5340_cpuapp_ns.conf │ │ └── thingy53_nrf5340_cpuapp_ns.overlay │ ├── child_image │ │ ├── hci_rpmsg.conf │ │ ├── hci_rpmsg │ │ │ └── boards │ │ │ │ └── thingy53_nrf5340_cpunet.conf │ │ └── mcuboot.conf │ ├── pm_static.yml │ ├── prj.conf │ ├── prj_cdc.conf │ ├── prj_minimal.conf │ ├── sample.yaml │ ├── sdk_change │ │ └── ncs_v2.0.x │ │ │ ├── bootloader │ │ │ └── mcuboot │ │ │ │ └── boot │ │ │ │ └── bootutil │ │ │ │ └── src │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ └── modules │ │ │ └── mcuboot │ │ │ └── hooks │ │ │ └── nrf53_hooks.c │ ├── src │ │ ├── main.c │ │ ├── uart_async_adapter.c │ │ └── uart_async_adapter.h │ └── usb.overlay ├── peripheral_uart_1s_intFlash │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── app.overlay │ ├── boards │ │ ├── thingy53.c │ │ ├── thingy53_nrf5340_cpuapp.conf │ │ ├── thingy53_nrf5340_cpuapp.overlay │ │ ├── thingy53_nrf5340_cpuapp_ns.conf │ │ └── thingy53_nrf5340_cpuapp_ns.overlay │ ├── child_image │ │ └── hci_rpmsg.conf │ ├── prj.conf │ ├── prj_cdc.conf │ ├── prj_minimal.conf │ ├── sample.yaml │ ├── src │ │ ├── main.c │ │ ├── uart_async_adapter.c │ │ └── uart_async_adapter.h │ └── usb.overlay ├── peripheral_uart_1s_intFlash_hook │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── app.overlay │ ├── boards │ │ ├── pm_static_thingy53_nrf5340_cpuapp.yml │ │ ├── pm_static_thingy53_nrf5340_cpuapp_ns.yml │ │ ├── thingy53.c │ │ ├── thingy53_nrf5340_cpuapp.conf │ │ ├── thingy53_nrf5340_cpuapp.overlay │ │ ├── thingy53_nrf5340_cpuapp_ns.conf │ │ └── thingy53_nrf5340_cpuapp_ns.overlay │ ├── child_image │ │ ├── hci_rpmsg.conf │ │ ├── hci_rpmsg │ │ │ └── boards │ │ │ │ └── thingy53_nrf5340_cpunet.conf │ │ └── mcuboot.conf │ ├── prj.conf │ ├── prj_cdc.conf │ ├── prj_minimal.conf │ ├── sample.yaml │ ├── sdk_change │ │ └── ncs_v2.0.x │ │ │ ├── bootloader │ │ │ └── mcuboot │ │ │ │ └── boot │ │ │ │ └── bootutil │ │ │ │ └── src │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ └── modules │ │ │ └── mcuboot │ │ │ └── hooks │ │ │ └── nrf53_hooks.c │ ├── src │ │ ├── main.c │ │ ├── uart_async_adapter.c │ │ └── uart_async_adapter.h │ └── usb.overlay ├── peripheral_uart_2s_extFlash_hook │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── app.overlay │ ├── child_image │ │ ├── hci_rpmsg.conf │ │ ├── hci_rpmsg │ │ │ └── boards │ │ │ │ └── thingy53_nrf5340_cpunet.conf │ │ ├── mcuboot.conf │ │ └── mcuboot │ │ │ └── boards │ │ │ └── nrf5340dk_nrf5340_cpuapp.overlay │ ├── pm_static.yml │ ├── prj.conf │ ├── prj_cdc.conf │ ├── prj_minimal.conf │ ├── program.bat │ ├── sample.yaml │ ├── sdk_change │ │ ├── ncs_v2.0.x │ │ │ ├── bootloader │ │ │ │ └── mcuboot │ │ │ │ │ └── boot │ │ │ │ │ └── bootutil │ │ │ │ │ └── src │ │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ │ └── modules │ │ │ │ └── mcuboot │ │ │ │ └── hooks │ │ │ │ └── nrf53_hooks.c │ │ └── ncs_v2.2.x │ │ │ ├── bootloader │ │ │ └── mcuboot │ │ │ │ └── boot │ │ │ │ └── bootutil │ │ │ │ └── src │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ └── modules │ │ │ └── mcuboot │ │ │ └── hooks │ │ │ └── nrf53_hooks.c │ ├── src │ │ ├── main.c │ │ ├── uart_async_adapter.c │ │ └── uart_async_adapter.h │ └── usb.overlay ├── peripheral_uart_2s_extFlash_mock │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── app.overlay │ ├── child_image │ │ ├── hci_rpmsg.conf │ │ ├── hci_rpmsg │ │ │ └── boards │ │ │ │ └── thingy53_nrf5340_cpunet.conf │ │ ├── mcuboot.conf │ │ └── mcuboot │ │ │ └── boards │ │ │ └── nrf5340dk_nrf5340_cpuapp.overlay │ ├── pm_static.yml │ ├── prj.conf │ ├── prj_cdc.conf │ ├── prj_minimal.conf │ ├── sample.yaml │ ├── sdk_change │ │ ├── ncs_v2.0.x │ │ │ └── bootloader │ │ │ │ └── mcuboot │ │ │ │ └── boot │ │ │ │ └── bootutil │ │ │ │ └── src │ │ │ │ └── loader.c │ │ └── ncs_v2.2.x │ │ │ └── bootloader │ │ │ └── mcuboot │ │ │ └── boot │ │ │ └── bootutil │ │ │ └── src │ │ │ └── loader.c │ ├── src │ │ ├── main.c │ │ ├── uart_async_adapter.c │ │ └── uart_async_adapter.h │ └── usb.overlay ├── peripheral_uart_2s_intFlash_hook │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── app.overlay │ ├── child_image │ │ ├── hci_rpmsg.conf │ │ ├── hci_rpmsg │ │ │ └── boards │ │ │ │ └── thingy53_nrf5340_cpunet.conf │ │ └── mcuboot.conf │ ├── pm_static.yml │ ├── prj.conf │ ├── prj_cdc.conf │ ├── prj_minimal.conf │ ├── sample.yaml │ ├── sdk_change │ │ └── ncs_v2.0.x │ │ │ ├── bootloader │ │ │ └── mcuboot │ │ │ │ └── boot │ │ │ │ └── bootutil │ │ │ │ └── src │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ └── modules │ │ │ └── mcuboot │ │ │ └── hooks │ │ │ └── nrf53_hooks.c │ ├── src │ │ ├── main.c │ │ ├── uart_async_adapter.c │ │ └── uart_async_adapter.h │ └── usb.overlay ├── peripheral_uart_2s_intFlash_mock │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── app.overlay │ ├── child_image │ │ ├── hci_rpmsg.conf │ │ ├── hci_rpmsg │ │ │ └── boards │ │ │ │ └── thingy53_nrf5340_cpunet.conf │ │ ├── mcuboot.conf │ │ └── mcuboot.overlay │ ├── pm_static.yml │ ├── prj.conf │ ├── prj_cdc.conf │ ├── prj_minimal.conf │ ├── sample.yaml │ ├── sdk_change │ │ └── ncs_v2.0.x │ │ │ ├── bootloader │ │ │ └── mcuboot │ │ │ │ └── boot │ │ │ │ └── bootutil │ │ │ │ └── src │ │ │ │ └── loader.c │ │ │ └── nrf │ │ │ └── modules │ │ │ └── mcuboot │ │ │ └── boot │ │ │ └── zephyr │ │ │ └── Kconfig │ ├── src │ │ ├── main.c │ │ ├── uart_async_adapter.c │ │ └── uart_async_adapter.h │ └── usb.overlay ├── peripheral_uart_SimThingy53 │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── app.overlay │ ├── child_image │ │ ├── hci_rpmsg.conf │ │ ├── hci_rpmsg │ │ │ └── boards │ │ │ │ └── thingy53_nrf5340_cpunet.conf │ │ ├── mcuboot.conf │ │ └── mcuboot │ │ │ └── boards │ │ │ └── nrf5340dk_nrf5340_cpuapp.overlay │ ├── pm_static.yml │ ├── pm_static_thingy53.yml │ ├── prj.conf │ ├── prj_cdc.conf │ ├── prj_minimal.conf │ ├── program.bat │ ├── sample.yaml │ ├── src │ │ ├── main.c │ │ ├── uart_async_adapter.c │ │ └── uart_async_adapter.h │ └── usb.overlay ├── uart_intFlash │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── child_image │ │ ├── hci_rpmsg.conf │ │ └── mcuboot.conf │ ├── prj.conf │ ├── program.bat │ ├── sample.yaml │ ├── src │ │ └── main.c │ └── update │ │ └── mcumgr.exe └── usb_intFlash │ ├── CMakeLists.txt │ ├── Kconfig │ ├── README.rst │ ├── app.overlay │ ├── child_image │ ├── hci_rpmsg.conf │ └── mcuboot.conf │ ├── prj.conf │ ├── program.bat │ ├── sample.yaml │ ├── src │ └── main.c │ └── update │ └── mcumgr.exe ├── spi_master ├── CMakeLists.txt ├── Kconfig ├── README.rst ├── boards │ ├── nrf52840dk_nrf52840.overlay │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ └── nrf9160dk_nrf9160_ns.overlay ├── prj.conf ├── program.bat ├── resources │ ├── spis_pca10040.hex │ └── spis_pca10056.hex ├── sample.yaml └── src │ └── main.c ├── uart_highspeed ├── CMakeLists.txt ├── Kconfig ├── README.rst ├── boards │ ├── nrf52840dk_nrf52840.overlay │ ├── nrf5340dk_nrf5340_cpuapp.overlay │ ├── nrf54l15dk_nrf54l15_cpuflpr.conf │ ├── nrf54l15dk_nrf54l15_cpuflpr.overlay │ └── nrf9160dk_nrf9160_ns.overlay ├── prj.conf ├── program.bat ├── program_flpr.bat ├── sample.yaml ├── sdk_change │ ├── flpr.map │ └── zephyr │ │ └── snippets │ │ └── nordic-flpr │ │ └── soc │ │ └── nrf54l15_cpuapp.overlay ├── src │ └── main.c ├── sysbuild │ └── vpr_launcher │ │ ├── boards │ │ └── nrf54l15dk_nrf54l15_cpuapp.overlay │ │ └── prj.conf └── zephyr.dts └── wifi └── shell_spi ├── CMakeLists.txt ├── README.rst ├── boards ├── nrf52840dk_nrf52840.overlay ├── nrf7002dk_nrf5340_cpuapp.overlay ├── nrf7002dk_nrf5340_cpuapp_reference.overlay └── nrf9160dk_nrf9160_ns.overlay ├── overlay-ipv6-only.conf ├── overlay-openthread.conf ├── overlay-scan-only.conf ├── overlay-wpa_cli.conf ├── overlay-zperf.conf ├── prj.conf ├── sample.yaml └── src └── wifi_main.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/.gitignore -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/README.rst -------------------------------------------------------------------------------- /ble_comprehensive/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/CMakeLists.txt -------------------------------------------------------------------------------- /ble_comprehensive/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/Kconfig -------------------------------------------------------------------------------- /ble_comprehensive/Kconfig.sysbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/Kconfig.sysbuild -------------------------------------------------------------------------------- /ble_comprehensive/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/README.rst -------------------------------------------------------------------------------- /ble_comprehensive/boards/nrf52840dk_nrf52840.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/boards/nrf52840dk_nrf52840.conf -------------------------------------------------------------------------------- /ble_comprehensive/boards/nrf52840dk_nrf52840.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/boards/nrf52840dk_nrf52840.overlay -------------------------------------------------------------------------------- /ble_comprehensive/boards/nrf5340dk_nrf5340_cpuapp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/boards/nrf5340dk_nrf5340_cpuapp.conf -------------------------------------------------------------------------------- /ble_comprehensive/boards/nrf5340dk_nrf5340_cpuapp.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/boards/nrf5340dk_nrf5340_cpuapp.overlay -------------------------------------------------------------------------------- /ble_comprehensive/boards/nrf54l15dk_nrf54l15_cpuapp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/boards/nrf54l15dk_nrf54l15_cpuapp.conf -------------------------------------------------------------------------------- /ble_comprehensive/boards/nrf54l15dk_nrf54l15_cpuapp.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/boards/nrf54l15dk_nrf54l15_cpuapp.overlay -------------------------------------------------------------------------------- /ble_comprehensive/boards/nrf54l15dk_nrf54l15_cpuapp_flpr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/boards/nrf54l15dk_nrf54l15_cpuapp_flpr.conf -------------------------------------------------------------------------------- /ble_comprehensive/boards/nrf54l15dk_nrf54l15_cpuapp_flpr.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/boards/nrf54l15dk_nrf54l15_cpuapp_flpr.overlay -------------------------------------------------------------------------------- /ble_comprehensive/boards/nrf7002dk_nrf5340_cpuapp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/boards/nrf7002dk_nrf5340_cpuapp.conf -------------------------------------------------------------------------------- /ble_comprehensive/boards/nrf7002dk_nrf5340_cpuapp.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/boards/nrf7002dk_nrf5340_cpuapp.overlay -------------------------------------------------------------------------------- /ble_comprehensive/boards/nrf7002dk_nrf5340_cpuapp_nrf7001.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/boards/nrf7002dk_nrf5340_cpuapp_nrf7001.conf -------------------------------------------------------------------------------- /ble_comprehensive/boards/nrf7002dk_nrf5340_cpuapp_nrf7001.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/boards/nrf7002dk_nrf5340_cpuapp_nrf7001.overlay -------------------------------------------------------------------------------- /ble_comprehensive/dts/bindings/spi-user-define.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/dts/bindings/spi-user-define.yaml -------------------------------------------------------------------------------- /ble_comprehensive/pm_static_nrf52840dk_nrf52840.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/pm_static_nrf52840dk_nrf52840.yml -------------------------------------------------------------------------------- /ble_comprehensive/pm_static_nrf5340dk_nrf5340_cpuapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/pm_static_nrf5340dk_nrf5340_cpuapp.yml -------------------------------------------------------------------------------- /ble_comprehensive/pm_static_nrf5340dk_nrf5340_cpuapp_hci_ipc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/pm_static_nrf5340dk_nrf5340_cpuapp_hci_ipc.yml -------------------------------------------------------------------------------- /ble_comprehensive/pm_static_nrf54l15dk_nrf54l15_cpuapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/pm_static_nrf54l15dk_nrf54l15_cpuapp.yml -------------------------------------------------------------------------------- /ble_comprehensive/pm_static_nrf54l15dk_nrf54l15_cpuapp_flpr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/pm_static_nrf54l15dk_nrf54l15_cpuapp_flpr.yml -------------------------------------------------------------------------------- /ble_comprehensive/pm_static_nrf7002dk_nrf5340_cpuapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/pm_static_nrf7002dk_nrf5340_cpuapp.yml -------------------------------------------------------------------------------- /ble_comprehensive/pm_static_nrf7002dk_nrf5340_cpuapp_nrf7001.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/pm_static_nrf7002dk_nrf5340_cpuapp_nrf7001.yml -------------------------------------------------------------------------------- /ble_comprehensive/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/prj.conf -------------------------------------------------------------------------------- /ble_comprehensive/prj_flpr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/prj_flpr.conf -------------------------------------------------------------------------------- /ble_comprehensive/program.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/program.bat -------------------------------------------------------------------------------- /ble_comprehensive/program_flpr.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/program_flpr.bat -------------------------------------------------------------------------------- /ble_comprehensive/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sample.yaml -------------------------------------------------------------------------------- /ble_comprehensive/sdk_change/dtm_in_app_ncs_v3.0.0/mpsl_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sdk_change/dtm_in_app_ncs_v3.0.0/mpsl_init.c -------------------------------------------------------------------------------- /ble_comprehensive/sdk_change/ncs_v1.5.x/nrf/subsys/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sdk_change/ncs_v1.5.x/nrf/subsys/CMakeLists.txt -------------------------------------------------------------------------------- /ble_comprehensive/sdk_change/ncs_v1.5.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sdk_change/ncs_v1.5.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /ble_comprehensive/sdk_change/ncs_v1.5.x/nrf/subsys/nrf_dfu/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sdk_change/ncs_v1.5.x/nrf/subsys/nrf_dfu/Kconfig -------------------------------------------------------------------------------- /ble_comprehensive/sdk_change/ncs_v1.5.x/nrf/subsys/nrf_dfu/slip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sdk_change/ncs_v1.5.x/nrf/subsys/nrf_dfu/slip.c -------------------------------------------------------------------------------- /ble_comprehensive/sdk_change/ncs_v1.6.x/nrf/subsys/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sdk_change/ncs_v1.6.x/nrf/subsys/CMakeLists.txt -------------------------------------------------------------------------------- /ble_comprehensive/sdk_change/ncs_v1.6.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sdk_change/ncs_v1.6.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /ble_comprehensive/sdk_change/ncs_v1.6.x/nrf/subsys/nrf_dfu/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sdk_change/ncs_v1.6.x/nrf/subsys/nrf_dfu/Kconfig -------------------------------------------------------------------------------- /ble_comprehensive/sdk_change/ncs_v1.6.x/nrf/subsys/nrf_dfu/slip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sdk_change/ncs_v1.6.x/nrf/subsys/nrf_dfu/slip.c -------------------------------------------------------------------------------- /ble_comprehensive/sdk_change/ncs_v1.7.x/nrf/subsys/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sdk_change/ncs_v1.7.x/nrf/subsys/CMakeLists.txt -------------------------------------------------------------------------------- /ble_comprehensive/sdk_change/ncs_v1.7.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sdk_change/ncs_v1.7.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /ble_comprehensive/sdk_change/ncs_v1.7.x/nrf/subsys/nrf_dfu/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sdk_change/ncs_v1.7.x/nrf/subsys/nrf_dfu/Kconfig -------------------------------------------------------------------------------- /ble_comprehensive/sdk_change/ncs_v1.7.x/nrf/subsys/nrf_dfu/slip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sdk_change/ncs_v1.7.x/nrf/subsys/nrf_dfu/slip.c -------------------------------------------------------------------------------- /ble_comprehensive/sdk_change/ncs_v1.8.x/nrf/subsys/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sdk_change/ncs_v1.8.x/nrf/subsys/CMakeLists.txt -------------------------------------------------------------------------------- /ble_comprehensive/sdk_change/ncs_v1.8.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sdk_change/ncs_v1.8.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /ble_comprehensive/sdk_change/ncs_v1.8.x/nrf/subsys/nrf_dfu/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sdk_change/ncs_v1.8.x/nrf/subsys/nrf_dfu/Kconfig -------------------------------------------------------------------------------- /ble_comprehensive/sdk_change/ncs_v1.8.x/nrf/subsys/nrf_dfu/slip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sdk_change/ncs_v1.8.x/nrf/subsys/nrf_dfu/slip.c -------------------------------------------------------------------------------- /ble_comprehensive/sdk_change/ncs_v1.9.x/nrf/subsys/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sdk_change/ncs_v1.9.x/nrf/subsys/CMakeLists.txt -------------------------------------------------------------------------------- /ble_comprehensive/sdk_change/ncs_v1.9.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sdk_change/ncs_v1.9.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /ble_comprehensive/sdk_change/ncs_v1.9.x/nrf/subsys/nrf_dfu/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sdk_change/ncs_v1.9.x/nrf/subsys/nrf_dfu/Kconfig -------------------------------------------------------------------------------- /ble_comprehensive/sdk_change/ncs_v1.9.x/nrf/subsys/nrf_dfu/slip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sdk_change/ncs_v1.9.x/nrf/subsys/nrf_dfu/slip.c -------------------------------------------------------------------------------- /ble_comprehensive/src/adc_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/src/adc_thread.c -------------------------------------------------------------------------------- /ble_comprehensive/src/dtm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/src/dtm/CMakeLists.txt -------------------------------------------------------------------------------- /ble_comprehensive/src/dtm/dtm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/src/dtm/dtm.c -------------------------------------------------------------------------------- /ble_comprehensive/src/dtm/dtm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/src/dtm/dtm.h -------------------------------------------------------------------------------- /ble_comprehensive/src/dtm/dtm_hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/src/dtm/dtm_hw.c -------------------------------------------------------------------------------- /ble_comprehensive/src/dtm/dtm_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/src/dtm/dtm_hw.h -------------------------------------------------------------------------------- /ble_comprehensive/src/dtm/dtm_hw_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/src/dtm/dtm_hw_config.h -------------------------------------------------------------------------------- /ble_comprehensive/src/dtm/dtm_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/src/dtm/dtm_main.c -------------------------------------------------------------------------------- /ble_comprehensive/src/dtm/rpc/dtm_serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/src/dtm/rpc/dtm_serialization.h -------------------------------------------------------------------------------- /ble_comprehensive/src/dtm/transport/dtm_hci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/src/dtm/transport/dtm_hci.c -------------------------------------------------------------------------------- /ble_comprehensive/src/dtm/transport/dtm_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/src/dtm/transport/dtm_transport.h -------------------------------------------------------------------------------- /ble_comprehensive/src/dtm/transport/dtm_uart_twowire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/src/dtm/transport/dtm_uart_twowire.c -------------------------------------------------------------------------------- /ble_comprehensive/src/dtm/transport/dtm_uart_wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/src/dtm/transport/dtm_uart_wait.c -------------------------------------------------------------------------------- /ble_comprehensive/src/dtm/transport/dtm_uart_wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/src/dtm/transport/dtm_uart_wait.h -------------------------------------------------------------------------------- /ble_comprehensive/src/dtm/transport/hci_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/src/dtm/transport/hci_uart.c -------------------------------------------------------------------------------- /ble_comprehensive/src/dtm/transport/hci_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/src/dtm/transport/hci_uart.h -------------------------------------------------------------------------------- /ble_comprehensive/src/dtm/transport/hci_uart_remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/src/dtm/transport/hci_uart_remote.c -------------------------------------------------------------------------------- /ble_comprehensive/src/i2c_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/src/i2c_thread.c -------------------------------------------------------------------------------- /ble_comprehensive/src/io_int_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/src/io_int_thread.c -------------------------------------------------------------------------------- /ble_comprehensive/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/src/main.c -------------------------------------------------------------------------------- /ble_comprehensive/src/nvs_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/src/nvs_thread.c -------------------------------------------------------------------------------- /ble_comprehensive/src/settings_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/src/settings_thread.c -------------------------------------------------------------------------------- /ble_comprehensive/src/spi_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/src/spi_thread.c -------------------------------------------------------------------------------- /ble_comprehensive/src/uart_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/src/uart_thread.c -------------------------------------------------------------------------------- /ble_comprehensive/sysbuild.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sysbuild.conf -------------------------------------------------------------------------------- /ble_comprehensive/sysbuild/b0n.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sysbuild/b0n.conf -------------------------------------------------------------------------------- /ble_comprehensive/sysbuild/ipc_radio.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sysbuild/ipc_radio.conf -------------------------------------------------------------------------------- /ble_comprehensive/sysbuild/mcuboot/app.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sysbuild/mcuboot/app.overlay -------------------------------------------------------------------------------- /ble_comprehensive/sysbuild/mcuboot/boards/nrf52840dk_nrf52840.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sysbuild/mcuboot/boards/nrf52840dk_nrf52840.conf -------------------------------------------------------------------------------- /ble_comprehensive/sysbuild/mcuboot/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sysbuild/mcuboot/prj.conf -------------------------------------------------------------------------------- /ble_comprehensive/sysbuild_hci_ipc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_comprehensive/sysbuild_hci_ipc.conf -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/CMakeLists.txt -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/Kconfig -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/README.rst -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/boards/nrf5340dk_nrf5340_cpuapp.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/boards/nrf5340dk_nrf5340_cpuapp.overlay -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/child_image/hci_rpmsg.conf: -------------------------------------------------------------------------------- 1 | CONFIG_IPC_SMP_BT=y -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/child_image/mcuboot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/child_image/mcuboot.conf -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/child_image/mcuboot.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/child_image/mcuboot.overlay -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/child_image/mcuboot/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/child_image/mcuboot/prj.conf -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/pm_static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/pm_static.yml -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/prj.conf -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/program.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/program.bat -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/sample.yaml -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/sdk_change/ncs_v1.5.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/sdk_change/ncs_v1.5.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/sdk_change/ncs_v1.6.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/sdk_change/ncs_v1.6.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/sdk_change/ncs_v1.7.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/sdk_change/ncs_v1.7.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/sdk_change/ncs_v1.8.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/sdk_change/ncs_v1.8.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/sdk_change/ncs_v1.9.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/sdk_change/ncs_v1.9.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/src/adc_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/src/adc_thread.c -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/src/flash_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/src/flash_thread.c -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/src/iic_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/src/iic_thread.c -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/src/ipc_app_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/src/ipc_app_api.c -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/src/ipc_app_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/src/ipc_app_api.h -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/src/ipc_app_smp_bt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/src/ipc_app_smp_bt.c -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/src/ipc_app_smp_bt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/src/ipc_app_smp_bt.h -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/src/ipc_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/src/ipc_lib.c -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/src/ipc_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/src/ipc_lib.h -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/src/ipc_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/src/ipc_thread.c -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/src/main.c -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/src/smp_reassembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/src/smp_reassembly.h -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/src/spi_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/src/spi_thread.c -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/src/uart_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/src/uart_thread.c -------------------------------------------------------------------------------- /ble_ipc/comprehensive_ipc/update/zip_generate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/comprehensive_ipc/update/zip_generate.bat -------------------------------------------------------------------------------- /ble_ipc/flash_script/flash.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/flash_script/flash.bat -------------------------------------------------------------------------------- /ble_ipc/flash_script/root-ec-p256.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/flash_script/root-ec-p256.pem -------------------------------------------------------------------------------- /ble_ipc/ipc_cmd_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/ipc_cmd_ids.h -------------------------------------------------------------------------------- /ble_ipc/netcore_ipc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/netcore_ipc/CMakeLists.txt -------------------------------------------------------------------------------- /ble_ipc/netcore_ipc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/netcore_ipc/Kconfig -------------------------------------------------------------------------------- /ble_ipc/netcore_ipc/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/netcore_ipc/README.rst -------------------------------------------------------------------------------- /ble_ipc/netcore_ipc/child_image/b0n.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/netcore_ipc/child_image/b0n.conf -------------------------------------------------------------------------------- /ble_ipc/netcore_ipc/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/netcore_ipc/prj.conf -------------------------------------------------------------------------------- /ble_ipc/netcore_ipc/program_53.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/netcore_ipc/program_53.bat -------------------------------------------------------------------------------- /ble_ipc/netcore_ipc/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/netcore_ipc/sample.yaml -------------------------------------------------------------------------------- /ble_ipc/netcore_ipc/src/ipc_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/netcore_ipc/src/ipc_lib.c -------------------------------------------------------------------------------- /ble_ipc/netcore_ipc/src/ipc_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/netcore_ipc/src/ipc_lib.h -------------------------------------------------------------------------------- /ble_ipc/netcore_ipc/src/ipc_net_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/netcore_ipc/src/ipc_net_api.c -------------------------------------------------------------------------------- /ble_ipc/netcore_ipc/src/ipc_net_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/netcore_ipc/src/ipc_net_api.h -------------------------------------------------------------------------------- /ble_ipc/netcore_ipc/src/ipc_net_smp_bt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/netcore_ipc/src/ipc_net_smp_bt.c -------------------------------------------------------------------------------- /ble_ipc/netcore_ipc/src/ipc_net_smp_bt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/netcore_ipc/src/ipc_net_smp_bt.h -------------------------------------------------------------------------------- /ble_ipc/netcore_ipc/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/netcore_ipc/src/main.c -------------------------------------------------------------------------------- /ble_ipc/uart_nrf_dfu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/uart_nrf_dfu/CMakeLists.txt -------------------------------------------------------------------------------- /ble_ipc/uart_nrf_dfu/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/uart_nrf_dfu/Kconfig -------------------------------------------------------------------------------- /ble_ipc/uart_nrf_dfu/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/uart_nrf_dfu/README.rst -------------------------------------------------------------------------------- /ble_ipc/uart_nrf_dfu/app.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/uart_nrf_dfu/app.overlay -------------------------------------------------------------------------------- /ble_ipc/uart_nrf_dfu/child_image/hci_rpmsg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/uart_nrf_dfu/child_image/hci_rpmsg.conf -------------------------------------------------------------------------------- /ble_ipc/uart_nrf_dfu/child_image/mcuboot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/uart_nrf_dfu/child_image/mcuboot.conf -------------------------------------------------------------------------------- /ble_ipc/uart_nrf_dfu/pm_static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/uart_nrf_dfu/pm_static.yml -------------------------------------------------------------------------------- /ble_ipc/uart_nrf_dfu/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/uart_nrf_dfu/prj.conf -------------------------------------------------------------------------------- /ble_ipc/uart_nrf_dfu/program.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/uart_nrf_dfu/program.bat -------------------------------------------------------------------------------- /ble_ipc/uart_nrf_dfu/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/uart_nrf_dfu/sample.yaml -------------------------------------------------------------------------------- /ble_ipc/uart_nrf_dfu/sdk_change/ncs_v1.9.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/uart_nrf_dfu/sdk_change/ncs_v1.9.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /ble_ipc/uart_nrf_dfu/sdk_change/ncs_v2.0.x/nrf/samples/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/uart_nrf_dfu/sdk_change/ncs_v2.0.x/nrf/samples/Kconfig -------------------------------------------------------------------------------- /ble_ipc/uart_nrf_dfu/sdk_change/ncs_v2.0.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/uart_nrf_dfu/sdk_change/ncs_v2.0.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /ble_ipc/uart_nrf_dfu/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/uart_nrf_dfu/src/main.c -------------------------------------------------------------------------------- /ble_ipc/uart_nrf_dfu/update/upload_app.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_ipc/uart_nrf_dfu/update/upload_app.bat -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/CMakeLists.txt -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/Kconfig -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/README.rst -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/boards/nrf5340dk_nrf5340_cpuapp.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/boards/nrf5340dk_nrf5340_cpuapp.overlay -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/child_image/mcuboot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/child_image/mcuboot.conf -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/child_image/mcuboot.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/child_image/mcuboot.overlay -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/child_image/mcuboot/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/child_image/mcuboot/prj.conf -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/pm_static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/pm_static.yml -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/prj.conf -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/program.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/program.bat -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/sample.yaml -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/sdk_change/ncs_v1.5.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/sdk_change/ncs_v1.5.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/sdk_change/ncs_v1.6.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/sdk_change/ncs_v1.6.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/sdk_change/ncs_v1.7.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/sdk_change/ncs_v1.7.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/sdk_change/ncs_v1.8.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/sdk_change/ncs_v1.8.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/sdk_change/ncs_v1.9.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/sdk_change/ncs_v1.9.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/src/adc_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/src/adc_thread.c -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/src/common_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/src/common_ids.h -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/src/flash_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/src/flash_thread.c -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/src/iic_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/src/iic_thread.c -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/src/main.c -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/src/rpc_app_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/src/rpc_app_api.c -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/src/rpc_app_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/src/rpc_app_api.h -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/src/rpc_app_api_general.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/src/rpc_app_api_general.c -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/src/rpc_app_smp_bt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/src/rpc_app_smp_bt.c -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/src/rpc_app_smp_bt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/src/rpc_app_smp_bt.h -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/src/rpc_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/src/rpc_thread.c -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/src/smp_reassembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/src/smp_reassembly.h -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/src/spi_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/src/spi_thread.c -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/src/uart_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/src/uart_thread.c -------------------------------------------------------------------------------- /ble_rpc/comprehensive_rpc/update/zip_generate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/comprehensive_rpc/update/zip_generate.bat -------------------------------------------------------------------------------- /ble_rpc/netcore_rpc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/netcore_rpc/CMakeLists.txt -------------------------------------------------------------------------------- /ble_rpc/netcore_rpc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/netcore_rpc/Kconfig -------------------------------------------------------------------------------- /ble_rpc/netcore_rpc/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/netcore_rpc/README.rst -------------------------------------------------------------------------------- /ble_rpc/netcore_rpc/boards/nrf5340dk_nrf5340_cpunet.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/netcore_rpc/boards/nrf5340dk_nrf5340_cpunet.overlay -------------------------------------------------------------------------------- /ble_rpc/netcore_rpc/child_image/b0n.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/netcore_rpc/child_image/b0n.conf -------------------------------------------------------------------------------- /ble_rpc/netcore_rpc/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/netcore_rpc/prj.conf -------------------------------------------------------------------------------- /ble_rpc/netcore_rpc/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/netcore_rpc/sample.yaml -------------------------------------------------------------------------------- /ble_rpc/netcore_rpc/src/common_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/netcore_rpc/src/common_ids.h -------------------------------------------------------------------------------- /ble_rpc/netcore_rpc/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/netcore_rpc/src/main.c -------------------------------------------------------------------------------- /ble_rpc/netcore_rpc/src/rpc_net_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/netcore_rpc/src/rpc_net_api.c -------------------------------------------------------------------------------- /ble_rpc/netcore_rpc/src/rpc_net_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/netcore_rpc/src/rpc_net_api.h -------------------------------------------------------------------------------- /ble_rpc/netcore_rpc/src/rpc_net_api_general.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/netcore_rpc/src/rpc_net_api_general.c -------------------------------------------------------------------------------- /ble_rpc/netcore_rpc/src/rpc_net_smp_bt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/netcore_rpc/src/rpc_net_smp_bt.c -------------------------------------------------------------------------------- /ble_rpc/netcore_rpc/src/rpc_net_smp_bt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/netcore_rpc/src/rpc_net_smp_bt.h -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_extFlash_rpc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_extFlash_rpc/CMakeLists.txt -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_extFlash_rpc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_extFlash_rpc/Kconfig -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_extFlash_rpc/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_extFlash_rpc/README.rst -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_extFlash_rpc/child_image/hci_rpmsg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_extFlash_rpc/child_image/hci_rpmsg.conf -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_extFlash_rpc/child_image/mcuboot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_extFlash_rpc/child_image/mcuboot.conf -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_extFlash_rpc/pm_static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_extFlash_rpc/pm_static.yml -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_extFlash_rpc/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_extFlash_rpc/prj.conf -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_extFlash_rpc/program.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_extFlash_rpc/program.bat -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_extFlash_rpc/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_extFlash_rpc/sample.yaml -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_extFlash_rpc/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_extFlash_rpc/src/main.c -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_extFlash_rpc/src/rpc_app_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_extFlash_rpc/src/rpc_app_api.c -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_extFlash_rpc/src/rpc_app_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_extFlash_rpc/src/rpc_app_api.h -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_extFlash_rpc/src/rpc_app_api_general.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_extFlash_rpc/src/rpc_app_api_general.c -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_extFlash_rpc/src/uart_hs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_extFlash_rpc/src/uart_hs.c -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_extFlash_rpc/src/uart_hs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_extFlash_rpc/src/uart_hs.h -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_extFlash_rpc/update/zip_generate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_extFlash_rpc/update/zip_generate.bat -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_intFlash_rpc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_intFlash_rpc/CMakeLists.txt -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_intFlash_rpc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_intFlash_rpc/Kconfig -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_intFlash_rpc/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_intFlash_rpc/README.rst -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_intFlash_rpc/child_image/hci_rpmsg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_intFlash_rpc/child_image/hci_rpmsg.conf -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_intFlash_rpc/child_image/mcuboot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_intFlash_rpc/child_image/mcuboot.conf -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_intFlash_rpc/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_intFlash_rpc/prj.conf -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_intFlash_rpc/program.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_intFlash_rpc/program.bat -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_intFlash_rpc/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_intFlash_rpc/sample.yaml -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_intFlash_rpc/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_intFlash_rpc/src/main.c -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_intFlash_rpc/src/rpc_app_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_intFlash_rpc/src/rpc_app_api.c -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_intFlash_rpc/src/rpc_app_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_intFlash_rpc/src/rpc_app_api.h -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_intFlash_rpc/src/rpc_app_api_general.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_intFlash_rpc/src/rpc_app_api_general.c -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_intFlash_rpc/src/uart_hs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_intFlash_rpc/src/uart_hs.c -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_intFlash_rpc/src/uart_hs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_intFlash_rpc/src/uart_hs.h -------------------------------------------------------------------------------- /ble_rpc/nrf_dfu_intFlash_rpc/update/zip_generate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/ble_rpc/nrf_dfu_intFlash_rpc/update/zip_generate.bat -------------------------------------------------------------------------------- /external_interrupt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/external_interrupt/CMakeLists.txt -------------------------------------------------------------------------------- /external_interrupt/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/external_interrupt/Kconfig -------------------------------------------------------------------------------- /external_interrupt/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/external_interrupt/README.rst -------------------------------------------------------------------------------- /external_interrupt/boards/nrf52840dk_nrf52840.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/external_interrupt/boards/nrf52840dk_nrf52840.overlay -------------------------------------------------------------------------------- /external_interrupt/boards/nrf5340dk_nrf5340_cpuapp.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/external_interrupt/boards/nrf5340dk_nrf5340_cpuapp.overlay -------------------------------------------------------------------------------- /external_interrupt/boards/nrf9160dk_nrf9160_ns.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/external_interrupt/boards/nrf9160dk_nrf9160_ns.overlay -------------------------------------------------------------------------------- /external_interrupt/child_image/tfm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/external_interrupt/child_image/tfm.conf -------------------------------------------------------------------------------- /external_interrupt/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/external_interrupt/prj.conf -------------------------------------------------------------------------------- /external_interrupt/program.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/external_interrupt/program.bat -------------------------------------------------------------------------------- /external_interrupt/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/external_interrupt/sample.yaml -------------------------------------------------------------------------------- /external_interrupt/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/external_interrupt/src/main.c -------------------------------------------------------------------------------- /hello_world/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/hello_world/CMakeLists.txt -------------------------------------------------------------------------------- /hello_world/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/hello_world/README.rst -------------------------------------------------------------------------------- /hello_world/boards/nrf52840dk_nrf52840.overlay: -------------------------------------------------------------------------------- 1 | &uart0 { 2 | status = "disabled"; 3 | }; 4 | -------------------------------------------------------------------------------- /hello_world/boards/nrf5340dk_nrf5340_cpuapp.overlay: -------------------------------------------------------------------------------- 1 | &uart0 { 2 | status = "disabled"; 3 | }; 4 | -------------------------------------------------------------------------------- /hello_world/boards/nrf9160dk_nrf9160_ns.overlay: -------------------------------------------------------------------------------- 1 | &uart0 { 2 | status = "disabled"; 3 | }; 4 | -------------------------------------------------------------------------------- /hello_world/child_image/tfm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/hello_world/child_image/tfm.conf -------------------------------------------------------------------------------- /hello_world/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/hello_world/prj.conf -------------------------------------------------------------------------------- /hello_world/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/hello_world/sample.yaml -------------------------------------------------------------------------------- /hello_world/spm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/hello_world/spm.conf -------------------------------------------------------------------------------- /hello_world/spm.overlay: -------------------------------------------------------------------------------- 1 | &uart0 { 2 | status = "disabled"; 3 | }; 4 | -------------------------------------------------------------------------------- /hello_world/src/blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/hello_world/src/blinky.c -------------------------------------------------------------------------------- /hello_world/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/hello_world/src/main.c -------------------------------------------------------------------------------- /i2c_master/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/i2c_master/CMakeLists.txt -------------------------------------------------------------------------------- /i2c_master/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/i2c_master/Kconfig -------------------------------------------------------------------------------- /i2c_master/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/i2c_master/README.rst -------------------------------------------------------------------------------- /i2c_master/boards/nrf52840dk_nrf52840.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/i2c_master/boards/nrf52840dk_nrf52840.overlay -------------------------------------------------------------------------------- /i2c_master/boards/nrf5340dk_nrf5340_cpuapp.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/i2c_master/boards/nrf5340dk_nrf5340_cpuapp.overlay -------------------------------------------------------------------------------- /i2c_master/boards/nrf9160dk_nrf9160_ns.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/i2c_master/boards/nrf9160dk_nrf9160_ns.overlay -------------------------------------------------------------------------------- /i2c_master/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/i2c_master/prj.conf -------------------------------------------------------------------------------- /i2c_master/program.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/i2c_master/program.bat -------------------------------------------------------------------------------- /i2c_master/resources/twi_master_with_twis_slave_pca10040.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/i2c_master/resources/twi_master_with_twis_slave_pca10040.hex -------------------------------------------------------------------------------- /i2c_master/resources/twi_master_with_twis_slave_pca10056.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/i2c_master/resources/twi_master_with_twis_slave_pca10056.hex -------------------------------------------------------------------------------- /i2c_master/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/i2c_master/sample.yaml -------------------------------------------------------------------------------- /i2c_master/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/i2c_master/src/main.c -------------------------------------------------------------------------------- /matter/window_covering_nus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/CMakeLists.txt -------------------------------------------------------------------------------- /matter/window_covering_nus/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/Kconfig -------------------------------------------------------------------------------- /matter/window_covering_nus/Kconfig.sysbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/Kconfig.sysbuild -------------------------------------------------------------------------------- /matter/window_covering_nus/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/README.rst -------------------------------------------------------------------------------- /matter/window_covering_nus/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/VERSION -------------------------------------------------------------------------------- /matter/window_covering_nus/app.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/app.overlay -------------------------------------------------------------------------------- /matter/window_covering_nus/boards/nrf21540dk_nrf52840.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/boards/nrf21540dk_nrf52840.conf -------------------------------------------------------------------------------- /matter/window_covering_nus/boards/nrf21540dk_nrf52840.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/boards/nrf21540dk_nrf52840.overlay -------------------------------------------------------------------------------- /matter/window_covering_nus/boards/nrf52840dk_nrf52840.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/boards/nrf52840dk_nrf52840.overlay -------------------------------------------------------------------------------- /matter/window_covering_nus/boards/nrf5340dk_nrf5340_cpuapp.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/boards/nrf5340dk_nrf5340_cpuapp.overlay -------------------------------------------------------------------------------- /matter/window_covering_nus/boards/nrf54l15pdk_nrf54l15_cpuapp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/boards/nrf54l15pdk_nrf54l15_cpuapp.conf -------------------------------------------------------------------------------- /matter/window_covering_nus/pm_static_nrf52840dk_nrf52840.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/pm_static_nrf52840dk_nrf52840.yml -------------------------------------------------------------------------------- /matter/window_covering_nus/pm_static_nrf5340dk_nrf5340_cpuapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/pm_static_nrf5340dk_nrf5340_cpuapp.yml -------------------------------------------------------------------------------- /matter/window_covering_nus/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/prj.conf -------------------------------------------------------------------------------- /matter/window_covering_nus/prj_release.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/prj_release.conf -------------------------------------------------------------------------------- /matter/window_covering_nus/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/sample.yaml -------------------------------------------------------------------------------- /matter/window_covering_nus/sdk_change/BLEAdvertisingArbiter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/sdk_change/BLEAdvertisingArbiter.cpp -------------------------------------------------------------------------------- /matter/window_covering_nus/sdk_change/BLEManagerImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/sdk_change/BLEManagerImpl.cpp -------------------------------------------------------------------------------- /matter/window_covering_nus/src/app_task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/src/app_task.cpp -------------------------------------------------------------------------------- /matter/window_covering_nus/src/app_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/src/app_task.h -------------------------------------------------------------------------------- /matter/window_covering_nus/src/chip_project_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/src/chip_project_config.h -------------------------------------------------------------------------------- /matter/window_covering_nus/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/src/main.cpp -------------------------------------------------------------------------------- /matter/window_covering_nus/src/nus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/src/nus.c -------------------------------------------------------------------------------- /matter/window_covering_nus/src/window-app.matter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/src/window-app.matter -------------------------------------------------------------------------------- /matter/window_covering_nus/src/window-app.zap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/src/window-app.zap -------------------------------------------------------------------------------- /matter/window_covering_nus/src/window_covering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/src/window_covering.cpp -------------------------------------------------------------------------------- /matter/window_covering_nus/src/window_covering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/src/window_covering.h -------------------------------------------------------------------------------- /matter/window_covering_nus/src/zap-generated/CHIPClientCallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/src/zap-generated/CHIPClientCallbacks.h -------------------------------------------------------------------------------- /matter/window_covering_nus/src/zap-generated/CHIPClusters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/src/zap-generated/CHIPClusters.h -------------------------------------------------------------------------------- /matter/window_covering_nus/src/zap-generated/access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/src/zap-generated/access.h -------------------------------------------------------------------------------- /matter/window_covering_nus/src/zap-generated/callback-stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/src/zap-generated/callback-stub.cpp -------------------------------------------------------------------------------- /matter/window_covering_nus/src/zap-generated/endpoint_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/src/zap-generated/endpoint_config.h -------------------------------------------------------------------------------- /matter/window_covering_nus/src/zap-generated/gen_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/src/zap-generated/gen_config.h -------------------------------------------------------------------------------- /matter/window_covering_nus/src/zap-generated/gen_tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/src/zap-generated/gen_tokens.h -------------------------------------------------------------------------------- /matter/window_covering_nus/src/zcl_callbacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/src/zcl_callbacks.cpp -------------------------------------------------------------------------------- /matter/window_covering_nus/sysbuild.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/sysbuild.conf -------------------------------------------------------------------------------- /matter/window_covering_nus/sysbuild/ipc_radio/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/sysbuild/ipc_radio/prj.conf -------------------------------------------------------------------------------- /matter/window_covering_nus/sysbuild/ipc_radio/prj_release.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/sysbuild/ipc_radio/prj_release.conf -------------------------------------------------------------------------------- /matter/window_covering_nus/sysbuild/mcuboot/app.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/sysbuild/mcuboot/app.overlay -------------------------------------------------------------------------------- /matter/window_covering_nus/sysbuild/mcuboot/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/matter/window_covering_nus/sysbuild/mcuboot/prj.conf -------------------------------------------------------------------------------- /nrf_dfu/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/README.rst -------------------------------------------------------------------------------- /nrf_dfu/ble_extFlash/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_extFlash/CMakeLists.txt -------------------------------------------------------------------------------- /nrf_dfu/ble_extFlash/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_extFlash/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/ble_extFlash/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_extFlash/README.rst -------------------------------------------------------------------------------- /nrf_dfu/ble_extFlash/app.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_extFlash/app.overlay -------------------------------------------------------------------------------- /nrf_dfu/ble_extFlash/child_image/hci_rpmsg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_extFlash/child_image/hci_rpmsg.conf -------------------------------------------------------------------------------- /nrf_dfu/ble_extFlash/child_image/mcuboot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_extFlash/child_image/mcuboot.conf -------------------------------------------------------------------------------- /nrf_dfu/ble_extFlash/pm_static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_extFlash/pm_static.yml -------------------------------------------------------------------------------- /nrf_dfu/ble_extFlash/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_extFlash/prj.conf -------------------------------------------------------------------------------- /nrf_dfu/ble_extFlash/program.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_extFlash/program.bat -------------------------------------------------------------------------------- /nrf_dfu/ble_extFlash/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_extFlash/sample.yaml -------------------------------------------------------------------------------- /nrf_dfu/ble_extFlash/sdk_change/ncs_v1.5.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_extFlash/sdk_change/ncs_v1.5.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/ble_extFlash/sdk_change/ncs_v1.6.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_extFlash/sdk_change/ncs_v1.6.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/ble_extFlash/sdk_change/ncs_v1.7.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_extFlash/sdk_change/ncs_v1.7.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/ble_extFlash/sdk_change/ncs_v1.8.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_extFlash/sdk_change/ncs_v1.8.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/ble_extFlash/sdk_change/ncs_v1.9.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_extFlash/sdk_change/ncs_v1.9.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/ble_extFlash/sdk_change/ncs_v2.0.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_extFlash/sdk_change/ncs_v2.0.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/ble_extFlash/sdk_change/ncs_v2.2.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_extFlash/sdk_change/ncs_v2.2.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/ble_extFlash/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_extFlash/src/main.c -------------------------------------------------------------------------------- /nrf_dfu/ble_extFlash/src/uart_hs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_extFlash/src/uart_hs.c -------------------------------------------------------------------------------- /nrf_dfu/ble_extFlash/src/uart_hs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_extFlash/src/uart_hs.h -------------------------------------------------------------------------------- /nrf_dfu/ble_extFlash/update/zip_generate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_extFlash/update/zip_generate.bat -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash/CMakeLists.txt -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash/README.rst -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash/child_image/hci_rpmsg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash/child_image/hci_rpmsg.conf -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash/prj.conf -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash/program.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash/program.bat -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash/sample.yaml -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash/sdk_change/ncs_v1.5.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash/sdk_change/ncs_v1.5.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash/sdk_change/ncs_v1.6.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash/sdk_change/ncs_v1.6.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash/sdk_change/ncs_v1.7.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash/sdk_change/ncs_v1.7.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash/sdk_change/ncs_v1.7.x/nrf/subsys/nrf_dfu/common/dfu-cc.options: -------------------------------------------------------------------------------- 1 | c`y -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash/sdk_change/ncs_v1.8.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash/sdk_change/ncs_v1.8.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash/sdk_change/ncs_v1.9.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash/sdk_change/ncs_v1.9.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash/sdk_change/ncs_v2.0.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash/sdk_change/ncs_v2.0.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash/sdk_change/ncs_v2.2.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash/sdk_change/ncs_v2.2.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash/src/main.c -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash/src/uart_hs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash/src/uart_hs.c -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash/src/uart_hs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash/src/uart_hs.h -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash/update/zip_generate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash/update/zip_generate.bat -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_b0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_b0/CMakeLists.txt -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_b0/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_b0/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_b0/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_b0/README.rst -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_b0/child_image/hci_rpmsg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_b0/child_image/hci_rpmsg.conf -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_b0/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_b0/prj.conf -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_b0/program.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_b0/program.bat -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_b0/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_b0/sample.yaml -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_b0/sdk_change/ncs_v1.5.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_b0/sdk_change/ncs_v1.5.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_b0/sdk_change/ncs_v1.6.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_b0/sdk_change/ncs_v1.6.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_b0/sdk_change/ncs_v1.7.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_b0/sdk_change/ncs_v1.7.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_b0/sdk_change/ncs_v1.7.x/nrf/subsys/nrf_dfu/common/dfu-cc.options: -------------------------------------------------------------------------------- 1 | c`y -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_b0/sdk_change/ncs_v1.8.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_b0/sdk_change/ncs_v1.8.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_b0/sdk_change/ncs_v1.9.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_b0/sdk_change/ncs_v1.9.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_b0/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_b0/src/main.c -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_b0/src/uart_hs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_b0/src/uart_hs.c -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_b0/src/uart_hs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_b0/src/uart_hs.h -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_b0/update/zip_generate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_b0/update/zip_generate.bat -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_nrf5_bl/CMakeLists.txt -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_nrf5_bl/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_nrf5_bl/README.rst -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl/boards/nrf52840dk_nrf52840.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_nrf5_bl/boards/nrf52840dk_nrf52840.overlay -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_nrf5_bl/prj.conf -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_nrf5_bl/sample.yaml -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl/sdk_change/ncs_v1.7.x/nrf/subsys/nrf_dfu/common/dfu-cc.options: -------------------------------------------------------------------------------- 1 | c`y -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_nrf5_bl/src/main.c -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl/src/uart_hs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_nrf5_bl/src/uart_hs.c -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl/src/uart_hs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_nrf5_bl/src/uart_hs.h -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl/update/priv.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_nrf5_bl/update/priv.pem -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl/update/program.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_nrf5_bl/update/program.bat -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl/update/uart_dfu.bat: -------------------------------------------------------------------------------- 1 | nrfutil dfu serial -pkg SDK1702_app_s140_uart.zip -p COM7 2 | pause -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl/update/zip_generate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_nrf5_bl/update/zip_generate.bat -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/CMakeLists.txt -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/README.rst -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/child_image/mcuboot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/child_image/mcuboot.conf -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/pm_static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/pm_static.yml -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/prj.conf -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/sample.yaml -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/sdk_change/ncs_v1.7.x/nrf/subsys/nrf_dfu/common/dfu-cc.options: -------------------------------------------------------------------------------- 1 | c`y -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/src/main.c -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/src/uart_hs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/src/uart_hs.c -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/src/uart_hs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/src/uart_hs.h -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/update/mcumgr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/update/mcumgr.exe -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/update/priv.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/update/priv.pem -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/update/program.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/update/program.bat -------------------------------------------------------------------------------- /nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/update/upload_mcuboot.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/ble_intFlash_nrf5_bl_mcuboot/update/upload_mcuboot.bat -------------------------------------------------------------------------------- /nrf_dfu/uart_extFlash/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_extFlash/CMakeLists.txt -------------------------------------------------------------------------------- /nrf_dfu/uart_extFlash/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_extFlash/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/uart_extFlash/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_extFlash/README.rst -------------------------------------------------------------------------------- /nrf_dfu/uart_extFlash/app.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_extFlash/app.overlay -------------------------------------------------------------------------------- /nrf_dfu/uart_extFlash/child_image/hci_rpmsg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_extFlash/child_image/hci_rpmsg.conf -------------------------------------------------------------------------------- /nrf_dfu/uart_extFlash/child_image/mcuboot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_extFlash/child_image/mcuboot.conf -------------------------------------------------------------------------------- /nrf_dfu/uart_extFlash/pm_static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_extFlash/pm_static.yml -------------------------------------------------------------------------------- /nrf_dfu/uart_extFlash/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_extFlash/prj.conf -------------------------------------------------------------------------------- /nrf_dfu/uart_extFlash/program.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_extFlash/program.bat -------------------------------------------------------------------------------- /nrf_dfu/uart_extFlash/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_extFlash/sample.yaml -------------------------------------------------------------------------------- /nrf_dfu/uart_extFlash/sdk_change/ncs_v1.5.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_extFlash/sdk_change/ncs_v1.5.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/uart_extFlash/sdk_change/ncs_v1.6.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_extFlash/sdk_change/ncs_v1.6.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/uart_extFlash/sdk_change/ncs_v1.7.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_extFlash/sdk_change/ncs_v1.7.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/uart_extFlash/sdk_change/ncs_v1.8.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_extFlash/sdk_change/ncs_v1.8.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/uart_extFlash/sdk_change/ncs_v1.9.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_extFlash/sdk_change/ncs_v1.9.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/uart_extFlash/sdk_change/ncs_v2.0.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_extFlash/sdk_change/ncs_v2.0.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/uart_extFlash/sdk_change/ncs_v2.2.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_extFlash/sdk_change/ncs_v2.2.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/uart_extFlash/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_extFlash/src/main.c -------------------------------------------------------------------------------- /nrf_dfu/uart_extFlash/update/upload_app.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_extFlash/update/upload_app.bat -------------------------------------------------------------------------------- /nrf_dfu/uart_intFlash/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_intFlash/CMakeLists.txt -------------------------------------------------------------------------------- /nrf_dfu/uart_intFlash/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_intFlash/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/uart_intFlash/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_intFlash/README.rst -------------------------------------------------------------------------------- /nrf_dfu/uart_intFlash/child_image/hci_rpmsg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_intFlash/child_image/hci_rpmsg.conf -------------------------------------------------------------------------------- /nrf_dfu/uart_intFlash/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_intFlash/prj.conf -------------------------------------------------------------------------------- /nrf_dfu/uart_intFlash/program.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_intFlash/program.bat -------------------------------------------------------------------------------- /nrf_dfu/uart_intFlash/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_intFlash/sample.yaml -------------------------------------------------------------------------------- /nrf_dfu/uart_intFlash/sdk_change/ncs_v1.5.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_intFlash/sdk_change/ncs_v1.5.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/uart_intFlash/sdk_change/ncs_v1.6.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_intFlash/sdk_change/ncs_v1.6.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/uart_intFlash/sdk_change/ncs_v1.7.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_intFlash/sdk_change/ncs_v1.7.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/uart_intFlash/sdk_change/ncs_v1.7.x/nrf/subsys/nrf_dfu/common/dfu-cc.options: -------------------------------------------------------------------------------- 1 | c`y -------------------------------------------------------------------------------- /nrf_dfu/uart_intFlash/sdk_change/ncs_v1.8.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_intFlash/sdk_change/ncs_v1.8.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/uart_intFlash/sdk_change/ncs_v1.9.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_intFlash/sdk_change/ncs_v1.9.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/uart_intFlash/sdk_change/ncs_v2.0.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_intFlash/sdk_change/ncs_v2.0.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/uart_intFlash/sdk_change/ncs_v2.2.x/nrf/subsys/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_intFlash/sdk_change/ncs_v2.2.x/nrf/subsys/Kconfig -------------------------------------------------------------------------------- /nrf_dfu/uart_intFlash/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_intFlash/src/main.c -------------------------------------------------------------------------------- /nrf_dfu/uart_intFlash/update/upload_app.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrf_dfu/uart_intFlash/update/upload_app.bat -------------------------------------------------------------------------------- /nrfx_ipc/appcore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrfx_ipc/appcore/CMakeLists.txt -------------------------------------------------------------------------------- /nrfx_ipc/appcore/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrfx_ipc/appcore/Kconfig -------------------------------------------------------------------------------- /nrfx_ipc/appcore/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrfx_ipc/appcore/README.rst -------------------------------------------------------------------------------- /nrfx_ipc/appcore/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrfx_ipc/appcore/prj.conf -------------------------------------------------------------------------------- /nrfx_ipc/appcore/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrfx_ipc/appcore/sample.yaml -------------------------------------------------------------------------------- /nrfx_ipc/appcore/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrfx_ipc/appcore/src/main.c -------------------------------------------------------------------------------- /nrfx_ipc/netcore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrfx_ipc/netcore/CMakeLists.txt -------------------------------------------------------------------------------- /nrfx_ipc/netcore/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrfx_ipc/netcore/Kconfig -------------------------------------------------------------------------------- /nrfx_ipc/netcore/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrfx_ipc/netcore/README.rst -------------------------------------------------------------------------------- /nrfx_ipc/netcore/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrfx_ipc/netcore/prj.conf -------------------------------------------------------------------------------- /nrfx_ipc/netcore/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrfx_ipc/netcore/sample.yaml -------------------------------------------------------------------------------- /nrfx_ipc/netcore/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrfx_ipc/netcore/src/main.c -------------------------------------------------------------------------------- /nrfx_spi_rtc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrfx_spi_rtc/CMakeLists.txt -------------------------------------------------------------------------------- /nrfx_spi_rtc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrfx_spi_rtc/Kconfig -------------------------------------------------------------------------------- /nrfx_spi_rtc/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrfx_spi_rtc/README.rst -------------------------------------------------------------------------------- /nrfx_spi_rtc/boards/nrf52840dk_nrf52840.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrfx_spi_rtc/boards/nrf52840dk_nrf52840.overlay -------------------------------------------------------------------------------- /nrfx_spi_rtc/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrfx_spi_rtc/prj.conf -------------------------------------------------------------------------------- /nrfx_spi_rtc/program.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrfx_spi_rtc/program.bat -------------------------------------------------------------------------------- /nrfx_spi_rtc/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrfx_spi_rtc/sample.yaml -------------------------------------------------------------------------------- /nrfx_spi_rtc/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/nrfx_spi_rtc/src/main.c -------------------------------------------------------------------------------- /pwm_adc_gpio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/pwm_adc_gpio/CMakeLists.txt -------------------------------------------------------------------------------- /pwm_adc_gpio/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/pwm_adc_gpio/README.rst -------------------------------------------------------------------------------- /pwm_adc_gpio/boards/nrf51dk_nrf51422.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/pwm_adc_gpio/boards/nrf51dk_nrf51422.conf -------------------------------------------------------------------------------- /pwm_adc_gpio/boards/nrf51dk_nrf51422.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/pwm_adc_gpio/boards/nrf51dk_nrf51422.overlay -------------------------------------------------------------------------------- /pwm_adc_gpio/boards/nrf52833dk_nrf52833.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/pwm_adc_gpio/boards/nrf52833dk_nrf52833.overlay -------------------------------------------------------------------------------- /pwm_adc_gpio/boards/nrf52840dk_nrf52840.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/pwm_adc_gpio/boards/nrf52840dk_nrf52840.overlay -------------------------------------------------------------------------------- /pwm_adc_gpio/boards/nrf52dk_nrf52832.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/pwm_adc_gpio/boards/nrf52dk_nrf52832.overlay -------------------------------------------------------------------------------- /pwm_adc_gpio/boards/nrf5340dk_nrf5340_cpuapp.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/pwm_adc_gpio/boards/nrf5340dk_nrf5340_cpuapp.overlay -------------------------------------------------------------------------------- /pwm_adc_gpio/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/pwm_adc_gpio/prj.conf -------------------------------------------------------------------------------- /pwm_adc_gpio/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/pwm_adc_gpio/sample.yaml -------------------------------------------------------------------------------- /pwm_adc_gpio/src/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/pwm_adc_gpio/src/demo.c -------------------------------------------------------------------------------- /pwm_adc_gpio/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/pwm_adc_gpio/src/main.c -------------------------------------------------------------------------------- /qspi_xip_dma/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/qspi_xip_dma/CMakeLists.txt -------------------------------------------------------------------------------- /qspi_xip_dma/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/qspi_xip_dma/README.rst -------------------------------------------------------------------------------- /qspi_xip_dma/boards/nrf5340dk_nrf5340_cpuapp.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/qspi_xip_dma/boards/nrf5340dk_nrf5340_cpuapp.overlay -------------------------------------------------------------------------------- /qspi_xip_dma/boards/nrf7002dk_nrf5340_cpuapp.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/qspi_xip_dma/boards/nrf7002dk_nrf5340_cpuapp.overlay -------------------------------------------------------------------------------- /qspi_xip_dma/child_image/b0n.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/qspi_xip_dma/child_image/b0n.conf -------------------------------------------------------------------------------- /qspi_xip_dma/child_image/hci_rpmsg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/qspi_xip_dma/child_image/hci_rpmsg.conf -------------------------------------------------------------------------------- /qspi_xip_dma/child_image/mcuboot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/qspi_xip_dma/child_image/mcuboot.conf -------------------------------------------------------------------------------- /qspi_xip_dma/custom_program.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/qspi_xip_dma/custom_program.bat -------------------------------------------------------------------------------- /qspi_xip_dma/gdqspi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/qspi_xip_dma/gdqspi.ini -------------------------------------------------------------------------------- /qspi_xip_dma/linker_arm_nocopy.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/qspi_xip_dma/linker_arm_nocopy.ld -------------------------------------------------------------------------------- /qspi_xip_dma/nordic_program.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/qspi_xip_dma/nordic_program.bat -------------------------------------------------------------------------------- /qspi_xip_dma/pm_static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/qspi_xip_dma/pm_static.yml -------------------------------------------------------------------------------- /qspi_xip_dma/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/qspi_xip_dma/prj.conf -------------------------------------------------------------------------------- /qspi_xip_dma/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/qspi_xip_dma/sample.yaml -------------------------------------------------------------------------------- /qspi_xip_dma/sdk_change/ncs_v2.4.x/zephyr/subsys/pm/pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/qspi_xip_dma/sdk_change/ncs_v2.4.x/zephyr/subsys/pm/pm.c -------------------------------------------------------------------------------- /qspi_xip_dma/src/adc_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/qspi_xip_dma/src/adc_thread.c -------------------------------------------------------------------------------- /qspi_xip_dma/src/const_var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/qspi_xip_dma/src/const_var.c -------------------------------------------------------------------------------- /qspi_xip_dma/src/ext_mem_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/qspi_xip_dma/src/ext_mem_init.c -------------------------------------------------------------------------------- /qspi_xip_dma/src/ext_mem_init_custom.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/qspi_xip_dma/src/ext_mem_init_custom.bak -------------------------------------------------------------------------------- /qspi_xip_dma/src/ext_mem_init_nordic.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/qspi_xip_dma/src/ext_mem_init_nordic.bak -------------------------------------------------------------------------------- /qspi_xip_dma/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/qspi_xip_dma/src/main.c -------------------------------------------------------------------------------- /qspi_xip_dma/update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/qspi_xip_dma/update.bat -------------------------------------------------------------------------------- /slm_comprehensive/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/CMakeLists.txt -------------------------------------------------------------------------------- /slm_comprehensive/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/Kconfig -------------------------------------------------------------------------------- /slm_comprehensive/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/README.rst -------------------------------------------------------------------------------- /slm_comprehensive/boards/nrf9131ek_nrf9131_ns.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/boards/nrf9131ek_nrf9131_ns.conf -------------------------------------------------------------------------------- /slm_comprehensive/boards/nrf9131ek_nrf9131_ns.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/boards/nrf9131ek_nrf9131_ns.overlay -------------------------------------------------------------------------------- /slm_comprehensive/boards/nrf9151dk_nrf9151_ns.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/boards/nrf9151dk_nrf9151_ns.conf -------------------------------------------------------------------------------- /slm_comprehensive/boards/nrf9151dk_nrf9151_ns.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/boards/nrf9151dk_nrf9151_ns.overlay -------------------------------------------------------------------------------- /slm_comprehensive/boards/nrf9160dk_nrf9160_ns.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/boards/nrf9160dk_nrf9160_ns.conf -------------------------------------------------------------------------------- /slm_comprehensive/boards/nrf9160dk_nrf9160_ns.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/boards/nrf9160dk_nrf9160_ns.overlay -------------------------------------------------------------------------------- /slm_comprehensive/boards/nrf9160dk_nrf9160_ns_0_14_0.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/boards/nrf9160dk_nrf9160_ns_0_14_0.overlay -------------------------------------------------------------------------------- /slm_comprehensive/boards/nrf9161dk_nrf9161_ns.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/boards/nrf9161dk_nrf9161_ns.conf -------------------------------------------------------------------------------- /slm_comprehensive/boards/nrf9161dk_nrf9161_ns.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/boards/nrf9161dk_nrf9161_ns.overlay -------------------------------------------------------------------------------- /slm_comprehensive/boards/nrf9161dk_nrf9161_ns_0_7_0.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/boards/nrf9161dk_nrf9161_ns_0_7_0.overlay -------------------------------------------------------------------------------- /slm_comprehensive/boards/thingy91_nrf9160_ns.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/boards/thingy91_nrf9160_ns.conf -------------------------------------------------------------------------------- /slm_comprehensive/boards/thingy91_nrf9160_ns.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/boards/thingy91_nrf9160_ns.overlay -------------------------------------------------------------------------------- /slm_comprehensive/boards/thingy91x_nrf9151_ns.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/boards/thingy91x_nrf9151_ns.conf -------------------------------------------------------------------------------- /slm_comprehensive/boards/thingy91x_nrf9151_ns.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/boards/thingy91x_nrf9151_ns.overlay -------------------------------------------------------------------------------- /slm_comprehensive/doc/AT_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/doc/AT_commands.rst -------------------------------------------------------------------------------- /slm_comprehensive/doc/CARRIER_AT_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/doc/CARRIER_AT_commands.rst -------------------------------------------------------------------------------- /slm_comprehensive/doc/CMUX_AT_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/doc/CMUX_AT_commands.rst -------------------------------------------------------------------------------- /slm_comprehensive/doc/FOTA_AT_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/doc/FOTA_AT_commands.rst -------------------------------------------------------------------------------- /slm_comprehensive/doc/FTP_AT_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/doc/FTP_AT_commands.rst -------------------------------------------------------------------------------- /slm_comprehensive/doc/GNSS_AT_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/doc/GNSS_AT_commands.rst -------------------------------------------------------------------------------- /slm_comprehensive/doc/GPIO_AT_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/doc/GPIO_AT_commands.rst -------------------------------------------------------------------------------- /slm_comprehensive/doc/Generic_AT_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/doc/Generic_AT_commands.rst -------------------------------------------------------------------------------- /slm_comprehensive/doc/HTTPC_AT_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/doc/HTTPC_AT_commands.rst -------------------------------------------------------------------------------- /slm_comprehensive/doc/ICMP_AT_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/doc/ICMP_AT_commands.rst -------------------------------------------------------------------------------- /slm_comprehensive/doc/MQTT_AT_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/doc/MQTT_AT_commands.rst -------------------------------------------------------------------------------- /slm_comprehensive/doc/NRFCLOUD_AT_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/doc/NRFCLOUD_AT_commands.rst -------------------------------------------------------------------------------- /slm_comprehensive/doc/PPP_AT_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/doc/PPP_AT_commands.rst -------------------------------------------------------------------------------- /slm_comprehensive/doc/SMS_AT_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/doc/SMS_AT_commands.rst -------------------------------------------------------------------------------- /slm_comprehensive/doc/SOCKET_AT_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/doc/SOCKET_AT_commands.rst -------------------------------------------------------------------------------- /slm_comprehensive/doc/TCPUDP_AT_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/doc/TCPUDP_AT_commands.rst -------------------------------------------------------------------------------- /slm_comprehensive/doc/TWI_AT_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/doc/TWI_AT_commands.rst -------------------------------------------------------------------------------- /slm_comprehensive/doc/nRF91_as_Zephyr_modem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/doc/nRF91_as_Zephyr_modem.rst -------------------------------------------------------------------------------- /slm_comprehensive/doc/slm_data_mode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/doc/slm_data_mode.rst -------------------------------------------------------------------------------- /slm_comprehensive/doc/slm_description.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/doc/slm_description.rst -------------------------------------------------------------------------------- /slm_comprehensive/doc/slm_extending.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/doc/slm_extending.rst -------------------------------------------------------------------------------- /slm_comprehensive/doc/slm_testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/doc/slm_testing.rst -------------------------------------------------------------------------------- /slm_comprehensive/overlay-carrier.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/overlay-carrier.conf -------------------------------------------------------------------------------- /slm_comprehensive/overlay-cmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/overlay-cmux.conf -------------------------------------------------------------------------------- /slm_comprehensive/overlay-external-mcu.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/overlay-external-mcu.overlay -------------------------------------------------------------------------------- /slm_comprehensive/overlay-full_fota.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/overlay-full_fota.conf -------------------------------------------------------------------------------- /slm_comprehensive/overlay-native_tls.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/overlay-native_tls.conf -------------------------------------------------------------------------------- /slm_comprehensive/overlay-ppp-without-cmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/overlay-ppp-without-cmux.conf -------------------------------------------------------------------------------- /slm_comprehensive/overlay-ppp-without-cmux.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/overlay-ppp-without-cmux.overlay -------------------------------------------------------------------------------- /slm_comprehensive/overlay-ppp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/overlay-ppp.conf -------------------------------------------------------------------------------- /slm_comprehensive/overlay-zephyr-modem-external-mcu.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/overlay-zephyr-modem-external-mcu.conf -------------------------------------------------------------------------------- /slm_comprehensive/overlay-zephyr-modem-nrf9160dk-nrf52840.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/overlay-zephyr-modem-nrf9160dk-nrf52840.conf -------------------------------------------------------------------------------- /slm_comprehensive/overlay-zephyr-modem.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/overlay-zephyr-modem.conf -------------------------------------------------------------------------------- /slm_comprehensive/pm_static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/pm_static.yml -------------------------------------------------------------------------------- /slm_comprehensive/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/prj.conf -------------------------------------------------------------------------------- /slm_comprehensive/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/sample.yaml -------------------------------------------------------------------------------- /slm_comprehensive/sdk_change/Kconfig.tfm.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/sdk_change/Kconfig.tfm.pm -------------------------------------------------------------------------------- /slm_comprehensive/src/ftp_c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/ftp_c/CMakeLists.txt -------------------------------------------------------------------------------- /slm_comprehensive/src/ftp_c/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/ftp_c/Kconfig -------------------------------------------------------------------------------- /slm_comprehensive/src/ftp_c/slm_at_ftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/ftp_c/slm_at_ftp.c -------------------------------------------------------------------------------- /slm_comprehensive/src/ftp_c/slm_at_ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/ftp_c/slm_at_ftp.h -------------------------------------------------------------------------------- /slm_comprehensive/src/ftp_c/slm_at_tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/ftp_c/slm_at_tftp.c -------------------------------------------------------------------------------- /slm_comprehensive/src/gnss/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/gnss/CMakeLists.txt -------------------------------------------------------------------------------- /slm_comprehensive/src/gnss/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/gnss/Kconfig -------------------------------------------------------------------------------- /slm_comprehensive/src/gnss/slm_at_gnss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/gnss/slm_at_gnss.c -------------------------------------------------------------------------------- /slm_comprehensive/src/gnss/slm_at_gnss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/gnss/slm_at_gnss.h -------------------------------------------------------------------------------- /slm_comprehensive/src/gpio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/gpio/CMakeLists.txt -------------------------------------------------------------------------------- /slm_comprehensive/src/gpio/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/gpio/Kconfig -------------------------------------------------------------------------------- /slm_comprehensive/src/gpio/slm_at_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/gpio/slm_at_gpio.c -------------------------------------------------------------------------------- /slm_comprehensive/src/gpio/slm_at_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/gpio/slm_at_gpio.h -------------------------------------------------------------------------------- /slm_comprehensive/src/http_c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/http_c/CMakeLists.txt -------------------------------------------------------------------------------- /slm_comprehensive/src/http_c/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/http_c/Kconfig -------------------------------------------------------------------------------- /slm_comprehensive/src/http_c/slm_at_httpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/http_c/slm_at_httpc.c -------------------------------------------------------------------------------- /slm_comprehensive/src/http_c/slm_at_httpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/http_c/slm_at_httpc.h -------------------------------------------------------------------------------- /slm_comprehensive/src/littlefs_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/littlefs_thread.c -------------------------------------------------------------------------------- /slm_comprehensive/src/lwm2m_carrier/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/lwm2m_carrier/CMakeLists.txt -------------------------------------------------------------------------------- /slm_comprehensive/src/lwm2m_carrier/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/lwm2m_carrier/Kconfig -------------------------------------------------------------------------------- /slm_comprehensive/src/lwm2m_carrier/slm_at_carrier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/lwm2m_carrier/slm_at_carrier.c -------------------------------------------------------------------------------- /slm_comprehensive/src/lwm2m_carrier/slm_at_carrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/lwm2m_carrier/slm_at_carrier.h -------------------------------------------------------------------------------- /slm_comprehensive/src/lwm2m_carrier/slm_at_carrier_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/lwm2m_carrier/slm_at_carrier_cfg.c -------------------------------------------------------------------------------- /slm_comprehensive/src/lwm2m_carrier/slm_at_carrier_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/lwm2m_carrier/slm_at_carrier_cfg.h -------------------------------------------------------------------------------- /slm_comprehensive/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/main.c -------------------------------------------------------------------------------- /slm_comprehensive/src/mqtt_c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/mqtt_c/CMakeLists.txt -------------------------------------------------------------------------------- /slm_comprehensive/src/mqtt_c/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/mqtt_c/Kconfig -------------------------------------------------------------------------------- /slm_comprehensive/src/mqtt_c/slm_at_mqtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/mqtt_c/slm_at_mqtt.c -------------------------------------------------------------------------------- /slm_comprehensive/src/mqtt_c/slm_at_mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/mqtt_c/slm_at_mqtt.h -------------------------------------------------------------------------------- /slm_comprehensive/src/nativetls/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/nativetls/CMakeLists.txt -------------------------------------------------------------------------------- /slm_comprehensive/src/nativetls/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/nativetls/Kconfig -------------------------------------------------------------------------------- /slm_comprehensive/src/nativetls/slm_at_cmng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/nativetls/slm_at_cmng.c -------------------------------------------------------------------------------- /slm_comprehensive/src/nativetls/slm_at_cmng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/nativetls/slm_at_cmng.h -------------------------------------------------------------------------------- /slm_comprehensive/src/nativetls/slm_native_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/nativetls/slm_native_tls.c -------------------------------------------------------------------------------- /slm_comprehensive/src/nativetls/slm_native_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/nativetls/slm_native_tls.h -------------------------------------------------------------------------------- /slm_comprehensive/src/nrfcloud/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/nrfcloud/CMakeLists.txt -------------------------------------------------------------------------------- /slm_comprehensive/src/nrfcloud/slm_at_nrfcloud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/nrfcloud/slm_at_nrfcloud.c -------------------------------------------------------------------------------- /slm_comprehensive/src/nrfcloud/slm_at_nrfcloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/nrfcloud/slm_at_nrfcloud.h -------------------------------------------------------------------------------- /slm_comprehensive/src/nvs_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/nvs_thread.c -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_at_commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_at_commands.c -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_at_fota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_at_fota.c -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_at_fota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_at_fota.h -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_at_host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_at_host.c -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_at_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_at_host.h -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_at_icmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_at_icmp.c -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_at_icmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_at_icmp.h -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_at_sms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_at_sms.c -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_at_sms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_at_sms.h -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_at_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_at_socket.c -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_at_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_at_socket.h -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_at_tcp_proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_at_tcp_proxy.c -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_at_tcp_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_at_tcp_proxy.h -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_at_udp_proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_at_udp_proxy.c -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_at_udp_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_at_udp_proxy.h -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_auto_connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_auto_connect.h -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_cmux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_cmux.c -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_cmux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_cmux.h -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_defines.h -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_ppp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_ppp.c -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_ppp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_ppp.h -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_settings.c -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_settings.h -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_sockopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_sockopt.h -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_trap_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_trap_macros.h -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_uart_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_uart_handler.c -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_uart_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_uart_handler.h -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_util.c -------------------------------------------------------------------------------- /slm_comprehensive/src/slm_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/slm_util.h -------------------------------------------------------------------------------- /slm_comprehensive/src/spi_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/spi_thread.c -------------------------------------------------------------------------------- /slm_comprehensive/src/twi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/twi/CMakeLists.txt -------------------------------------------------------------------------------- /slm_comprehensive/src/twi/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/twi/Kconfig -------------------------------------------------------------------------------- /slm_comprehensive/src/twi/slm_at_twi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/twi/slm_at_twi.c -------------------------------------------------------------------------------- /slm_comprehensive/src/twi/slm_at_twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/twi/slm_at_twi.h -------------------------------------------------------------------------------- /slm_comprehensive/src/uart_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/src/uart_thread.c -------------------------------------------------------------------------------- /slm_comprehensive/sysbuild.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/sysbuild.conf -------------------------------------------------------------------------------- /slm_comprehensive/sysbuild/b0/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/sysbuild/b0/prj.conf -------------------------------------------------------------------------------- /slm_comprehensive/sysbuild/mcuboot/app.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/sysbuild/mcuboot/app.overlay -------------------------------------------------------------------------------- /slm_comprehensive/sysbuild/mcuboot/boards/thingy91_nrf9160.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/sysbuild/mcuboot/boards/thingy91_nrf9160.conf -------------------------------------------------------------------------------- /slm_comprehensive/sysbuild/mcuboot/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/slm_comprehensive/sysbuild/mcuboot/prj.conf -------------------------------------------------------------------------------- /smp_dfu/ble_extFlash/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/ble_extFlash/CMakeLists.txt -------------------------------------------------------------------------------- /smp_dfu/ble_extFlash/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/ble_extFlash/Kconfig -------------------------------------------------------------------------------- /smp_dfu/ble_extFlash/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/ble_extFlash/README.rst -------------------------------------------------------------------------------- /smp_dfu/ble_extFlash/app.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/ble_extFlash/app.overlay -------------------------------------------------------------------------------- /smp_dfu/ble_extFlash/child_image/hci_rpmsg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/ble_extFlash/child_image/hci_rpmsg.conf -------------------------------------------------------------------------------- /smp_dfu/ble_extFlash/child_image/mcuboot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/ble_extFlash/child_image/mcuboot.conf -------------------------------------------------------------------------------- /smp_dfu/ble_extFlash/pm_static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/ble_extFlash/pm_static.yml -------------------------------------------------------------------------------- /smp_dfu/ble_extFlash/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/ble_extFlash/prj.conf -------------------------------------------------------------------------------- /smp_dfu/ble_extFlash/program.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/ble_extFlash/program.bat -------------------------------------------------------------------------------- /smp_dfu/ble_extFlash/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/ble_extFlash/sample.yaml -------------------------------------------------------------------------------- /smp_dfu/ble_extFlash/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/ble_extFlash/src/main.c -------------------------------------------------------------------------------- /smp_dfu/ble_extFlash/src/uart_hs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/ble_extFlash/src/uart_hs.c -------------------------------------------------------------------------------- /smp_dfu/ble_extFlash/src/uart_hs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/ble_extFlash/src/uart_hs.h -------------------------------------------------------------------------------- /smp_dfu/ble_intFlash/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/ble_intFlash/CMakeLists.txt -------------------------------------------------------------------------------- /smp_dfu/ble_intFlash/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/ble_intFlash/Kconfig -------------------------------------------------------------------------------- /smp_dfu/ble_intFlash/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/ble_intFlash/README.rst -------------------------------------------------------------------------------- /smp_dfu/ble_intFlash/child_image/hci_rpmsg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/ble_intFlash/child_image/hci_rpmsg.conf -------------------------------------------------------------------------------- /smp_dfu/ble_intFlash/child_image/mcuboot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/ble_intFlash/child_image/mcuboot.conf -------------------------------------------------------------------------------- /smp_dfu/ble_intFlash/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/ble_intFlash/prj.conf -------------------------------------------------------------------------------- /smp_dfu/ble_intFlash/program.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/ble_intFlash/program.bat -------------------------------------------------------------------------------- /smp_dfu/ble_intFlash/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/ble_intFlash/sample.yaml -------------------------------------------------------------------------------- /smp_dfu/ble_intFlash/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/ble_intFlash/src/main.c -------------------------------------------------------------------------------- /smp_dfu/ble_intFlash/src/uart_hs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/ble_intFlash/src/uart_hs.c -------------------------------------------------------------------------------- /smp_dfu/ble_intFlash/src/uart_hs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/ble_intFlash/src/uart_hs.h -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_extFlash_hook/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_extFlash_hook/CMakeLists.txt -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_extFlash_hook/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_extFlash_hook/Kconfig -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_extFlash_hook/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_extFlash_hook/README.rst -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_extFlash_hook/app.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_extFlash_hook/app.overlay -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_extFlash_hook/boards/thingy53.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_extFlash_hook/boards/thingy53.c -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_extFlash_hook/pm_static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_extFlash_hook/pm_static.yml -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_extFlash_hook/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_extFlash_hook/prj.conf -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_extFlash_hook/prj_cdc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_extFlash_hook/prj_cdc.conf -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_extFlash_hook/prj_minimal.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_extFlash_hook/prj_minimal.conf -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_extFlash_hook/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_extFlash_hook/sample.yaml -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_extFlash_hook/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_extFlash_hook/src/main.c -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_extFlash_hook/usb.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_extFlash_hook/usb.overlay -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_intFlash/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_intFlash/CMakeLists.txt -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_intFlash/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_intFlash/Kconfig -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_intFlash/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_intFlash/README.rst -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_intFlash/app.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_intFlash/app.overlay -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_intFlash/boards/thingy53.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_intFlash/boards/thingy53.c -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_intFlash/child_image/hci_rpmsg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_intFlash/child_image/hci_rpmsg.conf -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_intFlash/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_intFlash/prj.conf -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_intFlash/prj_cdc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_intFlash/prj_cdc.conf -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_intFlash/prj_minimal.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_intFlash/prj_minimal.conf -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_intFlash/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_intFlash/sample.yaml -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_intFlash/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_intFlash/src/main.c -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_intFlash/src/uart_async_adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_intFlash/src/uart_async_adapter.c -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_intFlash/src/uart_async_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_intFlash/src/uart_async_adapter.h -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_intFlash/usb.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_intFlash/usb.overlay -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_intFlash_hook/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_intFlash_hook/CMakeLists.txt -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_intFlash_hook/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_intFlash_hook/Kconfig -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_intFlash_hook/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_intFlash_hook/README.rst -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_intFlash_hook/app.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_intFlash_hook/app.overlay -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_intFlash_hook/boards/thingy53.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_intFlash_hook/boards/thingy53.c -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_intFlash_hook/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_intFlash_hook/prj.conf -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_intFlash_hook/prj_cdc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_intFlash_hook/prj_cdc.conf -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_intFlash_hook/prj_minimal.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_intFlash_hook/prj_minimal.conf -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_intFlash_hook/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_intFlash_hook/sample.yaml -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_intFlash_hook/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_intFlash_hook/src/main.c -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_1s_intFlash_hook/usb.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_1s_intFlash_hook/usb.overlay -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_extFlash_hook/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_extFlash_hook/CMakeLists.txt -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_extFlash_hook/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_extFlash_hook/Kconfig -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_extFlash_hook/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_extFlash_hook/README.rst -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_extFlash_hook/app.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_extFlash_hook/app.overlay -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_extFlash_hook/pm_static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_extFlash_hook/pm_static.yml -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_extFlash_hook/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_extFlash_hook/prj.conf -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_extFlash_hook/prj_cdc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_extFlash_hook/prj_cdc.conf -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_extFlash_hook/prj_minimal.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_extFlash_hook/prj_minimal.conf -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_extFlash_hook/program.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_extFlash_hook/program.bat -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_extFlash_hook/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_extFlash_hook/sample.yaml -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_extFlash_hook/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_extFlash_hook/src/main.c -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_extFlash_hook/usb.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_extFlash_hook/usb.overlay -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_extFlash_mock/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_extFlash_mock/CMakeLists.txt -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_extFlash_mock/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_extFlash_mock/Kconfig -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_extFlash_mock/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_extFlash_mock/README.rst -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_extFlash_mock/app.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_extFlash_mock/app.overlay -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_extFlash_mock/pm_static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_extFlash_mock/pm_static.yml -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_extFlash_mock/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_extFlash_mock/prj.conf -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_extFlash_mock/prj_cdc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_extFlash_mock/prj_cdc.conf -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_extFlash_mock/prj_minimal.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_extFlash_mock/prj_minimal.conf -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_extFlash_mock/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_extFlash_mock/sample.yaml -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_extFlash_mock/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_extFlash_mock/src/main.c -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_extFlash_mock/usb.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_extFlash_mock/usb.overlay -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_intFlash_hook/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_intFlash_hook/CMakeLists.txt -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_intFlash_hook/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_intFlash_hook/Kconfig -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_intFlash_hook/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_intFlash_hook/README.rst -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_intFlash_hook/app.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_intFlash_hook/app.overlay -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_intFlash_hook/pm_static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_intFlash_hook/pm_static.yml -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_intFlash_hook/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_intFlash_hook/prj.conf -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_intFlash_hook/prj_cdc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_intFlash_hook/prj_cdc.conf -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_intFlash_hook/prj_minimal.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_intFlash_hook/prj_minimal.conf -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_intFlash_hook/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_intFlash_hook/sample.yaml -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_intFlash_hook/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_intFlash_hook/src/main.c -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_intFlash_hook/usb.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_intFlash_hook/usb.overlay -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_intFlash_mock/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_intFlash_mock/CMakeLists.txt -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_intFlash_mock/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_intFlash_mock/Kconfig -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_intFlash_mock/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_intFlash_mock/README.rst -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_intFlash_mock/app.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_intFlash_mock/app.overlay -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_intFlash_mock/pm_static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_intFlash_mock/pm_static.yml -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_intFlash_mock/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_intFlash_mock/prj.conf -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_intFlash_mock/prj_cdc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_intFlash_mock/prj_cdc.conf -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_intFlash_mock/prj_minimal.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_intFlash_mock/prj_minimal.conf -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_intFlash_mock/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_intFlash_mock/sample.yaml -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_intFlash_mock/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_intFlash_mock/src/main.c -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_2s_intFlash_mock/usb.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_2s_intFlash_mock/usb.overlay -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_SimThingy53/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_SimThingy53/CMakeLists.txt -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_SimThingy53/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_SimThingy53/Kconfig -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_SimThingy53/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_SimThingy53/README.rst -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_SimThingy53/app.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_SimThingy53/app.overlay -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_SimThingy53/child_image/hci_rpmsg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_SimThingy53/child_image/hci_rpmsg.conf -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_SimThingy53/child_image/mcuboot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_SimThingy53/child_image/mcuboot.conf -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_SimThingy53/pm_static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_SimThingy53/pm_static.yml -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_SimThingy53/pm_static_thingy53.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_SimThingy53/pm_static_thingy53.yml -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_SimThingy53/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_SimThingy53/prj.conf -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_SimThingy53/prj_cdc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_SimThingy53/prj_cdc.conf -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_SimThingy53/prj_minimal.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_SimThingy53/prj_minimal.conf -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_SimThingy53/program.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_SimThingy53/program.bat -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_SimThingy53/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_SimThingy53/sample.yaml -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_SimThingy53/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_SimThingy53/src/main.c -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_SimThingy53/src/uart_async_adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_SimThingy53/src/uart_async_adapter.c -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_SimThingy53/src/uart_async_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_SimThingy53/src/uart_async_adapter.h -------------------------------------------------------------------------------- /smp_dfu/peripheral_uart_SimThingy53/usb.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/peripheral_uart_SimThingy53/usb.overlay -------------------------------------------------------------------------------- /smp_dfu/uart_intFlash/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/uart_intFlash/CMakeLists.txt -------------------------------------------------------------------------------- /smp_dfu/uart_intFlash/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/uart_intFlash/Kconfig -------------------------------------------------------------------------------- /smp_dfu/uart_intFlash/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/uart_intFlash/README.rst -------------------------------------------------------------------------------- /smp_dfu/uart_intFlash/child_image/hci_rpmsg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/uart_intFlash/child_image/hci_rpmsg.conf -------------------------------------------------------------------------------- /smp_dfu/uart_intFlash/child_image/mcuboot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/uart_intFlash/child_image/mcuboot.conf -------------------------------------------------------------------------------- /smp_dfu/uart_intFlash/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/uart_intFlash/prj.conf -------------------------------------------------------------------------------- /smp_dfu/uart_intFlash/program.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/uart_intFlash/program.bat -------------------------------------------------------------------------------- /smp_dfu/uart_intFlash/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/uart_intFlash/sample.yaml -------------------------------------------------------------------------------- /smp_dfu/uart_intFlash/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/uart_intFlash/src/main.c -------------------------------------------------------------------------------- /smp_dfu/uart_intFlash/update/mcumgr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/uart_intFlash/update/mcumgr.exe -------------------------------------------------------------------------------- /smp_dfu/usb_intFlash/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/usb_intFlash/CMakeLists.txt -------------------------------------------------------------------------------- /smp_dfu/usb_intFlash/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/usb_intFlash/Kconfig -------------------------------------------------------------------------------- /smp_dfu/usb_intFlash/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/usb_intFlash/README.rst -------------------------------------------------------------------------------- /smp_dfu/usb_intFlash/app.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/usb_intFlash/app.overlay -------------------------------------------------------------------------------- /smp_dfu/usb_intFlash/child_image/hci_rpmsg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/usb_intFlash/child_image/hci_rpmsg.conf -------------------------------------------------------------------------------- /smp_dfu/usb_intFlash/child_image/mcuboot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/usb_intFlash/child_image/mcuboot.conf -------------------------------------------------------------------------------- /smp_dfu/usb_intFlash/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/usb_intFlash/prj.conf -------------------------------------------------------------------------------- /smp_dfu/usb_intFlash/program.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/usb_intFlash/program.bat -------------------------------------------------------------------------------- /smp_dfu/usb_intFlash/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/usb_intFlash/sample.yaml -------------------------------------------------------------------------------- /smp_dfu/usb_intFlash/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/usb_intFlash/src/main.c -------------------------------------------------------------------------------- /smp_dfu/usb_intFlash/update/mcumgr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/smp_dfu/usb_intFlash/update/mcumgr.exe -------------------------------------------------------------------------------- /spi_master/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/spi_master/CMakeLists.txt -------------------------------------------------------------------------------- /spi_master/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/spi_master/Kconfig -------------------------------------------------------------------------------- /spi_master/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/spi_master/README.rst -------------------------------------------------------------------------------- /spi_master/boards/nrf52840dk_nrf52840.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/spi_master/boards/nrf52840dk_nrf52840.overlay -------------------------------------------------------------------------------- /spi_master/boards/nrf5340dk_nrf5340_cpuapp.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/spi_master/boards/nrf5340dk_nrf5340_cpuapp.overlay -------------------------------------------------------------------------------- /spi_master/boards/nrf9160dk_nrf9160_ns.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/spi_master/boards/nrf9160dk_nrf9160_ns.overlay -------------------------------------------------------------------------------- /spi_master/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/spi_master/prj.conf -------------------------------------------------------------------------------- /spi_master/program.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/spi_master/program.bat -------------------------------------------------------------------------------- /spi_master/resources/spis_pca10040.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/spi_master/resources/spis_pca10040.hex -------------------------------------------------------------------------------- /spi_master/resources/spis_pca10056.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/spi_master/resources/spis_pca10056.hex -------------------------------------------------------------------------------- /spi_master/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/spi_master/sample.yaml -------------------------------------------------------------------------------- /spi_master/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/spi_master/src/main.c -------------------------------------------------------------------------------- /uart_highspeed/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/uart_highspeed/CMakeLists.txt -------------------------------------------------------------------------------- /uart_highspeed/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/uart_highspeed/Kconfig -------------------------------------------------------------------------------- /uart_highspeed/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/uart_highspeed/README.rst -------------------------------------------------------------------------------- /uart_highspeed/boards/nrf52840dk_nrf52840.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/uart_highspeed/boards/nrf52840dk_nrf52840.overlay -------------------------------------------------------------------------------- /uart_highspeed/boards/nrf5340dk_nrf5340_cpuapp.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/uart_highspeed/boards/nrf5340dk_nrf5340_cpuapp.overlay -------------------------------------------------------------------------------- /uart_highspeed/boards/nrf54l15dk_nrf54l15_cpuflpr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/uart_highspeed/boards/nrf54l15dk_nrf54l15_cpuflpr.conf -------------------------------------------------------------------------------- /uart_highspeed/boards/nrf54l15dk_nrf54l15_cpuflpr.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/uart_highspeed/boards/nrf54l15dk_nrf54l15_cpuflpr.overlay -------------------------------------------------------------------------------- /uart_highspeed/boards/nrf9160dk_nrf9160_ns.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/uart_highspeed/boards/nrf9160dk_nrf9160_ns.overlay -------------------------------------------------------------------------------- /uart_highspeed/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/uart_highspeed/prj.conf -------------------------------------------------------------------------------- /uart_highspeed/program.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/uart_highspeed/program.bat -------------------------------------------------------------------------------- /uart_highspeed/program_flpr.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/uart_highspeed/program_flpr.bat -------------------------------------------------------------------------------- /uart_highspeed/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/uart_highspeed/sample.yaml -------------------------------------------------------------------------------- /uart_highspeed/sdk_change/flpr.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/uart_highspeed/sdk_change/flpr.map -------------------------------------------------------------------------------- /uart_highspeed/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/uart_highspeed/src/main.c -------------------------------------------------------------------------------- /uart_highspeed/sysbuild/vpr_launcher/prj.conf: -------------------------------------------------------------------------------- 1 | # empty config 2 | -------------------------------------------------------------------------------- /uart_highspeed/zephyr.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/uart_highspeed/zephyr.dts -------------------------------------------------------------------------------- /wifi/shell_spi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/wifi/shell_spi/CMakeLists.txt -------------------------------------------------------------------------------- /wifi/shell_spi/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/wifi/shell_spi/README.rst -------------------------------------------------------------------------------- /wifi/shell_spi/boards/nrf52840dk_nrf52840.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/wifi/shell_spi/boards/nrf52840dk_nrf52840.overlay -------------------------------------------------------------------------------- /wifi/shell_spi/boards/nrf7002dk_nrf5340_cpuapp.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/wifi/shell_spi/boards/nrf7002dk_nrf5340_cpuapp.overlay -------------------------------------------------------------------------------- /wifi/shell_spi/boards/nrf9160dk_nrf9160_ns.overlay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/wifi/shell_spi/boards/nrf9160dk_nrf9160_ns.overlay -------------------------------------------------------------------------------- /wifi/shell_spi/overlay-ipv6-only.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/wifi/shell_spi/overlay-ipv6-only.conf -------------------------------------------------------------------------------- /wifi/shell_spi/overlay-openthread.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/wifi/shell_spi/overlay-openthread.conf -------------------------------------------------------------------------------- /wifi/shell_spi/overlay-scan-only.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/wifi/shell_spi/overlay-scan-only.conf -------------------------------------------------------------------------------- /wifi/shell_spi/overlay-wpa_cli.conf: -------------------------------------------------------------------------------- 1 | CONFIG_WPA_CLI=y 2 | -------------------------------------------------------------------------------- /wifi/shell_spi/overlay-zperf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/wifi/shell_spi/overlay-zperf.conf -------------------------------------------------------------------------------- /wifi/shell_spi/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/wifi/shell_spi/prj.conf -------------------------------------------------------------------------------- /wifi/shell_spi/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/wifi/shell_spi/sample.yaml -------------------------------------------------------------------------------- /wifi/shell_spi/src/wifi_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiminhua/ncs_samples/HEAD/wifi/shell_spi/src/wifi_main.c --------------------------------------------------------------------------------