Skip to content

Conversation

@NordicBuilder
Copy link
Contributor

Automatically created by action-manifest-pr GH action from PR:
nrfconnect/sdk-zephyr#3506

@NordicBuilder NordicBuilder requested review from a team as code owners November 18, 2025 08:59
@NordicBuilder NordicBuilder added manifest changelog-entry-required Update changelog before merge. Remove label if entry is not needed or already added. labels Nov 18, 2025
@NordicBuilder
Copy link
Contributor Author

NordicBuilder commented Nov 18, 2025

The following west manifest projects have changed revision in this Pull Request:

Name Old Revision New Revision Diff
zephyr nrfconnect/sdk-zephyr@c118168 (main) nrfconnect/sdk-zephyr#3506 nrfconnect/sdk-zephyr#3506/files

DNM label due to: 1 project with PR revision

Note: This message is automatically posted and updated by the Manifest GitHub Action.

@NordicBuilder
Copy link
Contributor Author

NordicBuilder commented Nov 18, 2025

CI Information

To view the history of this post, click the 'edited' button above
Build number: 3

Inputs:

Sources:

hal_nordic: PR head: 0dbbf4794156ca09dc2d4bad8c42dcdb54acd662
nrf_hw_models: PR head: 5eec7aca321735f5fc8e3e7c79e162f0e9810b16
trusted-firmware-m: PR head: c2f9edc77f72838e7d6f5f9c0b95e4318ddfced1
sdk-nrf: PR head: 9e817846e2b950ff81ebe7154e88347e7e081696
mcuboot: PR head: c11e845e2483917d7478ba1a7a3591a9f4e8d4a2
hostap: PR head: 528eb2d95e35c7c9b187a15d2fb7f6e5bb983181
zephyr: PR head: 90d6cb59ef11f295cf1224ba89a6311cd2fadb6e

more details

hal_nordic:

PR head: 0dbbf4794156ca09dc2d4bad8c42dcdb54acd662
merge base: 7858281d843468fe53c829995fb63f45a227387a
Diff

nrf_hw_models:

PR head: 5eec7aca321735f5fc8e3e7c79e162f0e9810b16
merge base: 40403f5f2805cca210d2a47c8717d89c4e816cda
Diff

trusted-firmware-m:

PR head: c2f9edc77f72838e7d6f5f9c0b95e4318ddfced1
merge base: 3e12b0cc27d828d7ec04c4ac62ad45a9a905573e
Diff

sdk-nrf:

PR head: 9e817846e2b950ff81ebe7154e88347e7e081696
merge base: 5d18761f3a0a4773894a096e1d0d8da1d5635e4b
target head (v3.2-branch): f32b0f6cd2349cfe221a7b98f285959cf3ca5c8b
Diff

mcuboot:

PR head: c11e845e2483917d7478ba1a7a3591a9f4e8d4a2
merge base: aa4fa2b6e17361dd3ce16a60883059778fd147a9
Diff

hostap:

PR head: 528eb2d95e35c7c9b187a15d2fb7f6e5bb983181
merge base: 5abcff1c0ecff65f0f81e0cc086b7f766e5101bf
Diff

zephyr:

PR head: 90d6cb59ef11f295cf1224ba89a6311cd2fadb6e
merge base: 911b3da1394dc6846c706868b1d407495701926f
target head (ncs-v3.2-branch): 7b2862b457c3babf91275cfd7c17f5af840fe3ab
Diff

Github labels

Enabled Name Description
ci-disabled Disable the ci execution
ci-all-test Run all of ci, no test spec filtering will be done
ci-force-downstream Force execution of downstream even if twister fails
ci-run-twister Force run twister
ci-run-zephyr-twister Force run zephyr twister
List of changed files detected by CI (2432)
bootloader
│  ├── mcuboot
│  │  ├── .github
│  │  │  ├── workflows
│  │  │  │  ├── espressif.yaml
│  │  │  │  ├── fih_tests.yaml
│  │  │  │  ├── ruff.yaml
│  │  │  │  │ zephyr_build.yaml
│  │  ├── .gitignore
│  │  ├── .ruff.toml
│  │  ├── Cargo.toml
│  │  ├── README.md
│  │  ├── boot
│  │  │  ├── boot_serial
│  │  │  │  ├── src
│  │  │  │  │  ├── boot_serial.c
│  │  │  │  │  │ boot_serial_encryption.c
│  │  │  ├── bootutil
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── include
│  │  │  │  │  ├── bootutil
│  │  │  │  │  │  ├── boot_hooks.h
│  │  │  │  │  │  ├── bootutil.h
│  │  │  │  │  │  ├── crypto
│  │  │  │  │  │  │  ├── aes_ctr.h
│  │  │  │  │  │  │  ├── aes_ctr_mbedtls.h
│  │  │  │  │  │  │  ├── aes_ctr_psa.h
│  │  │  │  │  │  │  ├── aes_ctr_tinycrypt.h
│  │  │  │  │  │  │  │ ecdsa.h
│  │  │  │  │  │  ├── enc_key.h
│  │  │  │  │  │  ├── fault_injection_hardening.h
│  │  │  │  │  │  ├── image.h
│  │  │  │  │  │  ├── mcuboot_uuid.h
│  │  │  │  │  │  │ security_cnt.h
│  │  │  │  ├── src
│  │  │  │  │  ├── bootutil_area.c
│  │  │  │  │  ├── bootutil_area.h
│  │  │  │  │  ├── bootutil_find_key.c
│  │  │  │  │  ├── bootutil_img_hash.c
│  │  │  │  │  ├── bootutil_loader.c
│  │  │  │  │  ├── bootutil_loader.h
│  │  │  │  │  ├── bootutil_misc.c
│  │  │  │  │  ├── bootutil_misc.h
│  │  │  │  │  ├── bootutil_priv.h
│  │  │  │  │  ├── bootutil_public.c
│  │  │  │  │  ├── encrypted.c
│  │  │  │  │  ├── encrypted_psa.c
│  │  │  │  │  ├── image_validate.c
│  │  │  │  │  ├── loader.c
│  │  │  │  │  ├── ram_load.c
│  │  │  │  │  ├── swap_misc.c
│  │  │  │  │  ├── swap_offset.c
│  │  │  │  │  ├── swap_scratch.c
│  │  │  │  │  │ tlv.c
│  │  │  ├── cypress
│  │  │  │  ├── MCUBootApp
│  │  │  │  │  ├── config
│  │  │  │  │  │  ├── mcuboot_config
│  │  │  │  │  │  │  │ mcuboot_config.h
│  │  │  ├── espressif
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── ci_configs
│  │  │  │  │  ├── esp32-secureboot.conf
│  │  │  │  │  ├── esp32c2-secureboot.conf
│  │  │  │  │  ├── esp32c3-secureboot.conf
│  │  │  │  │  ├── esp32c6-secureboot.conf
│  │  │  │  │  ├── esp32h2-secureboot.conf
│  │  │  │  │  ├── esp32s2-secureboot.conf
│  │  │  │  │  ├── esp32s3-secureboot.conf
│  │  │  │  │  ├── secureboot-sign-ec256.conf
│  │  │  │  │  ├── secureboot-sign-ed25519.conf
│  │  │  │  │  ├── secureboot-sign-rsa2048.conf
│  │  │  │  │  │ secureboot-sign-rsa3072.conf
│  │  │  │  ├── hal
│  │  │  │  │  ├── include
│  │  │  │  │  │  ├── esp32c2
│  │  │  │  │  │  │  │ esp32c2.cmake
│  │  │  │  │  │  ├── esp32c3
│  │  │  │  │  │  │  │ esp32c3.cmake
│  │  │  │  │  │  ├── esp32c6
│  │  │  │  │  │  │  │ esp32c6.cmake
│  │  │  │  │  │  ├── esp32h2
│  │  │  │  │  │  │  │ esp32h2.cmake
│  │  │  │  │  │  ├── esp32s3
│  │  │  │  │  │  │  │ esp32s3.cmake
│  │  │  │  │  │  ├── mcuboot_config
│  │  │  │  │  │  │  │ mcuboot_config.h
│  │  │  │  │  │  ├── stubs.h
│  │  │  │  │  │  │ zephyr_compat.h
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ flash_encrypt.c
│  │  │  │  ├── port
│  │  │  │  │  ├── esp32
│  │  │  │  │  │  ├── bootloader.conf
│  │  │  │  │  │  ├── ld
│  │  │  │  │  │  │  │ bootloader.ld
│  │  │  │  │  │  │ serial_adapter.c
│  │  │  │  │  ├── esp32c2
│  │  │  │  │  │  ├── bootloader.conf
│  │  │  │  │  │  ├── ld
│  │  │  │  │  │  │  │ bootloader.ld
│  │  │  │  │  │  │ serial_adapter.c
│  │  │  │  │  ├── esp32c3
│  │  │  │  │  │  ├── bootloader.conf
│  │  │  │  │  │  ├── ld
│  │  │  │  │  │  │  │ bootloader.ld
│  │  │  │  │  │  │ serial_adapter.c
│  │  │  │  │  ├── esp32c6
│  │  │  │  │  │  ├── bootloader.conf
│  │  │  │  │  │  ├── ld
│  │  │  │  │  │  │  │ bootloader.ld
│  │  │  │  │  │  │ serial_adapter.c
│  │  │  │  │  ├── esp32h2
│  │  │  │  │  │  ├── bootloader.conf
│  │  │  │  │  │  ├── ld
│  │  │  │  │  │  │  │ bootloader.ld
│  │  │  │  │  ├── esp32s2
│  │  │  │  │  │  ├── bootloader.conf
│  │  │  │  │  │  ├── ld
│  │  │  │  │  │  │  │ bootloader.ld
│  │  │  │  │  │  │ serial_adapter.c
│  │  │  │  │  ├── esp32s3
│  │  │  │  │  │  ├── bootloader.conf
│  │  │  │  │  │  ├── ld
│  │  │  │  │  │  │  │ bootloader.ld
│  │  │  │  │  │  │ serial_adapter.c
│  │  │  │  │  ├── esp_mcuboot.c
│  │  │  │  │  │ serial_adapter.c
│  │  │  ├── mbed
│  │  │  │  ├── include
│  │  │  │  │  ├── mcuboot_config
│  │  │  │  │  │  │ mcuboot_config.h
│  │  │  ├── mynewt
│  │  │  │  ├── flash_map_backend
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ flash_map_extended.c
│  │  │  │  ├── mcuboot_config
│  │  │  │  │  ├── include
│  │  │  │  │  │  ├── mcuboot_config
│  │  │  │  │  │  │  │ mcuboot_config.h
│  │  │  ├── nuttx
│  │  │  │  ├── include
│  │  │  │  │  ├── mcuboot_config
│  │  │  │  │  │  │ mcuboot_config.h
│  │  │  ├── zephyr
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.serial_recovery
│  │  │  │  ├── boards
│  │  │  │  │  ├── b_u585i_iot02a_stm32u585xx_ext_flash_app.conf
│  │  │  │  │  ├── frdm_mcxa156.conf
│  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuapp.overlay
│  │  │  │  │  ├── stm32h573i_dk.conf
│  │  │  │  │  ├── stm32h7b3i_dk_stm32h7b3xx_ext_flash_app.conf
│  │  │  │  │  │ stm32h7s78_dk.conf
│  │  │  │  ├── firmware_loader.c
│  │  │  │  ├── flash_map_extended.c
│  │  │  │  ├── hooks_sample.c
│  │  │  │  ├── include
│  │  │  │  │  ├── io
│  │  │  │  │  │  │ io.h
│  │  │  │  │  ├── mcuboot_config
│  │  │  │  │  │  │ mcuboot_config.h
│  │  │  │  │  ├── sysflash
│  │  │  │  │  │  │ sysflash.h
│  │  │  │  ├── main.c
│  │  │  │  ├── ram_load.c
│  │  │  │  ├── single_loader.c
│  │  │  │  ├── socs
│  │  │  │  │  ├── nrf54l05_cpuapp.conf
│  │  │  │  │  ├── nrf54l10_cpuapp.conf
│  │  │  │  │  ├── stm32h573xx_ext_flash_app.conf
│  │  │  │  │  ├── stm32h573xx_ext_flash_app.overlay
│  │  │  │  │  ├── stm32h750xx_ext_flash_app.conf
│  │  │  │  │  ├── stm32h750xx_ext_flash_app.overlay
│  │  │  │  │  ├── stm32h7s7xx_ext_flash_app.conf
│  │  │  │  │  │ stm32h7s7xx_ext_flash_app.overlay
│  │  ├── ci
│  │  │  ├── compare_versions.py
│  │  │  ├── espressif_install.sh
│  │  │  ├── espressif_run.sh
│  │  │  ├── fih-tests_config.sh
│  │  │  ├── fih-tests_install.sh
│  │  │  ├── fih-tests_run.sh
│  │  │  ├── fih-tests_version.sh
│  │  │  ├── fih_test_docker
│  │  │  │  ├── damage_image.py
│  │  │  │  ├── generate_test_report.py
│  │  │  │  ├── utils.py
│  │  │  │  │ validate_output.py
│  │  │  │ get_features.py
│  │  ├── docs
│  │  │  ├── design.md
│  │  │  ├── imgtool.md
│  │  │  ├── readme-espressif.md
│  │  │  ├── release-notes.d
│  │  │  │  ├── add-cortex-r-support-00-basic.md
│  │  │  │  ├── add-cortex-r-support-01-cleanup-core.md
│  │  │  │  ├── align-security-policy.md
│  │  │  │  ├── click.md
│  │  │  │  ├── enable-ram-load-revert.md
│  │  │  │  ├── espressif-move-virtual-efuse-offset-config.md
│  │  │  │  ├── fix-boot-scramble-region.md
│  │  │  │  ├── fix-direct-hash-base-address.md
│  │  │  │  ├── fix-pure-eddsa-base-address.md
│  │  │  │  ├── fix-serial-recovery-progressive-erase.md
│  │  │  │  ├── imgtool-compression-header-fix.md
│  │  │  │  ├── picolibc.md
│  │  │  │  ├── single-slot-fixes.md
│  │  │  │  ├── trailer-fixes.md
│  │  │  │  │ zephyr-pinreset-trigger.md
│  │  │  │ release-notes.md
│  │  ├── repository.yml
│  │  ├── samples
│  │  │  ├── compression_test
│  │  │  │  ├── README.txt
│  │  │  │  │ independent_cmp.c
│  │  ├── scripts
│  │  │  ├── assemble.py
│  │  │  ├── imgtool
│  │  │  │  ├── __init__.py
│  │  │  │  ├── boot_record.py
│  │  │  │  ├── dumpinfo.py
│  │  │  │  ├── image.py
│  │  │  │  ├── keys
│  │  │  │  │  ├── __init__.py
│  │  │  │  │  ├── ecdsa.py
│  │  │  │  │  ├── ed25519.py
│  │  │  │  │  ├── general.py
│  │  │  │  │  ├── privatebytes.py
│  │  │  │  │  ├── rsa.py
│  │  │  │  │  │ x25519.py
│  │  │  │  │ main.py
│  │  │  ├── setup.py
│  │  │  ├── tests
│  │  │  │  ├── keys
│  │  │  │  │  ├── test_ecdsa.py
│  │  │  │  │  ├── test_ed25519.py
│  │  │  │  │  │ test_rsa.py
│  │  │  │  ├── test_commands.py
│  │  │  │  ├── test_compression.py
│  │  │  │  │ test_keys.py
│  │  ├── sim
│  │  │  ├── Cargo.toml
│  │  │  ├── mcuboot-sys
│  │  │  │  ├── Cargo.toml
│  │  │  │  ├── build.rs
│  │  │  │  ├── csupport
│  │  │  │  │  │ run.c
│  │  │  ├── src
│  │  │  │  ├── image.rs
│  │  │  │  │ lib.rs
│  │  │  ├── tests
│  │  │  │  │ core.rs
│  │  ├── zephyr
│  │  │  │ module.yml
modules
│  ├── bsim_hw_models
│  │  ├── nrf_hw_models
│  │  │  ├── 52833.mk
│  │  │  ├── 5340.mk
│  │  │  ├── 54L15.mk
│  │  │  ├── 54LM20.mk
│  │  │  ├── CMakeLists.txt
│  │  │  ├── src
│  │  │  │  ├── HW_models
│  │  │  │  │  ├── NHW_54L_CLOCK.c
│  │  │  │  │  ├── NHW_RTC.c
│  │  │  │  │  ├── NHW_config.h
│  │  │  │  │  ├── NHW_misc.c
│  │  │  │  │  │ NHW_peri_types.h
│  │  │  │  ├── nrfx
│  │  │  │  │  ├── mdk_replacements
│  │  │  │  │  │  ├── mdk
│  │  │  │  │  │  │  ├── nrf.h
│  │  │  │  │  │  │  │ nrf_erratas.h
│  │  │  │  │  │  │ nrf.h
│  ├── hal
│  │  ├── nordic
│  │  │  ├── drivers
│  │  │  │  ├── nrf_802154
│  │  │  │  │  ├── driver
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  ├── nrf_802154_swi.c
│  │  │  │  │  │  │  ├── nrf_802154_trx.c
│  │  │  │  │  │  │  │ nrf_802154_utils.h
│  │  │  │  │  ├── sl
│  │  │  │  │  │  ├── sl_opensource
│  │  │  │  │  │  │  ├── include
│  │  │  │  │  │  │  │  ├── protocol
│  │  │  │  │  │  │  │  │  │ mpsl_fem_protocol_api.h
│  │  │  ├── nrfx
│  │  │  │  ├── CHANGELOG.md
│  │  │  │  ├── README
│  │  │  │  ├── bsp
│  │  │  │  │  ├── stable
│  │  │  │  │  │  ├── mdk
│  │  │  │  │  │  │  ├── compiler_abstraction.h
│  │  │  │  │  │  │  ├── core_vpr.h
│  │  │  │  │  │  │  ├── haltium_interim.h
│  │  │  │  │  │  │  ├── nrf.h
│  │  │  │  │  │  │  ├── nrf51.h
│  │  │  │  │  │  │  ├── nrf51.svd
│  │  │  │  │  │  │  ├── nrf51422_xxaa_memory.h
│  │  │  │  │  │  │  ├── nrf51422_xxab_memory.h
│  │  │  │  │  │  │  ├── nrf51422_xxac_memory.h
│  │  │  │  │  │  │  ├── nrf51801_xxab_memory.h
│  │  │  │  │  │  │  ├── nrf51802_xxaa_memory.h
│  │  │  │  │  │  │  ├── nrf51822_xxaa_memory.h
│  │  │  │  │  │  │  ├── nrf51822_xxab_memory.h
│  │  │  │  │  │  │  ├── nrf51822_xxac_memory.h
│  │  │  │  │  │  │  ├── nrf51824_xxaa_memory.h
│  │  │  │  │  │  │  ├── nrf51_bitfields.h
│  │  │  │  │  │  │  ├── nrf51_deprecated.h
│  │  │  │  │  │  │  ├── nrf51_erratas.h
│  │  │  │  │  │  │  ├── nrf51_peripherals.h
│  │  │  │  │  │  │  ├── nrf51_to_nrf52.h
│  │  │  │  │  │  │  ├── nrf51_to_nrf52810.h
│  │  │  │  │  │  │  ├── nrf51_to_nrf52840.h
│  │  │  │  │  │  │  ├── nrf52.h
│  │  │  │  │  │  │  ├── nrf52.svd
│  │  │  │  │  │  │  ├── nrf52805.h
│  │  │  │  │  │  │  ├── nrf52805.svd
│  │  │  │  │  │  │  ├── nrf52805_bitfields.h
│  │  │  │  │  │  │  ├── nrf52805_peripherals.h
│  │  │  │  │  │  │  ├── nrf52805_xxaa_memory.h
│  │  │  │  │  │  │  ├── nrf52810.h
│  │  │  │  │  │  │  ├── nrf52810.svd
│  │  │  │  │  │  │  ├── nrf52810_bitfields.h
│  │  │  │  │  │  │  ├── nrf52810_name_change.h
│  │  │  │  │  │  │  ├── nrf52810_peripherals.h
│  │  │  │  │  │  │  ├── nrf52810_to_nrf52811.h
│  │  │  │  │  │  │  ├── nrf52810_xxaa_memory.h
│  │  │  │  │  │  │  ├── nrf52811.h
│  │  │  │  │  │  │  ├── nrf52811.svd
│  │  │  │  │  │  │  ├── nrf52811_bitfields.h
│  │  │  │  │  │  │  ├── nrf52811_peripherals.h
│  │  │  │  │  │  │  ├── nrf52811_xxaa_memory.h
│  │  │  │  │  │  │  ├── nrf52820.h
│  │  │  │  │  │  │  ├── nrf52820.svd
│  │  │  │  │  │  │  ├── nrf52820_bitfields.h
│  │  │  │  │  │  │  ├── nrf52820_peripherals.h
│  │  │  │  │  │  │  ├── nrf52820_xxaa_memory.h
│  │  │  │  │  │  │  ├── nrf52832_peripherals.h
│  │  │  │  │  │  │  ├── nrf52832_xxaa_memory.h
│  │  │  │  │  │  │  ├── nrf52832_xxab_memory.h
│  │  │  │  │  │  │  ├── nrf52833.h
│  │  │  │  │  │  │  ├── nrf52833.svd
│  │  │  │  │  │  │  ├── nrf52833_bitfields.h
│  │  │  │  │  │  │  ├── nrf52833_peripherals.h
│  │  │  │  │  │  │  ├── nrf52833_to_nrf52820.h
│  │  │  │  │  │  │  ├── nrf52833_xxaa_memory.h
│  │  │  │  │  │  │  ├── nrf52840.h
│  │  │  │  │  │  │  ├── nrf52840.svd
│  │  │  │  │  │  │  ├── nrf52840_bitfields.h
│  │  │  │  │  │  │  ├── nrf52840_name_change.h
│  │  │  │  │  │  │  ├── nrf52840_peripherals.h
│  │  │  │  │  │  │  ├── nrf52840_xxaa_memory.h
│  │  │  │  │  │  │  ├── nrf52_bitfields.h
│  │  │  │  │  │  │  ├── nrf52_erratas.h
│  │  │  │  │  │  │  ├── nrf52_name_change.h
│  │  │  │  │  │  │  ├── nrf52_to_nrf52810.h
│  │  │  │  │  │  │  ├── nrf52_to_nrf52833.h
│  │  │  │  │  │  │  ├── nrf52_to_nrf52840.h
│  │  │  │  │  │  │  ├── nrf5340_application.h
│  │  │  │  │  │  │  ├── nrf5340_application.svd
│  │  │  │  │  │  │  ├── nrf5340_application_bitfields.h
│  │  │  │  │  │  │  ├── nrf5340_application_name_change.h
│  │  │  │  │  │  │  ├── nrf5340_application_peripherals.h
│  │  │  │  │  │  │  ├── nrf5340_network.h
│  │  │  │  │  │  │  ├── nrf5340_network.svd
│  │  │  │  │  │  │  ├── nrf5340_network_bitfields.h
│  │  │  │  │  │  │  ├── nrf5340_network_name_change.h
│  │  │  │  │  │  │  ├── nrf5340_network_peripherals.h
│  │  │  │  │  │  │  ├── nrf5340_xxaa_application_memory.h
│  │  │  │  │  │  │  ├── nrf5340_xxaa_network_memory.h
│  │  │  │  │  │  │  ├── nrf53_erratas.h
│  │  │  │  │  │  │  ├── nrf54h20.h
│  │  │  │  │  │  │  ├── nrf54h20_application.h
│  │  │  │  │  │  │  ├── nrf54h20_application.svd
│  │  │  │  │  │  │  ├── nrf54h20_application_peripherals.h
│  │  │  │  │  │  │  ├── nrf54h20_flpr.h
│  │  │  │  │  │  │  ├── nrf54h20_flpr.svd
│  │  │  │  │  │  │  ├── nrf54h20_flpr_peripherals.h
│  │  │  │  │  │  │  ├── nrf54h20_global.h
│  │  │  │  │  │  │  ├── nrf54h20_interim.h
│  │  │  │  │  │  │  ├── nrf54h20_name_change.h
│  │  │  │  │  │  │  ├── nrf54h20_peripherals.h
│  │  │  │  │  │  │  ├── nrf54h20_ppr.h
│  │  │  │  │  │  │  ├── nrf54h20_ppr.svd
│  │  │  │  │  │  │  ├── nrf54h20_ppr_peripherals.h
│  │  │  │  │  │  │  ├── nrf54h20_radiocore.h
│  │  │  │  │  │  │  ├── nrf54h20_radiocore.svd
│  │  │  │  │  │  │  ├── nrf54h20_radiocore_peripherals.h
│  │  │  │  │  │  │  ├── nrf54h20_secure.h
│  │  │  │  │  │  │  ├── nrf54h20_secure.svd
│  │  │  │  │  │  │  ├── nrf54h20_secure_peripherals.h
│  │  │  │  │  │  │  ├── nrf54h20_sysctrl.h
│  │  │  │  │  │  │  ├── nrf54h20_sysctrl.svd
│  │  │  │  │  │  │  ├── nrf54h20_sysctrl_peripherals.h
│  │  │  │  │  │  │  ├── nrf54h20_types.h
│  │  │  │  │  │  │  ├── nrf54h20_version.h
│  │  │  │  │  │  │  ├── nrf54h20_xxaa_application_memory.h
│  │  │  │  │  │  │  ├── nrf54h20_xxaa_flpr_memory.h
│  │  │  │  │  │  │  ├── nrf54h20_xxaa_ppr_memory.h
│  │  │  │  │  │  │  ├── nrf54h20_xxaa_radiocore_memory.h
│  │  │  │  │  │  │  ├── nrf54h_erratas.h
│  │  │  │  │  │  │  ├── nrf54l05.h
│  │  │  │  │  │  │  ├── nrf54l05_application.h
│  │  │  │  │  │  │  ├── nrf54l05_application.svd
│  │  │  │  │  │  │  ├── nrf54l05_application_peripherals.h
│  │  │  │  │  │  │  ├── nrf54l05_flpr.h
│  │  │  │  │  │  │  ├── nrf54l05_flpr.svd
│  │  │  │  │  │  │  ├── nrf54l05_flpr_peripherals.h
│  │  │  │  │  │  │  ├── nrf54l05_global.h
│  │  │  │  │  │  │  ├── nrf54l05_interim.h
│  │  │  │  │  │  │  ├── nrf54l05_name_change.h
│  │  │  │  │  │  │  ├── nrf54l05_peripherals.h
│  │  │  │  │  │  │  ├── nrf54l05_types.h
│  │  │  │  │  │  │  ├── nrf54l05_version.h
│  │  │  │  │  │  │  ├── nrf54l05_xxaa_application_memory.h
│  │  │  │  │  │  │  ├── nrf54l05_xxaa_flpr_memory.h
│  │  │  │  │  │  │  ├── nrf54l10.h
│  │  │  │  │  │  │  ├── nrf54l10_application.h
│  │  │  │  │  │  │  ├── nrf54l10_application.svd
│  │  │  │  │  │  │  ├── nrf54l10_application_peripherals.h
│  │  │  │  │  │  │  ├── nrf54l10_flpr.h
│  │  │  │  │  │  │  ├── nrf54l10_flpr.svd
│  │  │  │  │  │  │  ├── nrf54l10_flpr_peripherals.h
│  │  │  │  │  │  │  ├── nrf54l10_global.h
│  │  │  │  │  │  │  ├── nrf54l10_interim.h
│  │  │  │  │  │  │  ├── nrf54l10_name_change.h
│  │  │  │  │  │  │  ├── nrf54l10_peripherals.h
│  │  │  │  │  │  │  ├── nrf54l10_types.h
│  │  │  │  │  │  │  ├── nrf54l10_version.h
│  │  │  │  │  │  │  ├── nrf54l10_xxaa_application_memory.h
│  │  │  │  │  │  │  ├── nrf54l10_xxaa_flpr_memory.h
│  │  │  │  │  │  │  ├── nrf54l15.h
│  │  │  │  │  │  │  ├── nrf54l15_application.h
│  │  │  │  │  │  │  ├── nrf54l15_application.svd
│  │  │  │  │  │  │  ├── nrf54l15_application_peripherals.h
│  │  │  │  │  │  │  ├── nrf54l15_flpr.h
│  │  │  │  │  │  │  ├── nrf54l15_flpr.svd
│  │  │  │  │  │  │  ├── nrf54l15_flpr_peripherals.h
│  │  │  │  │  │  │  ├── nrf54l15_global.h
│  │  │  │  │  │  │  ├── nrf54l15_interim.h
│  │  │  │  │  │  │  ├── nrf54l15_name_change.h
│  │  │  │  │  │  │  ├── nrf54l15_peripherals.h
│  │  │  │  │  │  │  ├── nrf54l15_types.h
│  │  │  │  │  │  │  ├── nrf54l15_version.h
│  │  │  │  │  │  │  ├── nrf54l15_xxaa_application_memory.h
│  │  │  │  │  │  │  ├── nrf54l15_xxaa_flpr_memory.h
│  │  │  │  │  │  │  ├── nrf54l_erratas.h
│  │  │  │  │  │  │  ├── nrf54lm20a_enga.h
│  │  │  │  │  │  │  ├── nrf54lm20a_enga_application.h
│  │  │  │  │  │  │  ├── nrf54lm20a_enga_application.svd
│  │  │  │  │  │  │  ├── nrf54lm20a_enga_application_peripherals.h
│  │  │  │  │  │  │  ├── nrf54lm20a_enga_flpr.h
│  │  │  │  │  │  │  ├── nrf54lm20a_enga_flpr.svd
│  │  │  │  │  │  │  ├── nrf54lm20a_enga_flpr_peripherals.h
│  │  │  │  │  │  │  ├── nrf54lm20a_enga_global.h
│  │  │  │  │  │  │  ├── nrf54lm20a_enga_interim.h
│  │  │  │  │  │  │  ├── nrf54lm20a_enga_name_change.h
│  │  │  │  │  │  │  ├── nrf54lm20a_enga_peripherals.h
│  │  │  │  │  │  │  ├── nrf54lm20a_enga_types.h
│  │  │  │  │  │  │  ├── nrf54lm20a_enga_version.h
│  │  │  │  │  │  │  ├── nrf54lm20a_enga_xxaa_application_memory.h
│  │  │  │  │  │  │  ├── nrf54lm20a_enga_xxaa_flpr_memory.h
│  │  │  │  │  │  │  ├── nrf54ls05b_enga.h
│  │  │  │  │  │  │  ├── nrf54ls05b_enga_application.h
│  │  │  │  │  │  │  ├── nrf54ls05b_enga_application.svd
│  │  │  │  │  │  │  ├── nrf54ls05b_enga_application_peripherals.h
│  │  │  │  │  │  │  ├── nrf54ls05b_enga_global.h
│  │  │  │  │  │  │  ├── nrf54ls05b_enga_interim.h
│  │  │  │  │  │  │  ├── nrf54ls05b_enga_name_change.h
│  │  │  │  │  │  │  ├── nrf54ls05b_enga_peripherals.h
│  │  │  │  │  │  │  ├── nrf54ls05b_enga_types.h
│  │  │  │  │  │  │  ├── nrf54ls05b_enga_version.h
│  │  │  │  │  │  │  ├── nrf54ls05b_enga_xxaa_application_memory.h
│  │  │  │  │  │  │  ├── nrf54lv10a_enga.h
│  │  │  │  │  │  │  ├── nrf54lv10a_enga_application.h
│  │  │  │  │  │  │  ├── nrf54lv10a_enga_application.svd
│  │  │  │  │  │  │  ├── nrf54lv10a_enga_application_peripherals.h
│  │  │  │  │  │  │  ├── nrf54lv10a_enga_flpr.h
│  │  │  │  │  │  │  ├── nrf54lv10a_enga_flpr.svd
│  │  │  │  │  │  │  ├── nrf54lv10a_enga_flpr_peripherals.h
│  │  │  │  │  │  │  ├── nrf54lv10a_enga_global.h
│  │  │  │  │  │  │  ├── nrf54lv10a_enga_interim.h
│  │  │  │  │  │  │  ├── nrf54lv10a_enga_name_change.h
│  │  │  │  │  │  │  ├── nrf54lv10a_enga_peripherals.h
│  │  │  │  │  │  │  ├── nrf54lv10a_enga_types.h
│  │  │  │  │  │  │  ├── nrf54lv10a_enga_version.h
│  │  │  │  │  │  │  ├── nrf54lv10a_enga_xxaa_application_memory.h
│  │  │  │  │  │  │  ├── nrf54lv10a_enga_xxaa_flpr_memory.h
│  │  │  │  │  │  │  ├── nrf7120_enga.h
│  │  │  │  │  │  │  ├── nrf7120_enga_application.h
│  │  │  │  │  │  │  ├── nrf7120_enga_application.svd
│  │  │  │  │  │  │  ├── nrf7120_enga_application_peripherals.h
│  │  │  │  │  │  │  ├── nrf7120_enga_flpr.h
│  │  │  │  │  │  │  ├── nrf7120_enga_flpr.svd
│  │  │  │  │  │  │  ├── nrf7120_enga_flpr_peripherals.h
│  │  │  │  │  │  │  ├── nrf7120_enga_global.h
│  │  │  │  │  │  │  ├── nrf7120_enga_interim.h
│  │  │  │  │  │  │  ├── nrf7120_enga_lmac.h
│  │  │  │  │  │  │  ├── nrf7120_enga_lmac.svd
│  │  │  │  │  │  │  ├── nrf7120_enga_lmac_peripherals.h
│  │  │  │  │  │  │  ├── nrf7120_enga_name_change.h
│  │  │  │  │  │  │  ├── nrf7120_enga_peripherals.h
│  │  │  │  │  │  │  ├── nrf7120_enga_types.h
│  │  │  │  │  │  │  ├── nrf7120_enga_umac.h
│  │  │  │  │  │  │  ├── nrf7120_enga_umac.svd
│  │  │  │  │  │  │  ├── nrf7120_enga_umac_peripherals.h
│  │  │  │  │  │  │  ├── nrf7120_enga_version.h
│  │  │  │  │  │  │  ├── nrf7120_enga_wificore.h
│  │  │  │  │  │  │  ├── nrf7120_enga_wificore.svd
│  │  │  │  │  │  │  ├── nrf7120_enga_wificore_peripherals.h
│  │  │  │  │  │  │  ├── nrf7120_enga_xxaa_application_memory.h
│  │  │  │  │  │  │  ├── nrf7120_enga_xxaa_flpr_memory.h
│  │  │  │  │  │  │  ├── nrf7120_enga_xxaa_lmac_memory.h
│  │  │  │  │  │  │  ├── nrf7120_enga_xxaa_umac_memory.h
│  │  │  │  │  │  │  ├── nrf9120.h
│  │  │  │  │  │  │  ├── nrf9120.svd
│  │  │  │  │  │  │  ├── nrf9120_bitfields.h
│  │  │  │  │  │  │  ├── nrf9120_peripherals.h
│  │  │  │  │  │  │  ├── nrf9120_xxaa_memory.h
│  │  │  │  │  │  │  ├── nrf9160.h
│  │  │  │  │  │  │  ├── nrf9160.svd
│  │  │  │  │  │  │  ├── nrf9160_bitfields.h
│  │  │  │  │  │  │  ├── nrf9160_name_change.h
│  │  │  │  │  │  │  ├── nrf9160_peripherals.h
│  │  │  │  │  │  │  ├── nrf9160_xxaa_memory.h
│  │  │  │  │  │  │  ├── nrf91_erratas.h
│  │  │  │  │  │  │  ├── nrf91_name_change.h
│  │  │  │  │  │  │  ├── nrf9230_engb.h
│  │  │  │  │  │  │  ├── nrf9230_engb_application.h
│  │  │  │  │  │  │  ├── nrf9230_engb_application.svd
│  │  │  │  │  │  │  ├── nrf9230_engb_application_peripherals.h
│  │  │  │  │  │  │  ├── nrf9230_engb_flpr.h
│  │  │  │  │  │  │  ├── nrf9230_engb_flpr.svd
│  │  │  │  │  │  │  ├── nrf9230_engb_flpr_peripherals.h
│  │  │  │  │  │  │  ├── nrf9230_engb_global.h
│  │  │  │  │  │  │  ├── nrf9230_engb_interim.h
│  │  │  │  │  │  │  ├── nrf9230_engb_name_change.h
│  │  │  │  │  │  │  ├── nrf9230_engb_peripherals.h
│  │  │  │  │  │  │  ├── nrf9230_engb_ppr.h
│  │  │  │  │  │  │  ├── nrf9230_engb_ppr.svd
│  │  │  │  │  │  │  ├── nrf9230_engb_ppr_peripherals.h
│  │  │  │  │  │  │  ├── nrf9230_engb_radiocore.h
│  │  │  │  │  │  │  ├── nrf9230_engb_radiocore.svd
│  │  │  │  │  │  │  ├── nrf9230_engb_radiocore_peripherals.h
│  │  │  │  │  │  │  ├── nrf9230_engb_types.h
│  │  │  │  │  │  │  ├── nrf9230_engb_version.h
│  │  │  │  │  │  │  ├── nrf9230_engb_xxaa_application_memory.h
│  │  │  │  │  │  │  ├── nrf9230_engb_xxaa_flpr_memory.h
│  │  │  │  │  │  │  ├── nrf9230_engb_xxaa_ppr_memory.h
│  │  │  │  │  │  │  ├── nrf9230_engb_xxaa_radiocore_memory.h
│  │  │  │  │  │  │  ├── nrf_erratas.h
│  │  │  │  │  │  │  ├── nrf_mem.h
│  │  │  │  │  │  │  ├── nrf_peripherals.h
│  │  │  │  │  │  │  ├── riscv_encoding.h
│  │  │  │  │  │  │  ├── system_config_sau.h
│  │  │  │  │  │  │  ├── system_nrf.h
│  │  │  │  │  │  │  ├── system_nrf51.c
│  │  │  │  │  │  │  ├── system_nrf51.h
│  │  │  │  │  │  │  ├── system_nrf52.c
│  │  │  │  │  │  │  ├── system_nrf52.h
│  │  │  │  │  │  │  ├── system_nrf52805.c
│  │  │  │  │  │  │  ├── system_nrf52805.h
│  │  │  │  │  │  │  ├── system_nrf52810.c
│  │  │  │  │  │  │  ├── system_nrf52810.h
│  │  │  │  │  │  │  ├── system_nrf52811.c
│  │  │  │  │  │  │  ├── system_nrf52811.h
│  │  │  │  │  │  │  ├── system_nrf52820.c
│  │  │  │  │  │  │  ├── system_nrf52820.h
│  │  │  │  │  │  │  ├── system_nrf52833.c
│  │  │  │  │  │  │  ├── system_nrf52833.h
│  │  │  │  │  │  │  ├── system_nrf52840.c
│  │  │  │  │  │  │  ├── system_nrf52840.h
│  │  │  │  │  │  │  ├── system_nrf52_approtect.h
│  │  │  │  │  │  │  ├── system_nrf53.h
│  │  │  │  │  │  │  ├── system_nrf5340_application.c
│  │  │  │  │  │  │  ├── system_nrf5340_application.h
│  │  │  │  │  │  │  ├── system_nrf5340_network.c
│  │  │  │  │  │  │  ├── system_nrf5340_network.h
│  │  │  │  │  │  │  ├── system_nrf53_approtect.h
│  │  │  │  │  │  │  ├── system_nrf54h.c
│  │  │  │  │  │  │  ├── system_nrf54h.h
│  │  │  │  │  │  │  ├── system_nrf54l.c
│  │  │  │  │  │  │  ├── system_nrf54l.h
│  │  │  │  │  │  │  ├── system_nrf54l_approtect.h
│  │  │  │  │  │  │  ├── system_nrf7120_enga.c
│  │  │  │  │  │  │  ├── system_nrf7120_enga.h
│  │  │  │  │  │  │  ├── system_nrf7120_enga_approtect.h
│  │  │  │  │  │  │  ├── system_nrf91.c
│  │  │  │  │  │  │  ├── system_nrf91.h
│  │  │  │  │  │  │  ├── system_nrf9120.h
│  │  │  │  │  │  │  ├── system_nrf9160.c
│  │  │  │  │  │  │  ├── system_nrf9160.h
│  │  │  │  │  │  │  ├── system_nrf91_approtect.h
│  │  │  │  │  │  │  ├── system_nrf92.c
│  │  │  │  │  │  │  │ system_nrf92.h
│  │  │  │  │  │  ├── nrfx_bsp.h
│  │  │  │  │  │  ├── nrfx_ext.h
│  │  │  │  │  │  ├── soc
│  │  │  │  │  │  │  ├── interconnect
│  │  │  │  │  │  │  │  ├── ipct
│  │  │  │  │  │  │  │  │  ├── nrfx_interconnect_apb_haltium_ext.h
│  │  │  │  │  │  │  │  │  │ nrfx_interconnect_ipct_haltium_ext.h
│  │  │  │  │  │  │  │  ├── nrfx_gppi_lumos.c
│  │  │  │  │  │  │  │  │ nrfx_gppi_lumos.h
│  │  │  │  │  │  │  ├── irqs
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf51.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf52805.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf52810.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf52811.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf52820.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf52832.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf52833.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf52840.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf5340_application.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf5340_network.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf54h20_application.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf54h20_flpr.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf54h20_ppr.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf54h20_radiocore.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf54l05_application.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf54l05_flpr.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf54l10_application.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf54l10_flpr.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf54l15_application.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf54l15_flpr.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf54lm20a_enga_application.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf54lm20a_enga_flpr.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf54ls05b_enga_application.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf54lv10a_enga_application.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf54lv10a_enga_flpr.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf7120_enga_application.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf7120_enga_flpr.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf91.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf9230_engb_application.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf9230_engb_flpr.h
│  │  │  │  │  │  │  │  ├── nrfx_irqs_nrf9230_engb_ppr.h
│  │  │  │  │  │  │  │  │ nrfx_irqs_nrf9230_engb_radiocore.h
│  │  │  │  │  │  │  ├── nrfx_irqs.h
│  │  │  │  │  │  │  ├── nrfx_irqs_ext.h
│  │  │  │  │  │  │  ├── nrfx_mdk_fixups.h
│  │  │  │  │  │  │  ├── nrfx_mdk_fixups_ext.h
│  │  │  │  │  │  │  │ nrfx_soc_defines.h
│  │  │  │  │  │  ├── templates
│  │  │  │  │  │  │  ├── nrfx_config_ext.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf51.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf52805.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf52810.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf52811.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf52820.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf52832.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf52833.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf52840.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf5340_application.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf5340_network.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf54h20_application.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf54h20_flpr.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf54h20_ppr.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf54h20_radiocore.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf54l05_application.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf54l05_flpr.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf54l10_application.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf54l10_flpr.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf54l15_application.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf54l15_flpr.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf54lm20a_enga_application.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf54lm20a_enga_flpr.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf54ls05b_enga_application.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf54lv10a_enga_application.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf54lv10a_enga_flpr.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf7120_enga_application.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf7120_enga_flpr.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf91.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf9230_engb_application.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf9230_engb_flpr.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf9230_engb_ppr.h
│  │  │  │  │  │  │  ├── nrfx_config_nrf9230_engb_radiocore.h
│  │  │  │  │  │  │  │ nrfx_templates_config.h
│  │  │  │  ├── doc
│  │  │  │  │  ├── buildfiles
│  │  │  │  │  │  │ extra_stylesheet.css
│  │  │  │  │  ├── config_dox
│  │  │  │  │  │  ├── nrfx_clock_dox_config.h
│  │  │  │  │  │  ├── nrfx_gpiote_dox_config.h
│  │  │  │  │  │  ├── nrfx_lpcomp_dox_config.h
│  │  │  │  │  │  ├── nrfx_power_dox_config.h
│  │  │  │  │  │  ├── nrfx_ppi_dox_config.h
│  │  │  │  │  │  ├── nrfx_pwm_dox_config.h
│  │  │  │  │  │  ├── nrfx_qdec_dox_config.h
│  │  │  │  │  │  ├── nrfx_rng_dox_config.h
│  │  │  │  │  │  ├── nrfx_rtc_dox_config.h
│  │  │  │  │  │  ├── nrfx_spi_dox_config.h
│  │  │  │  │  │  ├── nrfx_spim_dox_config.h
│  │  │  │  │  │  ├── nrfx_spis_dox_config.h
│  │  │  │  │  │  ├── nrfx_timer_dox_config.h
│  │  │  │  │  │  ├── nrfx_twi_dox_config.h
│  │  │  │  │  │  ├── nrfx_twim_dox_config.h
│  │  │  │  │  │  ├── nrfx_twis_dox_config.h
│  │  │  │  │  │  ├── nrfx_uart_dox_config.h
│  │  │  │  │  │  ├── nrfx_uarte_dox_config.h
│  │  │  │  │  │  │ nrfx_wdt_dox_config.h
│  │  │  │  │  ├── drv_supp_matrix.dox
│  │  │  │  │  ├── errata.dox
│  │  │  │  │  ├── main_page.dox
│  │  │  │  │  ├── nrf51_series.dox
│  │  │  │  │  ├── nrfx.doxyfile
│  │  │  │  │  │ nrfx_4_0_migration_guide.md
│  │  │  │  ├── drivers
│  │  │  │  │  ├── include
│  │  │  │  │  │  ├── nrfx_adc.h
│  │  │  │  │  │  ├── nrfx_bellboard.h
│  │  │  │  │  │  ├── nrfx_clock.h
│  │  │  │  │  │  ├── nrfx_clock_hfclk.h
│  │  │  │  │  │  ├── nrfx_clock_hfclk192m.h
│  │  │  │  │  │  ├── nrfx_clock_hfclkaudio.h
│  │  │  │  │  │  ├── nrfx_clock_lfclk.h
│  │  │  │  │  │  ├── nrfx_clock_xo.h
│  │  │  │  │  │  ├── nrfx_clock_xo24m.h
│  │  │  │  │  │  ├── nrfx_comp.h
│  │  │  │  │  │  ├── nrfx_cracen.h
│  │  │  │  │  │  ├── nrfx_dppi.h
│  │  │  │  │  │  ├── nrfx_egu.h
│  │  │  │  │  │  ├── nrfx_gpiote.h
│  │  │  │  │  │  ├── nrfx_grtc.h
│  │  │  │  │  │  ├── nrfx_i2s.h
│  │  │  │  │  │  ├── nrfx_ipc.h
│  │  │  │  │  │  ├── nrfx_lpcomp.h
│  │  │  │  │  │  ├── nrfx_mramc.h
│  │  │  │  │  │  ├── nrfx_nfct.h
│  │  │  │  │  │  ├── nrfx_nvmc.h
│  │  │  │  │  │  ├── nrfx_pdm.h
│  │  │  │  │  │  ├── nrfx_power.h
│  │  │  │  │  │  ├── nrfx_power_clock.h
│  │  │  │  │  │  ├── nrfx_ppi.h
│  │  │  │  │  │  ├── nrfx_ppib.h
│  │  │  │  │  │  ├── nrfx_pwm.h
│  │  │  │  │  │  ├── nrfx_qdec.h
│  │  │  │  │  │  ├── nrfx_qspi.h
│  │  │  │  │  │  ├── nrfx_rng.h
│  │  │  │  │  │  ├── nrfx_rramc.h
│  │  │  │  │  │  ├── nrfx_rtc.h
│  │  │  │  │  │  ├── nrfx_saadc.h
│  │  │  │  │  │  ├── nrfx_spi.h
│  │  │  │  │  │  ├── nrfx_spim.h
│  │  │  │  │  │  ├── nrfx_spis.h
│  │  │  │  │  │  ├── nrfx_tbm.h
│  │  │  │  │  │  ├── nrfx_temp.h
│  │  │  │  │  │  ├── nrfx_timer.h
│  │  │  │  │  │  ├── nrfx_twi.h
│  │  │  │  │  │  ├── nrfx_twi_twim.h
│  │  │  │  │  │  ├── nrfx_twim.h
│  │  │  │  │  │  ├── nrfx_twis.h
│  │  │  │  │  │  ├── nrfx_uart.h
│  │  │  │  │  │  ├── nrfx_uarte.h
│  │  │  │  │  │  ├── nrfx_usbd.h
│  │  │  │  │  │  ├── nrfx_vevif.h
│  │  │  │  │  │  │ nrfx_wdt.h
│  │  │  │  │  ├── nrfx_common.h
│  │  │  │  │  ├── nrfx_errata.h
│  │  │  │  │  ├── nrfx_errors.h
│  │  │  │  │  ├── nrfx_utils.h
│  │  │  │  │  ├── nrfx_utils_internal.h
│  │  │  │  │  ├── src
│  │  │  │  │  │  ├── nrfx_adc.c
│  │  │  │  │  │  ├── nrfx_bellboard.c
│  │  │  │  │  │  ├── nrfx_clock.c
│  │  │  │  │  │  ├── nrfx_clock_hfclk.c
│  │  │  │  │  │  ├── nrfx_clock_hfclk192m.c
│  │  │  │  │  │  ├── nrfx_clock_hfclkaudio.c
│  │  │  │  │  │  ├── nrfx_clock_lfclk.c
│  │  │  │  │  │  ├── nrfx_clock_xo.c
│  │  │  │  │  │  ├── nrfx_clock_xo24m.c
│  │  │  │  │  │  ├── nrfx_comp.c
│  │  │  │  │  │  ├── nrfx_comp_common.h
│  │  │  │  │  │  ├── nrfx_cracen.c
│  │  │  │  │  │  ├── nrfx_dppi.c
│  │  │  │  │  │  ├── nrfx_egu.c
│  │  │  │  │  │  ├── nrfx_gpiote.c
│  │  │  │  │  │  ├── nrfx_grtc.c
│  │  │  │  │  │  ├── nrfx_i2s.c
│  │  │  │  │  │  ├── nrfx_ipc.c
│  │  │  │  │  │  ├── nrfx_lpcomp.c
│  │  │  │  │  │  ├── nrfx_lpcomp_common.h
│  │  │  │  │  │  ├── nrfx_mramc.c
│  │  │  │  │  │  ├── nrfx_nfct.c
│  │  │  │  │  │  ├── nrfx_nvmc.c
│  │  │  │  │  │  ├── nrfx_pdm.c
│  │  │  │  │  │  ├── nrfx_power.c
│  │  │  │  │  │  ├── nrfx_ppi.c
│  │  │  │  │  │  ├── nrfx_ppib.c
│  │  │  │  │  │  ├── nrfx_pwm.c
│  │  │  │  │  │  ├── nrfx_qdec.c
│  │  │  │  │  │  ├── nrfx_qspi.c
│  │  │  │  │  │  ├── nrfx_rng.c
│  │  │  │  │  │  ├── nrfx_rramc.c
│  │  │  │  │  │  ├── nrfx_rtc.c
│  │  │  │  │  │  ├── nrfx_saadc.c
│  │  │  │  │  │  ├── nrfx_saadc_common.h
│  │  │  │  │  │  ├── nrfx_spi.c
│  │  │  │  │  │  ├── nrfx_spim.c
│  │  │  │  │  │  ├── nrfx_spis.c
│  │  │  │  │  │  ├── nrfx_systick.c
│  │  │  │  │  │  ├── nrfx_tbm.c
│  │  │  │  │  │  ├── nrfx_temp.c
│  │  │  │  │  │  ├── nrfx_timer.c
│  │  │  │  │  │  ├── nrfx_twi.c
│  │  │  │  │  │  ├── nrfx_twi_twim.c
│  │  │  │  │  │  ├── nrfx_twim.c
│  │  │  │  │  │  ├── nrfx_twis.c
│  │  │  │  │  │  ├── nrfx_uart.c
│  │  │  │  │  │  ├── nrfx_uarte.c
│  │  │  │  │  │  ├── nrfx_usbd.c
│  │  │  │  │  │  ├── nrfx_usbd_errata.h
│  │  │  │  │  │  ├── nrfx_usbreg.c
│  │  │  │  │  │  ├── nrfx_vevif.c
│  │  │  │  │  │  ├── nrfx_wdt.c
│  │  │  │  │  │  ├── prs
│  │  │  │  │  │  │  ├── nrfx_prs.c
│  │  │  │  │  │  │  │ nrfx_prs.h
│  │  │  │  ├── hal
│  │  │  │  │  ├── nrf_aar.h
│  │  │  │  │  ├── nrf_cache.h
│  │  │  │  │  ├── nrf_ccm.h
│  │  │  │  │  ├── nrf_clock.h
│  │  │  │  │  ├── nrf_common.h
│  │  │  │  │  ├── nrf_comp.h
│  │  │  │  │  ├── nrf_ctrlap.h
│  │  │  │  │  ├── nrf_dppi.h
│  │  │  │  │  ├── nrf_ecb.h
│  │  │  │  │  ├── nrf_exmif.h
│  │  │  │  │  ├── nrf_ficr.h
│  │  │  │  │  ├── nrf_gpio.h
│  │  │  │  │  ├── nrf_gpiote.h
│  │  │  │  │  ├── nrf_grtc.h
│  │  │  │  │  ├── nrf_hsfll.h
│  │  │  │  │  ├── nrf_i2s.h
│  │  │  │  │  ├── nrf_lfxo.h
│  │  │  │  │  ├── nrf_lpcomp.h
│  │  │  │  │  ├── nrf_lrcconf.h
│  │  │  │  │  ├── nrf_memconf.h
│  │  │  │  │  ├── nrf_mramc.h
│  │  │  │  │  ├── nrf_mvdma.h
│  │  │  │  │  ├── nrf_nfct.h
│  │  │  │  │  ├── nrf_nvmc.h
│  │  │  │  │  ├── nrf_oscillators.h
│  │  │  │  │  ├── nrf_pdm.h
│  │  │  │  │  ├── nrf_power.h
│  │  │  │  │  ├── nrf_ppi.h
│  │  │  │  │  ├── nrf_qdec.h
│  │  │  │  │  ├── nrf_qspi.h
│  │  │  │  │  ├── nrf_reset.h
│  │  │  │  │  ├── nrf_rramc.h
│  │  │  │  │  ├── nrf_saadc.h
│  │  │  │  │  ├── nrf_spi.h
│  │  │  │  │  ├── nrf_spim.h
│  │  │  │  │  ├── nrf_spis.h
│  │  │  │  │  ├── nrf_tampc.h
│  │  │  │  │  ├── nrf_tdm.h
│  │  │  │  │  ├── nrf_temp.h
│  │  │  │  │  ├── nrf_timer.h
│  │  │  │  │  ├── nrf_twim.h
│  │  │  │  │  ├── nrf_twis.h
│  │  │  │  │  ├── nrf_uarte.h
│  │  │  │  │  ├── nrf_vmc.h
│  │  │  │  │  │ nrf_wdt.h
│  │  │  │  ├── haly
│  │  │  │  │  ├── nrfy_bellboard.h
│  │  │  │  │  ├── nrfy_common.h
│  │  │  │  │  ├── nrfy_comp.h
│  │  │  │  │  ├── nrfy_dppi.h
│  │  │  │  │  ├── nrfy_gpio.h
│  │  │  │  │  ├── nrfy_gpiote.h
│  │  │  │  │  ├── nrfy_grtc.h
│  │  │  │  │  ├── nrfy_i2s.h
│  │  │  │  │  ├── nrfy_lpcomp.h
│  │  │  │  │  ├── nrfy_mramc.h
│  │  │  │  │  ├── nrfy_mvdma.h
│  │  │  │  │  ├── nrfy_nfct.h
│  │  │  │  │  ├── nrfy_pdm.h
│  │  │  │  │  ├── nrfy_pwm.h
│  │  │  │  │  ├── nrfy_qdec.h
│  │  │  │  │  ├── nrfy_rramc.h
│  │  │  │  │  ├── nrfy_rtc.h
│  │  │  │  │  ├── nrfy_saadc.h
│  │  │  │  │  ├── nrfy_spim.h
│  │  │  │  │  ├── nrfy_tbm.h
│  │  │  │  │  ├── nrfy_temp.h
│  │  │  │  │  ├── nrfy_timer.h
│  │  │  │  │  ├── nrfy_twim.h
│  │  │  │  │  ├── nrfy_uarte.h
│  │  │  │  │  ├── nrfy_vpr.h
│  │  │  │  │  │ nrfy_wdt.h
│  │  │  │  ├── helpers
│  │  │  │  │  ├── internal
│  │  │  │  │  │  ├── nrfx_gppiv1.h
│  │  │  │  │  │  ├── nrfx_gppiv1_ipct.c
│  │  │  │  │  │  ├── nrfx_gppiv1_shim.c
│  │  │  │  │  │  ├── nrfx_interconnect_apb_haltium_application.h
│  │  │  │  │  │  ├── nrfx_interconnect_apb_haltium_flpr.h
│  │  │  │  │  │  ├── nrfx_interconnect_apb_haltium_global.h
│  │  │  │  │  │  ├── nrfx_interconnect_apb_haltium_ppr.h
│  │  │  │  │  │  ├── nrfx_interconnect_apb_haltium_radiocore.h
│  │  │  │  │  │  ├── nrfx_interconnect_ipct.h
│  │  │  │  │  │  ├── nrfx_interconnect_ipct_haltium_application.h
│  │  │  │  │  │  ├── nrfx_interconnect_ipct_haltium_flpr.h
│  │  │  │  │  │  ├── nrfx_interconnect_ipct_haltium_global.h
│  │  │  │  │  │  ├── nrfx_interconnect_ipct_haltium_ppr.h
│  │  │  │  │  │  │ nrfx_interconnect_ipct_haltium_radiocore.h
│  │  │  │  │  ├── nrfx_analog_common.h
│  │  │  │  │  ├── nrfx_flag32_allocator.c
│  │  │  │  │  ├── nrfx_flag32_allocator.h
│  │  │  │  │  ├── nrfx_gppi.h
│  │  │  │  │  ├── nrfx_gppi_dppi.c
│  │  │  │  │  ├── nrfx_gppi_dppi_ppib_lumos.c
│  │  │  │  │  ├── nrfx_gppi_ppi.c
│  │  │  │  │  ├── nrfx_gppi_routes.h
│  │  │  │  │  ├── nrfx_ids.h
│  │  │  │  │  ├── nrfx_ram_ctrl.c
│  │  │  │  │  │ nrfx_reset_reason.h
│  │  │  │  ├── lib
│  │  │  │  │  │ nrfx_coredep.h
│  │  │  │  ├── samples
│  │  │  │  │  ├── CHANGELOG.md
│  │  │  │  │  ├── common
│  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  ├── nrf52833dk_nrf52833_config.h
│  │  │  │  │  │  │  ├── nrf52840dk_nrf52840_config.h
│  │  │  │  │  │  │  ├── nrf52dk_nrf52832_config.h
│  │  │  │  │  │  │  ├── nrf5340dk_nrf5340_config.h
│  │  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_config.h
│  │  │  │  │  │  │  │ nrf9160dk_nrf9160_config.h
│  │  │  │  │  │  ├── common.cmake
│  │  │  │  │  │  ├── common.conf
│  │  │  │  │  │  │ nrfx_example.h
│  │  │  │  │  ├── doc
│  │  │  │  │  │  ├── nrfx_examples.doxyfile
│  │  │  │  │  │  │ nrfx_examples_descriptions.dox
│  │  │  │  │  ├── src
│  │  │  │  │  │  ├── README.md
│  │  │  │  │  │  ├── nrfx_cracen
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── README.md
│  │  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  │  │ nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │  │ sample.yaml
│  │  │  │  │  │  ├── nrfx_egu
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── README.md
│  │  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  │  ├── nrf52833dk_nrf52833.conf
│  │  │  │  │  │  │  │  ├── nrf52840dk_nrf52840.conf
│  │  │  │  │  │  │  │  ├── nrf52dk_nrf52832.conf
│  │  │  │  │  │  │  │  ├── nrf5340dk_nrf5340_cpuapp.conf
│  │  │  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp.conf
│  │  │  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  │  │  │ nrf9160dk_nrf9160.conf
│  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │  │ sample.yaml
│  │  │  │  │  │  ├── nrfx_gppi
│  │  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  │  ├── nrf52833dk_nrf52833.conf
│  │  │  │  │  │  │  │  ├── nrf52840dk_nrf52840.conf
│  │  │  │  │  │  │  │  ├── nrf52dk_nrf52832.conf
│  │  │  │  │  │  │  │  ├── nrf5340dk_nrf5340_cpuapp.conf
│  │  │  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp.conf
│  │  │  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  │  │  │ nrf9160dk_nrf9160.conf
│  │  │  │  │  │  │  ├── fork
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── README.md
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │  │  │ sample.yaml
│  │  │  │  │  │  │  ├── one_to_one
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── README.md
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │  │  │ sample.yaml
│  │  │  │  │  │  ├── nrfx_pwm
│  │  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  │  │ nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  │  ├── common_mode
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── README.md
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │  │  │ sample.yaml
│  │  │  │  │  │  │  ├── grouped_mode
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── README.md
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │  │  │ sample.yaml
│  │  │  │  │  │  ├── nrfx_rng
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── README.md
│  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │  │ sample.yaml
│  │  │  │  │  │  ├── nrfx_saadc
│  │  │  │  │  │  │  ├── advanced_blocking
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── README.md
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │  │  │ sample.yaml
│  │  │  │  │  │  │  ├── advanced_non_blocking_internal_timer
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── README.md
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │  │  │ sample.yaml
│  │  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  │  ├── nrf52833dk_nrf52833.conf
│  │  │  │  │  │  │  │  ├── nrf52840dk_nrf52840.conf
│  │  │  │  │  │  │  │  ├── nrf52dk_nrf52832.conf
│  │  │  │  │  │  │  │  ├── nrf5340dk_nrf5340_cpuapp.conf
│  │  │  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp.conf
│  │  │  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  │  │  │ nrf9160dk_nrf9160.conf
│  │  │  │  │  │  │  ├── common
│  │  │  │  │  │  │  │  ├── saadc_examples_common.c
│  │  │  │  │  │  │  │  │ saadc_examples_common.h
│  │  │  │  │  │  │  ├── maximum_performance
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── README.md
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │  │  │ sample.yaml
│  │  │  │  │  │  │  ├── simple_blocking
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── README.md
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │  │  │ sample.yaml
│  │  │  │  │  │  │  ├── simple_non_blocking
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── README.md
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │  │  │ sample.yaml
│  │  │  │  │  │  ├── nrfx_spim
│  │  │  │  │  │  │  ├── blocking
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── README.md
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │  │  │ sample.yaml
│  │  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  │  │ nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  │  ├── non_blocking
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── README.md
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │  │  │ sample.yaml
│  │  │  │  │  │  ├── nrfx_spim_spis
│  │  │  │  │  │  │  ├── advanced_non_blocking
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── README.md
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │  │  │ sample.yaml
│  │  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  │  ├── nrf52833dk_nrf52833.overlay
│  │  │  │  │  │  │  │  ├── nrf5340dk_nrf5340_cpuapp.overlay
│  │  │  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  │  │  │ nrf9160dk_nrf9160.overlay
│  │  │  │  │  │  │  ├── non_blocking
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── README.md
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │  │  │ sample.yaml
│  │  │  │  │  │  ├── nrfx_temp
│  │  │  │  │  │  │  ├── blocking
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── README.md
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  │ sample.yaml
│  │  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  │  │ nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  │  ├── non_blocking
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── README.md
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  │ sample.yaml
│  │  │  │  │  │  ├── nrfx_timer
│  │  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  │  │ nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  │  ├── counter
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── README.md
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │  │  │ sample.yaml
│  │  │  │  │  │  │  ├── timer
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── README.md
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │  │  │ sample.yaml
│  │  │  │  │  │  ├── nrfx_twim_twis
│  │  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  │  ├── nrf52833dk_nrf52833.conf
│  │  │  │  │  │  │  │  ├── nrf52840dk_nrf52840.conf
│  │  │  │  │  │  │  │  ├── nrf52dk_nrf52832.conf
│  │  │  │  │  │  │  │  ├── nrf5340dk_nrf5340_cpuapp.conf
│  │  │  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  │  │  │ nrf9160dk_nrf9160.conf
│  │  │  │  │  │  │  ├── tx_rx_blocking
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── README.md
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │  │  │ sample.yaml
│  │  │  │  │  │  │  ├── tx_rx_non_blocking
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── README.md
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │  │  │ sample.yaml
│  │  │  │  │  │  │  ├── txrx
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── README.md
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │  │  │ sample.yaml
│  │  │  │  │  │  │  ├── txtx
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── README.md
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │  │  │ sample.yaml
│  │  │  │  │  │  ├── nrfx_uarte
│  │  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  │  ├── nrf52833dk_nrf52833.conf
│  │  │  │  │  │  │  │  ├── nrf52833dk_nrf52833.overlay
│  │  │  │  │  │  │  │  ├── nrf52840dk_nrf52840.conf
│  │  │  │  │  │  │  │  ├── nrf52840dk_nrf52840.overlay
│  │  │  │  │  │  │  │  ├── nrf5340dk_nrf5340_cpuapp.conf
│  │  │  │  │  │  │  │  ├── nrf5340dk_nrf5340_cpuapp.overlay
│  │  │  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  │  │  ├── nrf9160dk_nrf9160.conf
│  │  │  │  │  │  │  │  │ nrf9160dk_nrf9160.overlay
│  │  │  │  │  │  │  ├── rx_double_buffered
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── README.md
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │  │  │ sample.yaml
│  │  │  │  │  │  │  ├── tx_rx_non_blocking
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── README.md
│  │  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │  │  │ sample.yaml
│  │  │  │  ├── soc
│  │  │  │  │  ├── interconnect
│  │  │  │  │  │  ├── apb
│  │  │  │  │  │  │  ├── nrfx_interconnect_apb.c
│  │  │  │  │  │  │  │ nrfx_interconnect_apb.h
│  │  │  │  │  │  ├── dppic_ppib
│  │  │  │  │  │  │  ├── nrfx_interconnect_dppic_ppib.c
│  │  │  │  │  │  │  ├── nrfx_interconnect_dppic_ppib.h
│  │  │  │  │  │  │  │ nrfx_interconnect_dppic_ppib_lumos.h
│  │  │  │  │  │  ├── ipct
│  │  │  │  │  │  │  ├── nrfx_interconnect_ipct.c
│  │  │  │  │  │  │  │ nrfx_interconnect_ipct.h
│  │  │  │  ├── templates
│  │  │  │  │  ├── nrfx_config_common.h
│  │  │  │  │  │ nrfx_glue.h
│  ├── lib
│  │  ├── hostap
│  │  │  ├── hostapd
│  │  │  │  ├── hostapd_cli_zephyr.c
│  │  │  │  │ hostapd_cli_zephyr.h
│  │  │  ├── src
│  │  │  │  ├── ap
│  │  │  │  │  │ hostapd.h
│  │  │  │  ├── common
│  │  │  │  │  │ wpa_ctrl.h
│  │  │  │  ├── crypto
│  │  │  │  │  ├── crypto_mbedtls_alt.c
│  │  │  │  │  │ tls_mbedtls_alt.c
│  │  │  │  ├── drivers
│  │  │  │  │  ├── driver_zephyr.c
│  │  │  │  │  │ driver_zephyr.h
│  │  │  │  ├── utils
│  │  │  │  │  ├── includes.h
│  │  │  │  │  │ os_zephyr.c
│  │  │  ├── wpa_supplicant
│  │  │  │  ├── wpa_cli.c
│  │  │  │  ├── wpa_cli_cmds.c
│  │  │  │  ├── wpa_cli_zephyr.c
│  │  │  │  ├── wpa_cli_zephyr.h
│  │  │  │  ├── wpa_supplicant.c
│  │  │  │  │ wpa_supplicant_i.h
│  ├── tee
│  │  ├── tf-m
│  │  │  ├── trusted-firmware-m
│  │  │  │  ├── bl1
│  │  │  │  │  ├── bl1_2
│  │  │  │  │  │  ├── lib
│  │  │  │  │  │  │  ├── image.c
│  │  │  │  │  │  │  ├── interface
│  │  │  │  │  │  │  │  │ image.h
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── bl2
│  │  │  │  │  │ CMakeLists.txt
│  │  │  │  ├── interface
│  │  │  │  │  ├── include
│  │  │  │  │  │  ├── mbedtls
│  │  │  │  │  │  │  ├── bignum.h
│  │  │  │  │  │  │  ├── build_info.h
│  │  │  │  │  │  │  ├── cipher.h
│  │  │  │  │  │  │  ├── config_psa.h
│  │  │  │  │  │  │  ├── dhm.h
│  │  │  │  │  │  │  ├── ecdh.h
│  │  │  │  │  │  │  ├── ecdsa.h
│  │  │  │  │  │  │  ├── ecjpake.h
│  │  │  │  │  │  │  ├── ecp.h
│  │  │  │  │  │  │  ├── lms.h
│  │  │  │  │  │  │  ├── pk.h
│  │  │  │  │  │  │  ├── platform_util.h
│  │  │  │  │  │  │  ├── psa_util.h
│  │  │  │  │  │  │  ├── rsa.h
│  │  │  │  │  │  │  ├── ssl.h
│  │  │  │  │  │  │  ├── ssl_cookie.h
│  │  │  │  │  │  │  ├── ssl_ticket.h
│  │  │  │  │  │  │  ├── threading.h
│  │  │  │  │  │  │  ├── x509.h
│  │  │  │  │  │  │  ├── x509_crt.h
│  │  │  │  │  │  │  │ x509_csr.h
│  │  │  │  │  │  ├── psa
│  │  │  │  │  │  │  ├── crypto.h
│  │  │  │  │  │  │  │ crypto_extra.h
│  │  │  │  ├── platform
│  │  │  │  │  ├── ext
│  │  │  │  │  │  ├── accelerator
│  │  │  │  │  │  │  ├── cc312
│  │  │  │  │  │  │  │  │ otp_cc312.c
│  │  │  │  │  │  ├── common
│  │  │  │  │  │  │  ├── provisioning.c
│  │  │  │  │  │  │  ├── provisioning_bundle
│  │  │  │  │  │  │  │  │ provisioning_bundle.h
│  │  │  │  │  │  │  ├── template
│  │  │  │  │  │  │  │  ├── attest_hal.c
│  │  │  │  │  │  │  │  │ flash_otp_nv_counters_backend.h
│  │  │  │  │  │  ├── target
│  │  │  │  │  │  │  ├── arm
│  │  │  │  │  │  │  │  ├── mps4
│  │  │  │  │  │  │  │  │  ├── common
│  │  │  │  │  │  │  │  │  │  ├── attest_hal.c
│  │  │  │  │  │  │  │  │  │  ├── bl1
│  │  │  │  │  │  │  │  │  │  │  │ boot_hal_bl1_1.c
│  │  │  │  │  │  │  │  │  │  ├── common.cmake
│  │  │  │  │  │  │  │  │  │  ├── otp_lcm.c
│  │  │  │  │  │  │  │  │  │  ├── provisioning
│  │  │  │  │  │  │  │  │  │  │  ├── bundle_common
│  │  │  │  │  │  │  │  │  │  │  │  │ provisioning_bundle.h
│  │  │  │  │  │  │  │  ├── rse
│  │  │  │  │  │  │  │  │  ├── common
│  │  │  │  │  │  │  │  │  │  │ attest_hal.c
│  │  │  │  │  │  │  ├── armchina
│  │  │  │  │  │  │  │  ├── mps3
│  │  │  │  │  │  │  │  │  ├── common
│  │  │  │  │  │  │  │  │  │  ├── provisioning
│  │  │  │  │  │  │  │  │  │  │  │ provisioning_bundle.h
│  │  │  │  │  │  │  ├── nordic_nrf
│  │  │  │  │  │  │  │  ├── common
│  │  │  │  │  │  │  │  │  ├── core
│  │  │  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  ├── cmsis_drivers
│  │  │  │  │  │  │  │  │  │  │  ├── Driver_Flash.c
│  │  │  │  │  │  │  │  │  │  │  │ Driver_USART.c
│  │  │  │  │  │  │  │  │  │  ├── common
│  │  │  │  │  │  │  │  │  │  │  ├── cmsis.h
│  │  │  │  │  │  │  │  │  │  │  ├── nrf-pinctrl.h
│  │  │  │  │  │  │  │  │  │  │  ├── nrfx_glue.h
│  │  │  │  │  │  │  │  │  │  │  │ tfm-pinctrl.h
│  │  │  │  │  │  │  │  │  │  ├── config.cmake
│  │  │  │  │  │  │  │  │  │  ├── hw_init.c
│  │  │  │  │  │  │  │  │  │  ├── nrfx_config.h
│  │  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  ├── secure_peripherals_defs.c
│  │  │  │  │  │  │  │  │  │  ├── services
│  │  │  │  │  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │  │  │  │  ├── tfm_ioctl_core_ns_api.c
│  │  │  │  │  │  │  │  │  │  │  │  ├── tfm_ioctl_core_s_api.c
│  │  │  │  │  │  │  │  │  │  │  │  │ tfm_platform_hal_ioctl.c
│  │  │  │  │  │  │  │  │  │  ├── startup.h
│  │  │  │  │  │  │  │  │  │  ├── startup_nrf54l_common.c
│  │  │  │  │  │  │  │  │  │  ├── startup_nrf54l_common.h
│  │  │  │  │  │  │  │  │  │  ├── startup_nrf54lm.c
│  │  │  │  │  │  │  │  │  │  ├── startup_nrf54lv.c
│  │  │  │  │  │  │  │  │  │  ├── startup_nrf54lx.c
│  │  │  │  │  │  │  │  │  │  ├── startup_nrf7120.c
│  │  │  │  │  │  │  │  │  │  ├── target_cfg.c
│  │  │  │  │  │  │  │  │  │  ├── target_cfg.h
│  │  │  │  │  │  │  │  │  │  ├── target_cfg_53_91.c
│  │  │  │  │  │  │  │  │  │  ├── target_cfg_54l.c
│  │  │  │  │  │  │  │  │  │  │ target_cfg_71.c
│  │  │  │  │  │  │  │  │  ├── nrf5340
│  │  │  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  ├── memory_service_ranges
│  │  │  │  │  │  │  │  │  │  │  │ tfm_platform_user_memory_ranges.h
│  │  │  │  │  │  │  │  │  │  ├── nrfx_config_nrf5340_application.h
│  │  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  │ tfm_peripherals_config_nrf5340_application.h
│  │  │  │  │  │  │  │  │  ├── nrf54l
│  │  │  │  │  │  │  │  │  │  ├── config.cmake
│  │  │  │  │  │  │  │  │  │  ├── mmio_defs.h
│  │  │  │  │  │  │  │  │  │  ├── nrf54l_init.c
│  │  │  │  │  │  │  │  │  │  ├── nrfx_config_nrf54l.h
│  │  │  │  │  │  │  │  │  │  ├── tfm_interrupts.c
│  │  │  │  │  │  │  │  │  │  ├── tfm_peripherals_config_nrf54l.h
│  │  │  │  │  │  │  │  │  │  │ tfm_peripherals_def.h
│  │  │  │  │  │  │  │  │  ├── nrf54l10
│  │  │  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  ├── config.cmake
│  │  │  │  │  │  │  │  │  │  ├── memory_service_ranges
│  │  │  │  │  │  │  │  │  │  │  │ tfm_platform_user_memory_ranges.h
│  │  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  ├── partition
│  │  │  │  │  │  │  │  │  │  │  │ region_defs.h
│  │  │  │  │  │  │  │  │  ├── nrf54l15
│  │  │  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  ├── config.cmake
│  │  │  │  │  │  │  │  │  │  ├── memory_service_ranges
│  │  │  │  │  │  │  │  │  │  │  │ tfm_platform_user_memory_ranges.h
│  │  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  ├── partition
│  │  │  │  │  │  │  │  │  │  │  │ region_defs.h
│  │  │  │  │  │  │  │  │  ├── nrf54lm20a
│  │  │  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  ├── config.cmake
│  │  │  │  │  │  │  │  │  │  ├── cpuarch.cmake
│  │  │  │  │  │  │  │  │  │  ├── memory_service_ranges
│  │  │  │  │  │  │  │  │  │  │  │ tfm_platform_user_memory_ranges.h
│  │  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  ├── partition
│  │  │  │  │  │  │  │  │  │  │  ├── flash_layout.h
│  │  │  │  │  │  │  │  │  │  │  │ region_defs.h
│  │  │  │  │  │  │  │  │  │  ├── tests
│  │  │  │  │  │  │  │  │  │  │  │ psa_arch_tests_config.cmake
│  │  │  │  │  │  │  │  │  ├── nrf54lv10a
│  │  │  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  ├── config.cmake
│  │  │  │  │  │  │  │  │  │  ├── cpuarch.cmake
│  │  │  │  │  │  │  │  │  │  ├── memory_service_ranges
│  │  │  │  │  │  │  │  │  │  │  │ tfm_platform_user_memory_ranges.h
│  │  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  ├── partition
│  │  │  │  │  │  │  │  │  │  │  ├── flash_layout.h
│  │  │  │  │  │  │  │  │  │  │  │ region_defs.h
│  │  │  │  │  │  │  │  │  │  ├── tests
│  │  │  │  │  │  │  │  │  │  │  │ psa_arch_tests_config.cmake
│  │  │  │  │  │  │  │  │  ├── nrf7120
│  │  │  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  ├── config.cmake
│  │  │  │  │  │  │  │  │  │  ├── cpuarch.cmake
│  │  │  │  │  │  │  │  │  │  ├── mmio_defs.h
│  │  │  │  │  │  │  │  │  │  ├── nrf71_init.c
│  │  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  ├── partition
│  │  │  │  │  │  │  │  │  │  │  ├── flash_layout.h
│  │  │  │  │  │  │  │  │  │  │  │ region_defs.h
│  │  │  │  │  │  │  │  │  │  ├── tests
│  │  │  │  │  │  │  │  │  │  │  │ psa_arch_tests_config.cmake
│  │  │  │  │  │  │  │  │  │  ├── tfm_interrupts.c
│  │  │  │  │  │  │  │  │  │  ├── tfm_peripherals_config_nrf71.h
│  │  │  │  │  │  │  │  │  │  │ tfm_peripherals_def.h
│  │  │  │  │  │  │  │  │  ├── nrf91
│  │  │  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  ├── memory_service_ranges
│  │  │  │  │  │  │  │  │  │  │  │ tfm_platform_user_memory_ranges.h
│  │  │  │  │  │  │  │  │  │  ├── nrfx_config_nrf91.h
│  │  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  │ tfm_peripherals_config_nrf91.h
│  │  │  │  │  │  │  │  ├── nrf5340dk_nrf5340_cpuapp
│  │  │  │  │  │  │  │  │  ├── RTE_Device.h
│  │  │  │  │  │  │  │  │  ├── cpuarch.cmake
│  │  │  │  │  │  │  │  │  ├── services
│  │  │  │  │  │  │  │  │  │  ├── include
│  │  │  │  │  │  │  │  │  │  │  │ tfm_platform_user_memory_ranges.h
│  │  │  │  │  │  │  │  ├── nrf54l15dk_nrf54l10_cpuapp
│  │  │  │  │  │  │  │  │  ├── config.cmake
│  │  │  │  │  │  │  │  │  ├── cpuarch.cmake
│  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │ cpuarch_ns.cmake
│  │  │  │  │  │  │  │  │  ├── services
│  │  │  │  │  │  │  │  │  │  ├── include
│  │  │  │  │  │  │  │  │  │  │  │ tfm_platform_user_memory_ranges.h
│  │  │  │  │  │  │  │  │  │ tfm_peripherals_config.h
│  │  │  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp
│  │  │  │  │  │  │  │  │  ├── config.cmake
│  │  │  │  │  │  │  │  │  ├── cpuarch.cmake
│  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │ cpuarch_ns.cmake
│  │  │  │  │  │  │  │  │  ├── services
│  │  │  │  │  │  │  │  │  │  ├── include
│  │  │  │  │  │  │  │  │  │  │  │ tfm_platform_user_memory_ranges.h
│  │  │  │  │  │  │  │  │  │ tfm_peripherals_config.h
│  │  │  │  │  │  │  │  ├── nrf54lm20dk_nrf54lm20a_cpuapp
│  │  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │  ├── RTE_Device.h
│  │  │  │  │  │  │  │  │  ├── config.cmake
│  │  │  │  │  │  │  │  │  ├── cpuarch.cmake
│  │  │  │  │  │  │  │  │  ├── device_cfg.h
│  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │ cpuarch_ns.cmake
│  │  │  │  │  │  │  │  │  ├── services
│  │  │  │  │  │  │  │  │  │  ├── include
│  │  │  │  │  │  │  │  │  │  │  │ tfm_platform_user_memory_ranges.h
│  │  │  │  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │  │  │  │ tfm_platform_system.c
│  │  │  │  │  │  │  │  │  ├── tests
│  │  │  │  │  │  │  │  │  │  ├── psa_arch_tests_config.cmake
│  │  │  │  │  │  │  │  │  │  │ tfm_tests_config.cmake
│  │  │  │  │  │  │  │  │  ├── tfm_hal_platform.c
│  │  │  │  │  │  │  │  │  │ tfm_peripherals_config.h
│  │  │  │  │  │  │  │  ├── nrf54lv10dk_nrf54lv10a_cpuapp
│  │  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │  ├── RTE_Device.h
│  │  │  │  │  │  │  │  │  ├── config.cmake
│  │  │  │  │  │  │  │  │  ├── cpuarch.cmake
│  │  │  │  │  │  │  │  │  ├── device_cfg.h
│  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │ cpuarch_ns.cmake
│  │  │  │  │  │  │  │  │  ├── services
│  │  │  │  │  │  │  │  │  │  ├── include
│  │  │  │  │  │  │  │  │  │  │  │ tfm_platform_user_memory_ranges.h
│  │  │  │  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │  │  │  │ tfm_platform_system.c
│  │  │  │  │  │  │  │  │  ├── tests
│  │  │  │  │  │  │  │  │  │  ├── psa_arch_tests_config.cmake
│  │  │  │  │  │  │  │  │  │  │ tfm_tests_config.cmake
│  │  │  │  │  │  │  │  │  ├── tfm_hal_platform.c
│  │  │  │  │  │  │  │  │  │ tfm_peripherals_config.h
│  │  │  │  │  │  │  │  ├── nrf7120pdk_nrf7120_cpuapp
│  │  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │  ├── RTE_Device.h
│  │  │  │  │  │  │  │  │  ├── config.cmake
│  │  │  │  │  │  │  │  │  ├── cpuarch.cmake
│  │  │  │  │  │  │  │  │  ├── device_cfg.h
│  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │ cpuarch_ns.cmake
│  │  │  │  │  │  │  │  │  ├── services
│  │  │  │  │  │  │  │  │  │  ├── include
│  │  │  │  │  │  │  │  │  │  │  │ tfm_platform_user_memory_ranges.h
│  │  │  │  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │  │  │  │ tfm_platform_system.c
│  │  │  │  │  │  │  │  │  ├── tests
│  │  │  │  │  │  │  │  │  │  ├── psa_arch_tests_config.cmake
│  │  │  │  │  │  │  │  │  │  │ tfm_tests_config.cmake
│  │  │  │  │  │  │  │  │  ├── tfm_hal_platform.c
│  │  │  │  │  │  │  │  │  │ tfm_peripherals_config.h
│  │  │  │  │  │  │  │  ├── nrf9160dk_nrf9160
│  │  │  │  │  │  │  │  │  ├── RTE_Device.h
│  │  │  │  │  │  │  │  │  ├── cpuarch.cmake
│  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │ cpuarch_ns.cmake
│  │  │  │  │  │  │  │  │  ├── services
│  │  │  │  │  │  │  │  │  │  ├── include
│  │  │  │  │  │  │  │  │  │  │  │ tfm_platform_user_memory_ranges.h
│  │  │  │  │  │  │  │  ├── nrf9161dk_nrf9161
│  │  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │  ├── RTE_Device.h
│  │  │  │  │  │  │  │  │  ├── config.cmake
│  │  │  │  │  │  │  │  │  ├── cpuarch.cmake
│  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  │ cpuarch_ns.cmake
│  │  │  │  │  │  │  │  │  ├── services
│  │  │  │  │  │  │  │  │  │  ├── include
│  │  │  │  │  │  │  │  │  │  │  │ tfm_platform_user_memory_ranges.h
│  │  │  │  │  │  │  ├── stm
│  │  │  │  │  │  │  │  ├── common
│  │  │  │  │  │  │  │  │  ├── stm32h5xx
│  │  │  │  │  │  │  │  │  │  ├── bl2
│  │  │  │  │  │  │  │  │  │  │  │ boot_hal_bl2.c
│  │  │  │  │  │  │  │  │  │  ├── secure
│  │  │  │  │  │  │  │  │  │  │  ├── target_cfg.c
│  │  │  │  │  │  │  │  │  │  │  │ tfm_hal_isolation.c
│  │  │  │  │  │  │  │  │  ├── stm32u5xx
│  │  │  │  │  │  │  │  │  │  ├── bl2
│  │  │  │  │  │  │  │  │  │  │  │ boot_hal_bl2.c
│  │  │  │  │  ├── include
│  │  │  │  │  │  │ tfm_attest_hal.h
│  │  │  │  ├── secure_fw
│  │  │  │  │  ├── partitions
│  │  │  │  │  │  ├── initial_attestation
│  │  │  │  │  │  │  │ attest_core.c
│  │  │  │  │  │  ├── ns_agent_tz
│  │  │  │  │  │  │  ├── load_info_ns_agent_tz.c
│  │  │  │  │  │  │  ├── ns_agent_tz.c
│  │  │  │  │  │  │  ├── ns_agent_tz_v80m.c
│  │  │  │  │  │  │  │ psa_api_veneers_v80m.c
│  │  │  │  │  ├── spm
│  │  │  │  │  │  ├── core
│  │  │  │  │  │  │  ├── arch
│  │  │  │  │  │  │  │  ├── tfm_arch.c
│  │  │  │  │  │  │  │  ├── tfm_arch_v6m_v7m.c
│  │  │  │  │  │  │  │  ├── tfm_arch_v8m_base.c
│  │  │  │  │  │  │  │  │ tfm_arch_v8m_main.c
│  │  │  │  │  │  │  ├── backend_ipc.c
│  │  │  │  │  │  │  ├── backend_sfn.c
│  │  │  │  │  │  │  ├── psa_interface_svc.c
│  │  │  │  │  │  │  ├── psa_interface_thread_fn_call.c
│  │  │  │  │  │  │  ├── spm_local_connection.c
│  │  │  │  │  │  │  │ tfm_pools.h
west.yml
zephyr
│  ├── .github
│  │  ├── test-spec.yml
│  │  ├── workflows
│  │  │  ├── commit-tags.yml
│  │  │  ├── compliance.yml
│  │  │  │ manifest-PR.yml
│  ├── Jenkinsfile
│  ├── Kconfig.zephyr
│  ├── MAINTAINERS.yml
│  ├── arch
│  │  ├── arm
│  │  │  ├── core
│  │  │  │  ├── cortex_m
│  │  │  │  │  ├── pm_s2ram.c
│  │  │  │  │  │ reset.S
│  │  │  │  ├── mpu
│  │  │  │  │  │ arm_mpu_regions.c
│  │  ├── common
│  │  │  │ CMakeLists.txt
│  │  ├── riscv
│  │  │  ├── core
│  │  │  │  │ irq_manage.c
│  ├── boards
│  │  ├── ezurio
│  │  │  ├── bl54l15_dvk
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── bl54l15_dvk_nrf54l10_cpuapp_ns_defconfig
│  │  │  │  │ bl54l15_dvk_nrf54l15_cpuapp_ns_defconfig
│  │  │  ├── bl54l15u_dvk
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  │ bl54l15u_dvk_nrf54l15_cpuapp_ns_defconfig
│  │  ├── index.rst
│  │  ├── native
│  │  │  ├── nrf_bsim
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig
│  │  │  │  ├── common
│  │  │  │  │  ├── cmsis
│  │  │  │  │  │  │ cmsis.h
│  │  │  │  ├── gpiote_nrfx_bsim.c
│  │  │  │  ├── soc
│  │  │  │  │  │ soc_secure.h
│  │  ├── nordic
│  │  │  ├── nrf54h20dk
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  ├── board.yml
│  │  │  │  ├── nrf54h20dk_nrf54h20-memory_map.dtsi
│  │  │  │  ├── nrf54h20dk_nrf54h20-pinctrl.dtsi
│  │  │  │  ├── nrf54h20dk_nrf54h20_cpuapp.dts
│  │  │  │  ├── nrf54h20dk_nrf54h20_cpuppr_0_9_0.yaml
│  │  │  │  ├── nrf54h20dk_nrf54h20_cpuppr_xip_0_9_0.yaml
│  │  │  │  ├── nrf54h20dk_nrf54h20_cpurad.dts
│  │  │  │  ├── support
│  │  │  │  │  ├── nrf54h20_cpuapp.JLinkScript
│  │  │  │  │  │ nrf54h20_cpurad.JLinkScript
│  │  │  ├── nrf54l15dk
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── nrf54l15dk_nrf54l10_cpuapp_ns_defconfig
│  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp.yaml
│  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp_ns.yaml
│  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp_ns_defconfig
│  │  │  │  │ nrf54l15dk_nrf54l15_cpuflpr.dts
│  │  │  ├── nrf54lm20dk
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── Kconfig.nrf54lm20dk
│  │  │  │  ├── board.cmake
│  │  │  │  ├── board.yml
│  │  │  │  ├── nrf54lm20a_cpuapp_common.dtsi
│  │  │  │  ├── nrf54lm20dk_nrf54lm20a_cpuapp.dts
│  │  │  │  ├── nrf54lm20dk_nrf54lm20a_cpuapp_ns.dts
│  │  │  │  ├── nrf54lm20dk_nrf54lm20a_cpuapp_ns.yaml
│  │  │  │  │ nrf54lm20dk_nrf54lm20a_cpuapp_ns_defconfig
│  │  │  ├── nrf7002dk
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── Kconfig.nrf7002dk
│  │  │  │  ├── board.cmake
│  │  │  │  ├── board.yml
│  │  │  │  ├── nrf7002dk_nrf5340_cpuapp_nrf7001_ns.dts
│  │  │  │  ├── nrf7002dk_nrf5340_cpuapp_nrf7001_ns.yaml
│  │  │  │  ├── nrf7002dk_nrf5340_cpuapp_nrf7001_ns_defconfig
│  │  │  │  ├── nrf7002dk_nrf5340_cpuapp_ns.dts
│  │  │  │  ├── nrf7002dk_nrf5340_cpuapp_ns.yaml
│  │  │  │  │ nrf7002dk_nrf5340_cpuapp_ns_defconfig
│  │  │  ├── nrf9131ek
│  │  │  │  │ Kconfig.defconfig
│  │  │  ├── nrf9280pdk
│  │  │  │  ├── nrf9280pdk_nrf9280-memory_map.dtsi
│  │  │  │  ├── nrf9280pdk_nrf9280-memory_map_iron.dtsi
│  │  │  │  ├── nrf9280pdk_nrf9280_cpuapp.dts
│  │  │  │  ├── nrf9280pdk_nrf9280_cpuapp_iron_0_2_0.overlay
│  │  │  │  ├── nrf9280pdk_nrf9280_cpuppr_xip_0_2_0.overlay
│  │  │  │  │ nrf9280pdk_nrf9280_cpurad.dts
│  │  │  ├── thingy53
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  ├── pm_static_thingy53_nrf5340_cpuapp.yml
│  │  │  │  ├── pm_static_thingy53_nrf5340_cpuapp_ns.yml
│  │  │  │  │ thingy53_nrf5340_common.dtsi
│  │  ├── panasonic
│  │  │  ├── panb611evb
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  │ panb611evb_nrf54l15_cpuapp_ns_defconfig
│  │  ├── raytac
│  │  │  ├── an54l15q_db
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  │ raytac_an54l15q_db_nrf54l15_cpuapp_ns_defconfig
│  │  ├── seeed
│  │  │  ├── xiao_ble
│  │  │  │  │ pm_static.yml
│  │  │  ├── xiao_nrf54l15
│  │  │  │  │ Kconfig.defconfig
│  │  ├── shields
│  │  │  ├── nrf7002eb2
│  │  │  │  ├── Kconfig.shield
│  │  │  │  ├── boards
│  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │ nrf54lm20dk_nrf54lm20a_cpuapp.overlay
│  │  │  │  ├── doc
│  │  │  │  │  ├── index.rst
│  │  │  │  │  │ nrf7002eb2.jpg
│  │  │  │  ├── nrf7002eb2.overlay
│  │  │  │  ├── nrf7002eb2_coex.overlay
│  │  │  │  ├── nrf7002eb2_common.dtsi
│  │  │  │  ├── nrf7002eb2_common_5g.dtsi
│  │  │  │  ├── nrf7002eb2_gpio_pins_1.dtsi
│  │  │  │  ├── nrf7002eb2_gpio_pins_2.dtsi
│  │  │  │  ├── nrf7002eb2_nrf7000.overlay
│  │  │  │  ├── nrf7002eb2_nrf7001.overlay
│  │  │  │  │ shield.yml
│  │  ├── we
│  │  │  ├── ophelia4ev
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── ophelia4ev_nrf54l15_cpuapp.dts
│  │  │  │  ├── ophelia4ev_nrf54l15_cpuapp_defconfig
│  │  │  │  │ ophelia4ev_nrf54l15_cpuflpr.yaml
│  ├── cmake
│  │  ├── linker
│  │  │  ├── arcmwdt
│  │  │  │  │ linker_flags.cmake
│  │  │  ├── armlink
│  │  │  │  │ linker_flags.cmake
│  │  │  ├── iar
│  │  │  │  │ linker_flags.cmake
│  │  │  ├── ld
│  │  │  │  ├── linker_flags.cmake
│  │  │  │  │ target.cmake
│  │  │  ├── lld
│  │  │  │  │ target.cmake
│  │  │  ├── xt-ld
│  │  │  │  │ linker_flags.cmake
│  │  ├── modules
│  │  │  ├── extensions.cmake
│  │  │  ├── kconfig.cmake
│  │  │  │ kernel.cmake
│  ├── doc
│  │  ├── _extensions
│  │  │  ├── zephyr
│  │  │  │  ├── kconfig
│  │  │  │  │  │ __init__.py
│  │  ├── build
│  │  │  ├── kconfig
│  │  │  │  │ setting.rst
│  │  ├── connectivity
│  │  │  ├── bluetooth
│  │  │  │  ├── api
│  │  │  │  │  ├── hci.txt
│  │  │  │  │  ├── l2cap.rst
│  │  │  │  │  ├── mesh
│  │  │  │  │  │  │ provisioning.rst
│  │  │  ├── networking
│  │  │  │  ├── api
│  │  │  │  │  ├── mqtt.rst
│  │  │  │  │  │ wifi.rst
│  │  ├── develop
│  │  │  ├── application
│  │  │  │  │ index.rst
│  │  ├── hardware
│  │  │  ├── peripherals
│  │  │  │  │ mspi.rst
│  │  ├── kconfig.rst
│  │  ├── releases
│  │  │  ├── migration-guide-4.3.rst
│  │  │  ├── migration-guide-4.4.rst
│  │  │  ├── release-notes-4.3.rst
│  │  │  │ release-notes-4.4.rst
│  │  ├── services
│  │  │  ├── logging
│  │  │  │  │ cs_stm.rst
│  ├── drivers
│  │  ├── adc
│  │  │  ├── Kconfig.ad405x
│  │  │  ├── adc_nrfx_adc.c
│  │  │  │ adc_nrfx_saadc.c
│  │  ├── audio
│  │  │  ├── Kconfig.dmic_pdm_nrfx
│  │  │  │ dmic_nrfx_pdm.c
│  │  ├── bluetooth
│  │  │  ├── Kconfig
│  │  │  ├── hci
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.esp32
│  │  │  │  ├── h4.c
│  │  │  │  │ hci_spi_st.c
│  │  ├── cache
│  │  │  ├── Kconfig.nrf
│  │  │  │ Kconfig.stm32
│  │  ├── can
│  │  │  ├── Kconfig.mcan
│  │  │  ├── can_mcan.c
│  │  │  ├── can_nrf.c
│  │  │  │ can_tcan4x5x.c
│  │  ├── clock_control
│  │  │  ├── clock_control_nrf.c
│  │  │  │ clock_control_nrf_lfclk.c
│  │  ├── comparator
│  │  │  ├── comparator_nrf_common.h
│  │  │  ├── comparator_nrf_comp.c
│  │  │  │ comparator_nrf_lpcomp.c
│  │  ├── counter
│  │  │  ├── Kconfig.nrfx
│  │  │  ├── counter_nrfx_rtc.c
│  │  │  │ counter_nrfx_timer.c
│  │  ├── debug
│  │  │  ├── CMakeLists.txt
│  │  │  ├── Kconfig
│  │  │  ├── Kconfig.nrf
│  │  │  ├── coresight_arm.h
│  │  │  ├── debug_coresight_nrf.c
│  │  │  │ debug_nrf_etr.c
│  │  ├── disk
│  │  │  │ flashdisk.c
│  │  ├── display
│  │  │  ├── Kconfig.nrf_led_matrix
│  │  │  │ display_nrf_led_matrix.c
│  │  ├── entropy
│  │  │  ├── Kconfig.psa_crypto
│  │  │  │ entropy_nrf_cracen.c
│  │  ├── flash
│  │  │  ├── Kconfig.nrf
│  │  │  ├── Kconfig.nrf_rram
│  │  │  ├── flash_mspi_nor.c
│  │  │  ├── flash_mspi_nor.h
│  │  │  ├── flash_mspi_nor_quirks.h
│  │  │  ├── nrf_qspi_nor.c
│  │  │  ├── soc_flash_nrf.c
│  │  │  ├── soc_flash_nrf_mramc.c
│  │  │  │ soc_flash_nrf_rram.c
│  │  ├── gpio
│  │  │  │ gpio_nrfx.c
│  │  ├── i2c
│  │  │  ├── Kconfig.nrfx
│  │  │  ├── i2c_nrfx_twi.c
│  │  │  ├── i2c_nrfx_twi_common.c
│  │  │  ├── i2c_nrfx_twim.c
│  │  │  ├── i2c_nrfx_twim_common.c
│  │  │  ├── i2c_nrfx_twim_common.h
│  │  │  ├── i2c_nrfx_twim_rtio.c
│  │  │  │ i2c_nrfx_twis.c
│  │  ├── i2s
│  │  │  ├── Kconfig.nrfx
│  │  │  ├── i2s_nrf_tdm.c
│  │  │  │ i2s_nrfx.c
│  │  ├── ieee802154
│  │  │  │ ieee802154_nrf5.c
│  │  ├── misc
│  │  │  ├── CMakeLists.txt
│  │  │  ├── Kconfig
│  │  │  ├── coresight
│  │  │  │  │ CMakeLists.txt
│  │  │  ├── nordic_vpr_launcher
│  │  │  │  │ Kconfig
│  │  ├── modem
│  │  │  ├── CMakeLists.txt
│  │  │  ├── Kconfig.at_shell
│  │  │  ├── modem_at_shell.c
│  │  │  ├── modem_at_user_pipe.c
│  │  │  │ modem_cellular.c
│  │  ├── mspi
│  │  │  ├── Kconfig
│  │  │  ├── Kconfig.dw
│  │  │  ├── mspi_dw.c
│  │  │  ├── mspi_dw.h
│  │  │  │ mspi_dw_vendor_specific.h
│  │  ├── pinctrl
│  │  │  │ pinctrl_nrf.c
│  │  ├── power_domain
│  │  │  ├── CMakeLists.txt
│  │  │  ├── Kconfig
│  │  │  ├── Kconfig.nrf_gpio_pad_group
│  │  │  ├── Kconfig.nrfs_gdpwr
│  │  │  ├── Kconfig.nrfs_swext
│  │  │  ├── Kconfig.silabs_siwx91x
│  │  │  ├── power_domain_nrf_gpio_pad_group.c
│  │  │  ├── power_domain_nrfs_swext.c
│  │  │  │ power_domain_silabs_siwx91x.c
│  │  ├── pwm
│  │  │  ├── Kconfig.nrfx
│  │  │  ├── pwm_nrf_sw.c
│  │  │  │ pwm_nrfx.c
│  │  ├── sensor
│  │  │  ├── nordic
│  │  │  │  ├── qdec_nrfx
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  │ qdec_nrfx.c
│  │  ├── serial
│  │  │  ├── Kconfig.nrfx
│  │  │  ├── Kconfig.nrfx_uart_instance
│  │  │  │ uart_nrfx_uarte.c
│  │  ├── spi
│  │  │  ├── Kconfig.nrfx
│  │  │  ├── spi_dw.c
│  │  │  ├── spi_nrfx_common.c
│  │  │  ├── spi_nrfx_common.h
│  │  │  ├── spi_nrfx_spi.c
│  │  │  ├── spi_nrfx_spim.c
│  │  │  │ spi_nrfx_spis.c
│  │  ├── timer
│  │  │  ├── Kconfig.nrf_grtc
│  │  │  ├── Kconfig.nrf_rtc
│  │  │  ├── nrf_grtc_timer.c
│  │  │  │ nrf_rtc_timer.c
│  │  ├── usb
│  │  │  ├── common
│  │  │  │  ├── nrf_usbd_common
│  │  │  │  │  │ nrf_usbd_common_errata.h
│  │  │  ├── udc
│  │  │  │  ├── Kconfig.dwc2
│  │  │  │  ├── udc_dwc2.c
│  │  │  │  │ udc_dwc2_vendor_quirks.h
│  │  ├── watchdog
│  │  │  ├── Kconfig.nrfx
│  │  │  │ wdt_nrfx.c
│  │  ├── wifi
│  │  │  ├── nrf_wifi
│  │  │  │  ├── Kconfig.nrfwifi
│  │  │  │  ├── inc
│  │  │  │  │  ├── fmac_main.h
│  │  │  │  │  │ wpa_supp_if.h
│  │  │  │  ├── off_raw_tx
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ off_raw_tx_api.c
│  │  │  │  ├── src
│  │  │  │  │  ├── debug_shell.c
│  │  │  │  │  ├── fmac_main.c
│  │  │  │  │  ├── fw_load.c
│  │  │  │  │  ├── net_if.c
│  │  │  │  │  ├── wifi_mgmt.c
│  │  │  │  │  ├── wifi_util.c
│  │  │  │  │  ├── wifi_util.h
│  │  │  │  │  │ wpa_supp_if.c
│  ├── dts
│  │  ├── arm
│  │  │  ├── nordic
│  │  │  │  ├── nrf51822.dtsi
│  │  │  │  ├── nrf51822_qfaa.dtsi
│  │  │  │  ├── nrf51822_qfab.dtsi
│  │  │  │  ├── nrf51822_qfac.dtsi
│  │  │  │  ├── nrf52805.dtsi
│  │  │  │  ├── nrf52805_caaa.dtsi
│  │  │  │  ├── nrf52810.dtsi
│  │  │  │  ├── nrf52810_qfaa.dtsi
│  │  │  │  ├── nrf52811.dtsi
│  │  │  │  ├── nrf52811_qfaa.dtsi
│  │  │  │  ├── nrf52820.dtsi
│  │  │  │  ├── nrf52820_qdaa.dtsi
│  │  │  │  ├── nrf52832.dtsi
│  │  │  │  ├── nrf52832_ciaa.dtsi
│  │  │  │  ├── nrf52832_qfaa.dtsi
│  │  │  │  ├── nrf52832_qfab.dtsi
│  │  │  │  ├── nrf52833.dtsi
│  │  │  │  ├── nrf52833_qdaa.dtsi
│  │  │  │  ├── nrf52833_qiaa.dtsi
│  │  │  │  ├── nrf52840.dtsi
│  │  │  │  ├── nrf52840_qfaa.dtsi
│  │  │  │  ├── nrf52840_qiaa.dtsi
│  │  │  │  ├── nrf5340_cpuapp.dtsi
│  │  │  │  ├── nrf5340_cpuapp_peripherals.dtsi
│  │  │  │  ├── nrf5340_cpuapp_qkaa.dtsi
│  │  │  │  ├── nrf5340_cpuappns.dtsi
│  │  │  │  ├── nrf5340_cpuappns_qkaa.dtsi
│  │  │  │  ├── nrf5340_cpunet.dtsi
│  │  │  │  ├── nrf5340_cpunet_qkaa.dtsi
│  │  │  │  ├── nrf54h20_cpuapp.dtsi
│  │  │  │  ├── nrf54h20_cpurad.dtsi
│  │  │  │  ├── nrf54l_05_10_15_cpuapp.dtsi
│  │  │  │  ├── nrf54lm20a_enga_cpuapp.dtsi
│  │  │  │  ├── nrf91.dtsi
│  │  │  │  ├── nrf9131_laca.dtsi
│  │  │  │  ├── nrf9131ns_laca.dtsi
│  │  │  │  ├── nrf9151_laca.dtsi
│  │  │  │  ├── nrf9151ns_laca.dtsi
│  │  │  │  ├── nrf9160_sica.dtsi
│  │  │  │  ├── nrf9160ns_sica.dtsi
│  │  │  │  ├── nrf9161_laca.dtsi
│  │  │  │  ├── nrf9161ns_laca.dtsi
│  │  │  │  ├── nrf91_peripherals.dtsi
│  │  │  │  ├── nrf91ns.dtsi
│  │  │  │  ├── nrf9280_cpuapp.dtsi
│  │  │  │  │ nrf9280_cpurad.dtsi
│  │  │  ├── silabs
│  │  │  │  │ siwg917.dtsi
│  │  ├── bindings
│  │  │  ├── arm
│  │  │  │  │ nordic,nrf-tddconf.yaml
│  │  │  ├── comparator
│  │  │  │  ├── nordic,nrf-comp.yaml
│  │  │  │  │ nordic,nrf-lpcomp.yaml
│  │  │  ├── debug
│  │  │  │  ├── nordic,coresight-nrf.yaml
│  │  │  │  │ nordic,nrf-tbm.yaml
│  │  │  ├── gpio
│  │  │  │  │ nordic,nrf-gpio-pad-group.yaml
│  │  │  ├── modem
│  │  │  │  ├── nordic,nrf91-slm.yaml
│  │  │  │  ├── quectel,bg95.yaml
│  │  │  │  ├── quectel,bg9x.yaml
│  │  │  │  ├── quectel,eg25-g.yaml
│  │  │  │  ├── quectel,eg800q.yaml
│  │  │  │  ├── simcom,a76xx.yaml
│  │  │  │  ├── simcom,sim7080.yaml
│  │  │  │  ├── sqn,gm02s.yaml
│  │  │  │  ├── swir,hl7800.yaml
│  │  │  │  ├── telit,me310g1.yaml
│  │  │  │  ├── telit,me910g1.yaml
│  │  │  │  ├── u-blox,lara-r6.yaml
│  │  │  │  ├── u-blox,sara-r4.yaml
│  │  │  │  ├── u-blox,sara-r5.yaml
│  │  │  │  ├── wnc,m14a2a.yaml
│  │  │  │  │ zephyr,cellular-modem-device.yaml
│  │  │  ├── mspi
│  │  │  │  ├── mspi-controller.yaml
│  │  │  │  ├── nordic,nrf-exmif.yaml
│  │  │  │  ├── nordic,nrf-qspi-v2.yaml
│  │  │  │  │ snps,designware-ssi.yaml
│  │  │  ├── mtd
│  │  │  │  │ jedec,mspi-nor.yaml
│  │  │  ├── power-domain
│  │  │  │  ├── nordic,nrfs-swext.yaml
│  │  │  │  │ silabs,siwx91x-power-domain.yaml
│  │  │  ├── serial
│  │  │  │  │ nordic,nrf-uarte.yaml
│  │  │  ├── spi
│  │  │  │  ├── nordic,nrf-exmif-spi.yaml
│  │  │  │  ├── nordic,nrf-spi-common.yaml
│  │  │  │  │ nordic,nrf-spim.yaml
│  │  ├── vendor
│  │  │  ├── nordic
│  │  │  │  ├── nrf54h20.dtsi
│  │  │  │  ├── nrf54l_05_10_15.dtsi
│  │  │  │  ├── nrf54lm20a.dtsi
│  │  │  │  ├── nrf54lm20a_ns_partition.dtsi
│  │  │  │  ├── nrf54lm20a_partition.dtsi
│  │  │  │  │ nrf9280.dtsi
│  ├── include
│  │  ├── zephyr
│  │  │  ├── arch
│  │  │  │  ├── arm
│  │  │  │  │  ├── cortex_m
│  │  │  │  │  │  ├── scripts
│  │  │  │  │  │  │  │ linker.ld
│  │  │  │  ├── common
│  │  │  │  │  │ pm_s2ram.h
│  │  │  │  ├── riscv
│  │  │  │  │  │ irq.h
│  │  │  ├── bluetooth
│  │  │  │  ├── assigned_numbers.h
│  │  │  │  ├── audio
│  │  │  │  │  ├── audio.h
│  │  │  │  │  │ bap.h
│  │  │  │  ├── bluetooth.h
│  │  │  │  ├── buf.h
│  │  │  │  ├── conn.h
│  │  │  │  ├── gap.h
│  │  │  │  ├── gatt.h
│  │  │  │  ├── hci_types.h
│  │  │  │  ├── hci_vs.h
│  │  │  │  ├── l2cap.h
│  │  │  │  ├── mesh
│  │  │  │  │  ├── access.h
│  │  │  │  │  │ main.h
│  │  │  │  ├── services
│  │  │  │  │  │ ans.h
│  │  │  ├── devicetree
│  │  │  │  │ fixed-partitions.h
│  │  │  ├── drivers
│  │  │  │  ├── can
│  │  │  │  │  │ can_mcan.h
│  │  │  │  ├── clock_control
│  │  │  │  │  │ nrf_clock_control.h
│  │  │  │  ├── comparator
│  │  │  │  │  ├── nrf_comp.h
│  │  │  │  │  │ nrf_lpcomp.h
│  │  │  │  ├── debug
│  │  │  │  │  ├── debug_nrf_etr.h
│  │  │  │  │  │ stmesp.h
│  │  │  │  ├── gpio
│  │  │  │  │  │ gpio_nrf.h
│  │  │  │  │ mspi.h
│  │  │  ├── dt-bindings
│  │  │  │  ├── adc
│  │  │  │  │  ├── nrf-saadc-haltium.h
│  │  │  │  │  ├── nrf-saadc-nrf54l.h
│  │  │  │  │  ├── nrf-saadc-v2.h
│  │  │  │  │  ├── nrf-saadc-v3.h
│  │  │  │  │  │ nrf-saadc.h
│  │  │  │  ├── comparator
│  │  │  │  │  │ nrf-comp.h
│  │  │  │  ├── misc
│  │  │  │  │  │ nordic-tddconf.h
│  │  │  │  ├── pinctrl
│  │  │  │  │  │ nrf-pinctrl.h
│  │  │  ├── fs
│  │  │  │  │ zms.h
│  │  │  ├── logging
│  │  │  │  │ log_frontend_stmesp.h
│  │  │  ├── modem
│  │  │  │  ├── at
│  │  │  │  │  │ user_pipe.h
│  │  │  │  ├── backend
│  │  │  │  │  │ uart.h
│  │  │  │  ├── cmux.h
│  │  │  │  │ ppp.h
│  │  │  ├── net
│  │  │  │  ├── mqtt.h
│  │  │  │  ├── socket.h
│  │  │  │  ├── socket_ncs.h
│  │  │  │  │ wifi_mgmt.h
│  │  │  ├── platform
│  │  │  │  │ hooks.h
│  │  │  ├── storage
│  │  │  │  │ flash_map.h
│  │  │  ├── usb
│  │  │  │  ├── class
│  │  │  │  │  │ usbd_hid.h
│  │  │  │  │ usbd.h
│  ├── kernel
│  │  ├── Kconfig
│  │  ├── Kconfig.init
│  │  │ banner.c
│  ├── lib
│  │  ├── heap
│  │  │  │ Kconfig
│  │  ├── libc
│  │  │  ├── common
│  │  │  │  ├── source
│  │  │  │  │  ├── stdlib
│  │  │  │  │  │  │ malloc.c
│  │  ├── os
│  │  │  ├── clock.c
│  │  │  ├── zvfs
│  │  │  │  │ Kconfig
│  ├── modules
│  │  ├── hal_nordic
│  │  │  ├── CMakeLists.txt
│  │  │  ├── Kconfig
│  │  │  ├── nrf_802154
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── sl_opensource
│  │  │  │  │  ├── platform
│  │  │  │  │  │  │ nrf_802154_clock_zephyr.c
│  │  │  ├── nrfx
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.logging
│  │  │  │  ├── nrfx_config.h
│  │  │  │  ├── nrfx_glue.c
│  │  │  │  ├── nrfx_kconfig.h
│  │  │  │  ├── nrfx_log.h
│  │  │  │  │ nrfx_reserved_resources_ncs.h
│  │  ├── hostap
│  │  │  ├── CMakeLists.txt
│  │  │  ├── Kconfig
│  │  │  ├── src
│  │  │  │  ├── hapd_api.c
│  │  │  │  ├── hapd_api.h
│  │  │  │  ├── supp_api.c
│  │  │  │  ├── supp_api.h
│  │  │  │  ├── supp_events.c
│  │  │  │  ├── supp_events.h
│  │  │  │  ├── supp_main.c
│  │  │  │  ├── supp_main.h
│  │  │  │  │ wpa_cli.c
│  │  ├── mbedtls
│  │  │  ├── CMakeLists.txt
│  │  │  ├── Kconfig
│  │  │  ├── Kconfig.mbedtls
│  │  │  ├── Kconfig.psa.auto
│  │  │  │ Kconfig.psa.logic
│  │  ├── nrf_wifi
│  │  │  ├── bus
│  │  │  │  │ qspi_if.c
│  │  ├── openthread
│  │  │  │ Kconfig
│  │  ├── trusted-firmware-m
│  │  │  ├── CMakeLists.txt
│  │  │  ├── Kconfig.tfm
│  │  │  ├── Kconfig.tfm.crypto_modules
│  │  │  ├── nordic
│  │  │  │  ├── include
│  │  │  │  │  │ tfm_read_ranges.h
│  │  │  │  ├── nrf54lm20a_cpuapp
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── config.cmake
│  │  │  │  │  ├── cpuarch.cmake
│  │  │  │  │  ├── ns
│  │  │  │  │  │  │ cpuarch_ns.cmake
│  │  ├── uoscore-uedhoc
│  │  │  │ Kconfig
│  ├── samples
│  │  ├── basic
│  │  │  ├── blinky
│  │  │  │  ├── boards
│  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuppr.overlay
│  │  │  │  │  │ nrf54l15dk_nrf54l15_cpuapp_hpf_gpio.overlay
│  │  ├── bluetooth
│  │  │  ├── bap_broadcast_sink
│  │  │  │  ├── sample.yaml
│  │  │  │  │ sysbuild.cmake
│  │  │  ├── bap_broadcast_source
│  │  │  │  ├── sample.yaml
│  │  │  │  │ sysbuild.cmake
│  │  │  ├── bap_unicast_client
│  │  │  │  ├── sample.yaml
│  │  │  │  │ sysbuild.cmake
│  │  │  ├── bap_unicast_server
│  │  │  │  ├── sample.yaml
│  │  │  │  │ sysbuild.cmake
│  │  │  ├── beacon
│  │  │  │  │ sample.yaml
│  │  │  ├── cap_acceptor
│  │  │  │  ├── sample.yaml
│  │  │  │  │ sysbuild.cmake
│  │  │  ├── cap_initiator
│  │  │  │  ├── sample.yaml
│  │  │  │  │ sysbuild.cmake
│  │  │  ├── direct_adv
│  │  │  │  ├── prj.conf
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── direction_finding_central
│  │  │  │  │ sample.yaml
│  │  │  ├── direction_finding_connectionless_rx
│  │  │  │  │ sample.yaml
│  │  │  ├── direction_finding_connectionless_tx
│  │  │  │  │ sample.yaml
│  │  │  ├── direction_finding_peripheral
│  │  │  │  │ sample.yaml
│  │  │  ├── hci_ipc
│  │  │  │  ├── boards
│  │  │  │  │  │ nrf54h20dk_nrf54h20_cpurad.conf
│  │  │  │  ├── nrf5340_cpunet_bis-bt_ll_sw_split.conf
│  │  │  │  ├── nrf5340_cpunet_bt_mesh-bt_ll_sw_split.conf
│  │  │  │  ├── nrf5340_cpunet_cis-bt_ll_sw_split.conf
│  │  │  │  ├── nrf5340_cpunet_df-bt_ll_sw_split.conf
│  │  │  │  ├── nrf5340_cpunet_iso-bt_ll_sw_split.conf
│  │  │  │  ├── nrf5340_cpunet_iso_broadcast-bt_ll_sw_split.conf
│  │  │  │  ├── nrf5340_cpunet_iso_central-bt_ll_sw_split.conf
│  │  │  │  ├── nrf5340_cpunet_iso_peripheral-bt_ll_sw_split.conf
│  │  │  │  ├── nrf5340_cpunet_iso_receive-bt_ll_sw_split.conf
│  │  │  │  ├── nrf54h20_cpurad-bt_ll_softdevice.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── hci_pwr_ctrl
│  │  │  │  ├── sysbuild
│  │  │  │  │  │ hci_rpmsg.conf
│  │  │  ├── hci_uart
│  │  │  │  ├── overlay-all-bt_ll_sw_split.conf
│  │  │  │  │ sample.yaml
│  │  │  ├── hci_vs_scan_req
│  │  │  │  │ sample.yaml
│  │  │  ├── iso_central
│  │  │  │  │ sample.yaml
│  │  │  ├── mesh
│  │  │  │  ├── boards
│  │  │  │  │  │ qemu_x86.conf
│  │  │  │  ├── prj.conf
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── mesh_demo
│  │  │  │  ├── boards
│  │  │  │  │  │ qemu_x86.conf
│  │  │  │  │ prj.conf
│  │  │  ├── mesh_provisioner
│  │  │  │  ├── boards
│  │  │  │  │  │ qemu_x86.conf
│  │  │  │  │ prj.conf
│  │  │  ├── pbp_public_broadcast_sink
│  │  │  │  ├── sample.yaml
│  │  │  │  │ sysbuild.cmake
│  │  │  ├── pbp_public_broadcast_source
│  │  │  │  ├── sample.yaml
│  │  │  │  │ sysbuild.cmake
│  │  │  ├── peripheral
│  │  │  │  ├── prj.conf
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── peripheral_accept_list
│  │  │  │  ├── prj.conf
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── peripheral_ans
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── README.rst
│  │  │  │  ├── prj.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  ├── boards
│  │  │  ├── nordic
│  │  │  │  ├── clock_control
│  │  │  │  │  ├── configs
│  │  │  │  │  │  ├── cpuapp_hsfll.overlay
│  │  │  │  │  │  ├── fll16m.overlay
│  │  │  │  │  │  ├── global_hsfll.overlay
│  │  │  │  │  │  ├── lfclk.overlay
│  │  │  │  │  │  │ uart135.overlay
│  │  │  │  ├── coresight_stm
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── pytest
│  │  │  │  │  │  │ test_stm.py
│  │  │  │  │  │ sample.yaml
│  │  │  │  ├── mesh
│  │  │  │  │  ├── onoff-app
│  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │ main.c
│  │  │  │  │  ├── onoff_level_lighting_vnd_app
│  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  ├── mesh
│  │  │  │  │  │  │  │  │ ble_mesh.c
│  │  │  │  ├── nrf53_sync_rtc
│  │  │  │  │  │ sysbuild.conf
│  │  │  │  ├── nrf_ironside
│  │  │  │  │  ├── update
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │ main.c
│  │  │  │  ├── nrfx
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── nrfx_prs
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── spis_wakeup
│  │  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_common.dtsi
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuapp.overlay
│  │  │  │  │  │  │ nrf54h20dk_nrf54h20_cpuapp_with_cpuppr.overlay
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── sysbuild.cmake
│  │  │  │  │  ├── wakeup_trigger
│  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_common.dtsi
│  │  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuppr_xip.conf
│  │  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuppr_xip.overlay
│  │  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpurad.conf
│  │  │  │  │  │  │  │ nrf54h20dk_nrf54h20_cpurad.overlay
│  │  │  │  │  │  │ prj.conf
│  │  │  │  ├── system_off
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ nrf54l15dk_nrf54l15_cpuapp_comparator.overlay
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  ├── st
│  │  │  │  ├── power_mgmt
│  │  │  │  │  ├── suspend_to_ram
│  │  │  │  │  │  │ prj.conf
│  │  ├── drivers
│  │  │  ├── adc
│  │  │  │  ├── adc_dt
│  │  │  │  │  │ sample.yaml
│  │  │  │  ├── adc_sequence
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_common.dtsi
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuapp.overlay
│  │  │  │  │  │  │ nrf54h20dk_nrf54h20_cpuppr.overlay
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── sysbuild
│  │  │  │  │  │  ├── vpr_launcher
│  │  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  │  │ nrf54h20dk_nrf54h20_cpuapp.overlay
│  │  │  │  │  │  │  │ prj.conf
│  │  │  ├── i2c
│  │  │  │  ├── rtio_loopback
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuppr.conf
│  │  │  │  │  │  │ nrf54h20dk_nrf54h20_cpuppr.overlay
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── sysbuild
│  │  │  │  │  │  ├── vpr_launcher
│  │  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  │  │ nrf54h20dk_nrf54h20_cpuapp.overlay
│  │  │  │  │  │  │  │ prj.conf
│  │  │  ├── i2s
│  │  │  │  ├── echo
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── nrf5340dk_nrf5340_cpuapp.conf
│  │  │  │  │  │  │ nrf5340dk_nrf5340_cpuapp.overlay
│  │  │  ├── jesd216
│  │  │  │  │ sample.yaml
│  │  │  ├── led
│  │  │  │  ├── led_strip
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ nrf52dk_nrf52832.conf
│  │  │  ├── mbox
│  │  │  │  │ sysbuild.conf
│  │  │  ├── spi_bitbang
│  │  │  │  ├── boards
│  │  │  │  │  │ nrf54h20dk_nrf54h20_cpuppr.overlay
│  │  │  │  │ sample.yaml
│  │  │  ├── watchdog
│  │  │  │  │ sample.yaml
│  │  ├── net
│  │  │  ├── dns_resolve
│  │  │  │  │ Kconfig.sysbuild
│  │  │  ├── ipv4_autoconf
│  │  │  │  │ Kconfig.sysbuild
│  │  │  ├── lwm2m_client
│  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  │ overlay-nrf91x.conf
│  │  │  ├── mdns_responder
│  │  │  │  │ Kconfig.sysbuild
│  │  │  ├── mqtt_publisher
│  │  │  │  │ Kconfig.sysbuild
│  │  │  ├── mqtt_sn_publisher
│  │  │  │  │ Kconfig.sysbuild
│  │  │  ├── sockets
│  │  │  │  ├── big_http_download
│  │  │  │  │  │ prj.conf
│  │  │  │  ├── coap_server
│  │  │  │  │  │ Kconfig.sysbuild
│  │  │  │  ├── echo_async
│  │  │  │  │  │ Kconfig.sysbuild
│  │  │  │  ├── echo_client
│  │  │  │  │  │ Kconfig.sysbuild
│  │  │  │  ├── echo_server
│  │  │  │  │  │ Kconfig.sysbuild
│  │  │  │  ├── http_get
│  │  │  │  │  │ Kconfig.sysbuild
│  │  │  │  ├── http_server
│  │  │  │  │  │ Kconfig
│  │  │  │  ├── sntp_client
│  │  │  │  │  │ Kconfig.sysbuild
│  │  │  ├── syslog_net
│  │  │  │  │ Kconfig.sysbuild
│  │  │  ├── telnet
│  │  │  │  │ Kconfig.sysbuild
│  │  │  ├── wifi
│  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  ├── shell
│  │  │  │  │  │ sample.yaml
│  │  │  ├── zperf
│  │  │  │  ├── src
│  │  │  │  │  │ nrf5340_cpu_boost.c
│  │  ├── subsys
│  │  │  ├── ipc
│  │  │  │  ├── ipc_service
│  │  │  │  │  ├── icmsg
│  │  │  │  │  │  │ sysbuild.conf
│  │  │  │  │  ├── multi_endpoint
│  │  │  │  │  │  │ sysbuild.conf
│  │  │  │  │  ├── static_vrings
│  │  │  │  │  │  │ sysbuild.conf
│  │  │  ├── logging
│  │  │  │  ├── multidomain
│  │  │  │  │  │ sysbuild.conf
│  │  │  ├── mgmt
│  │  │  │  ├── mcumgr
│  │  │  │  │  ├── smp_svr
│  │  │  │  │  │  ├── sysbuild
│  │  │  │  │  │  │  │ hci_rpmsg.conf
│  │  │  │  ├── updatehub
│  │  │  │  │  │ overlay-psa.conf
│  │  │  ├── usb
│  │  │  │  ├── dfu
│  │  │  │  │  │ sysbuild.conf
│  │  │  │  ├── hid-keyboard
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── uac2_explicit_feedback
│  │  │  │  │  ├── app.overlay
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── nrf5340dk_nrf5340_cpuapp.conf
│  │  │  │  │  │  │ nrf54h20dk_nrf54h20_cpuapp.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  ├── feedback.h
│  │  │  │  │  │  ├── feedback_dummy.c
│  │  │  │  │  │  ├── feedback_nrf.c
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── uac2_implicit_feedback
│  │  │  │  │  ├── app.overlay
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── nrf5340dk_nrf5340_cpuapp.conf
│  │  │  │  │  │  │ nrf54h20dk_nrf54h20_cpuapp.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  ├── feedback.h
│  │  │  │  │  │  ├── feedback_dummy.c
│  │  │  │  │  │  ├── feedback_nrf.c
│  │  │  │  │  │  │ main.c
│  │  ├── sysbuild
│  │  │  ├── hello_world
│  │  │  │  │ sysbuild.cmake
│  │  ├── tfm_integration
│  │  │  ├── config_build
│  │  │  │  │ sample.yaml
│  │  │  ├── psa_crypto
│  │  │  │  │ sample.yaml
│  │  │  ├── tfm_ipc
│  │  │  │  │ sample.yaml
│  ├── scripts
│  │  ├── ci
│  │  │  │ check_compliance.py
│  │  ├── dts
│  │  │  │ gen_dts_cmake.py
│  │  ├── gitlint
│  │  │  │ zephyr_commit_rules.py
│  │  ├── pylib
│  │  │  ├── twister
│  │  │  │  ├── twisterlib
│  │  │  │  │  │ hardwaremap.py
│  │  ├── quarantine.yaml
│  │  ├── requirements-actions.in
│  │  ├── requirements-actions.txt
│  │  ├── requirements-build-test.txt
│  │  ├── requirements-compliance.txt
│  │  ├── requirements-extras.txt
│  │  ├── requirements-run-test.txt
│  │  ├── west_commands
│  │  │  ├── build.py
│  │  │  ├── runners
│  │  │  │  ├── core.py
│  │  │  │  ├── nrf_common.py
│  │  │  │  │ nrfutil.py
│  │  │ zephyr_module.py
│  ├── share
│  │  ├── sysbuild
│  │  │  │ Kconfig
│  ├── snippets
│  │  ├── bt-ll-sw-split
│  │  │  │ bt-ll-sw-split.overlay
│  │  ├── nordic
│  │  │  ├── nordic-log-stm-dict
│  │  │  │  ├── boards
│  │  │  │  │  │ nrf54h20_cpuapp.overlay
│  │  │  │  ├── log_stm_dict.conf
│  │  │  │  │ snippet.yml
│  │  │  ├── nordic-log-stm-tpiu-dict
│  │  │  │  ├── README.rst
│  │  │  │  ├── boards
│  │  │  │  │  │ nrf54h20_cpuapp.overlay
│  │  │  │  ├── log_stm_dict.conf
│  │  │  │  │ snippet.yml
│  │  │  ├── nordic-log-stm
│  │  │  │  ├── boards
│  │  │  │  │  ├── nrf54h20_cpuapp.overlay
│  │  │  │  │  │ nrf54h20_cpurad.overlay
│  │  │  │  ├── log_stm.conf
│  │  │  │  │ snippet.yml
│  ├── soc
│  │  ├── nordic
│  │  │  ├── CMakeLists.txt
│  │  │  ├── Kconfig
│  │  │  ├── common
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── Kconfig.peripherals
│  │  │  │  ├── dmm.c
│  │  │  │  ├── dmm.h
│  │  │  │  ├── gpiote_nrfx.c
│  │  │  │  ├── gpiote_nrfx.h
│  │  │  │  ├── gppi_init.c
│  │  │  │  ├── nrf54hx_nrf92x_mpu_regions.c
│  │  │  │  ├── nrf_sys_event.c
│  │  │  │  ├── poweroff.c
│  │  │  │  ├── soc_nrf_common.h
│  │  │  │  ├── soc_secure.c
│  │  │  │  ├── soc_secure.h
│  │  │  │  ├── uicr
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── Kconfig.gen_uicr
│  │  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  │  ├── gen_periphconf_entries.py
│  │  │  │  │  ├── gen_uicr.py
│  │  │  │  │  ├── gen_uicr
│  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  ├── Kconfig
│  │  │  │  │  │  │ prj.conf
│  │  │  │  │  ├── periphconf
│  │  │  │  │  │  ├── __init__.py
│  │  │  │  │  │  │ builder.py
│  │  │  │  │  │ sysbuild.cmake
│  │  │  ├── ironside
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig
│  │  │  │  ├── counter.c
│  │  │  │  ├── include
│  │  │  │  │  ├── nrf_ironside
│  │  │  │  │  │  ├── boot_report.h
│  │  │  │  │  │  ├── counter.h
│  │  │  │  │  │  ├── cpuconf.h
│  │  │  │  │  │  │ update.h
│  │  │  │  │ update.c
│  │  │  ├── nrf51
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  │ soc.c
│  │  │  ├── nrf52
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  │ soc.c
│  │  │  ├── nrf53
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── soc.c
│  │  │  │  │ sync_rtc.c
│  │  │  ├── nrf54h
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── Kconfig.defconfig.nrf54h20_cpuapp
│  │  │  │  ├── Kconfig.defconfig.nrf54h20_cpurad
│  │  │  │  ├── bicr
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │ Kconfig
│  │  │  │  ├── nrfx_gppi_cpurad.c
│  │  │  │  ├── nrfx_gppi_cpurad.h
│  │  │  │  ├── pm_s2ram.c
│  │  │  │  ├── pm_s2ram.h
│  │  │  │  ├── power.c
│  │  │  │  ├── soc.c
│  │  │  │  │ soc.h
│  │  │  ├── nrf54l
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── kmu_push_area_section.ld
│  │  │  │  │ soc.c
│  │  │  ├── nrf91
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  │ soc.c
│  │  │  ├── nrf92
│  │  │  │  │ soc.c
│  │  │  ├── validate_base_addresses.c
│  │  │  │ validate_binding_headers.c
│  ├── submanifests
│  │  │ optional.yaml
│  ├── subsys
│  │  ├── bluetooth
│  │  │  ├── Kconfig
│  │  │  ├── audio
│  │  │  │  ├── ascs.c
│  │  │  │  ├── bap_broadcast_assistant.c
│  │  │  │  ├── bap_broadcast_sink.c
│  │  │  │  ├── bap_scan_delegator.c
│  │  │  │  ├── bap_unicast_client.c
│  │  │  │  ├── csip_set_member.c
│  │  │  │  ├── shell
│  │  │  │  │  │ bap_usb.c
│  │  │  │  │ tbs.c
│  │  │  ├── common
│  │  │  │  │ Kconfig
│  │  │  ├── controller
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.ll_sw_split
│  │  │  │  ├── hal
│  │  │  │  │  │ debug.h
│  │  │  │  ├── hci
│  │  │  │  │  ├── hci.c
│  │  │  │  │  │ hci_driver.c
│  │  │  │  ├── include
│  │  │  │  │  ├── ll.h
│  │  │  │  │  ├── ll_feat.h
│  │  │  │  │  │ ll_settings.h
│  │  │  │  ├── ll_sw
│  │  │  │  │  ├── isoal.c
│  │  │  │  │  ├── lll_chan.c
│  │  │  │  │  ├── lll_common.c
│  │  │  │  │  ├── lll_scan.h
│  │  │  │  │  ├── nordic
│  │  │  │  │  │  ├── hal
│  │  │  │  │  │  │  ├── nrf5
│  │  │  │  │  │  │  │  ├── cntr.c
│  │  │  │  │  │  │  │  ├── ecb.c
│  │  │  │  │  │  │  │  ├── mayfly.c
│  │  │  │  │  │  │  │  ├── radio
│  │  │  │  │  │  │  │  │  ├── radio.c
│  │  │  │  │  │  │  │  │  ├── radio_nrf5.h
│  │  │  │  │  │  │  │  │  ├── radio_nrf52810.h
│  │  │  │  │  │  │  │  │  ├── radio_nrf52832.h
│  │  │  │  │  │  │  │  │  ├── radio_nrf52840.h
│  │  │  │  │  │  │  │  │  ├── radio_nrf54hx.h
│  │  │  │  │  │  │  │  │  ├── radio_nrf54lx.h
│  │  │  │  │  │  │  │  │  ├── radio_nrf5_dppi.h
│  │  │  │  │  │  │  │  │  ├── radio_nrf5_dppi_gpiote.h
│  │  │  │  │  │  │  │  │  ├── radio_nrf5_dppi_resources.h
│  │  │  │  │  │  │  │  │  ├── radio_nrf5_ppi_gpiote.h
│  │  │  │  │  │  │  │  │  │ radio_sim_nrf54l.h
│  │  │  │  │  │  │  │  ├── swi.h
│  │  │  │  │  │  │  │  │ ticker.c
│  │  │  │  │  │  ├── hci
│  │  │  │  │  │  │  │ hci_vendor.c
│  │  │  │  │  │  ├── lll
│  │  │  │  │  │  │  ├── lll.c
│  │  │  │  │  │  │  ├── lll_adv.c
│  │  │  │  │  │  │  ├── lll_adv_aux.c
│  │  │  │  │  │  │  ├── lll_adv_iso.c
│  │  │  │  │  │  │  ├── lll_adv_sync.c
│  │  │  │  │  │  │  ├── lll_central.c
│  │  │  │  │  │  │  ├── lll_central_iso.c
│  │  │  │  │  │  │  ├── lll_clock.c
│  │  │  │  │  │  │  ├── lll_conn.c
│  │  │  │  │  │  │  ├── lll_df.c
│  │  │  │  │  │  │  ├── lll_peripheral.c
│  │  │  │  │  │  │  ├── lll_peripheral_iso.c
│  │  │  │  │  │  │  ├── lll_scan.c
│  │  │  │  │  │  │  ├── lll_scan_aux.c
│  │  │  │  │  │  │  ├── lll_sync.c
│  │  │  │  │  │  │  ├── lll_sync_iso.c
│  │  │  │  │  │  │  │ lll_test.c
│  │  │  │  │  ├── ull.c
│  │  │  │  │  ├── ull_adv.c
│  │  │  │  │  ├── ull_adv_aux.c
│  │  │  │  │  ├── ull_adv_iso.c
│  │  │  │  │  ├── ull_adv_sync.c
│  │  │  │  │  ├── ull_central.c
│  │  │  │  │  ├── ull_central_iso.c
│  │  │  │  │  ├── ull_conn.c
│  │  │  │  │  ├── ull_conn_iso.c
│  │  │  │  │  ├── ull_df.c
│  │  │  │  │  ├── ull_filter.c
│  │  │  │  │  ├── ull_iso.c
│  │  │  │  │  ├── ull_llcp.c
│  │  │  │  │  ├── ull_llcp_cc.c
│  │  │  │  │  ├── ull_llcp_chmu.c
│  │  │  │  │  ├── ull_llcp_common.c
│  │  │  │  │  ├── ull_llcp_conn_upd.c
│  │  │  │  │  ├── ull_llcp_enc.c
│  │  │  │  │  ├── ull_llcp_local.c
│  │  │  │  │  ├── ull_llcp_past.c
│  │  │  │  │  ├── ull_llcp_phy.c
│  │  │  │  │  ├── ull_llcp_remote.c
│  │  │  │  │  ├── ull_peripheral.c
│  │  │  │  │  ├── ull_peripheral_iso.c
│  │  │  │  │  ├── ull_scan.c
│  │  │  │  │  ├── ull_scan_aux.c
│  │  │  │  │  ├── ull_sched.c
│  │  │  │  │  ├── ull_sync.c
│  │  │  │  │  │ ull_sync_iso.c
│  │  │  │  ├── ticker
│  │  │  │  │  │ ticker.c
│  │  │  ├── crypto
│  │  │  │  │ Kconfig
│  │  │  ├── host
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.gatt
│  │  │  │  ├── Kconfig.l2cap
│  │  │  │  ├── adv.c
│  │  │  │  ├── adv.h
│  │  │  │  ├── att.c
│  │  │  │  ├── buf.c
│  │  │  │  ├── classic
│  │  │  │  │  │ br.c
│  │  │  │  ├── conn.c
│  │  │  │  ├── conn_internal.h
│  │  │  │  ├── gatt.c
│  │  │  │  ├── gatt_internal.h
│  │  │  │  ├── hci_core.c
│  │  │  │  ├── hci_core.h
│  │  │  │  ├── id.c
│  │  │  │  ├── id.h
│  │  │  │  ├── iso.c
│  │  │  │  ├── keys.c
│  │  │  │  ├── keys.h
│  │  │  │  ├── l2cap.c
│  │  │  │  ├── l2cap_internal.h
│  │  │  │  ├── scan.c
│  │  │  │  ├── shell
│  │  │  │  │  ├── bt.c
│  │  │  │  │  │ gatt.c
│  │  │  │  ├── smp.c
│  │  │  │  │ smp_null.c
│  │  │  ├── mesh
│  │  │  │  ├── Kconfig
│  │  │  │  ├── adv_ext.c
│  │  │  │  ├── app_keys.c
│  │  │  │  ├── blob_io_flash.c
│  │  │  │  ├── brg_cfg.c
│  │  │  │  ├── brg_cfg_srv.c
│  │  │  │  ├── cdb.c
│  │  │  │  ├── cfg.c
│  │  │  │  ├── heartbeat.c
│  │  │  │  ├── net.c
│  │  │  │  ├── priv_beacon_srv.c
│  │  │  │  ├── prov.c
│  │  │  │  ├── prov.h
│  │  │  │  ├── provisioner.c
│  │  │  │  ├── rpl.c
│  │  │  │  ├── shell
│  │  │  │  │  │ shell.c
│  │  │  │  ├── solicitation.c
│  │  │  │  ├── subnet.c
│  │  │  │  │ va.c
│  │  │  ├── services
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.ans
│  │  │  │  │ ans.c
│  │  ├── dfu
│  │  │  ├── boot
│  │  │  │  ├── mcuboot.c
│  │  │  │  │ mcuboot_shell.c
│  │  │  ├── img_util
│  │  │  │  │ flash_img.c
│  │  ├── fs
│  │  │  ├── littlefs_fs.c
│  │  │  ├── nvs
│  │  │  │  ├── Kconfig
│  │  │  │  │ nvs.c
│  │  │  ├── zms
│  │  │  │  ├── Kconfig
│  │  │  │  ├── zms.c
│  │  │  │  │ zms_priv.h
│  │  ├── ipc
│  │  │  ├── ipc_service
│  │  │  │  ├── lib
│  │  │  │  │  │ Kconfig.icmsg
│  │  │  ├── rpmsg_service
│  │  │  │  │ rpmsg_backend.h
│  │  ├── jwt
│  │  │  │ Kconfig
│  │  ├── logging
│  │  │  ├── frontends
│  │  │  │  ├── Kconfig
│  │  │  │  │ log_frontend_stmesp.c
│  │  ├── mgmt
│  │  │  ├── mcumgr
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig
│  │  │  │  ├── bootutil_hooks
│  │  │  │  │  │ nrf53_hooks.c
│  │  │  │  ├── grp
│  │  │  │  │  ├── img_mgmt
│  │  │  │  │  │  ├── Kconfig
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  ├── img_mgmt.c
│  │  │  │  │  │  │  │ img_mgmt_state.c
│  │  ├── modem
│  │  │  ├── CMakeLists.txt
│  │  │  ├── Kconfig
│  │  │  ├── backends
│  │  │  │  ├── modem_backend_uart.c
│  │  │  │  ├── modem_backend_uart_async.c
│  │  │  │  ├── modem_backend_uart_async_hwfc.c
│  │  │  │  │ modem_backend_uart_isr.c
│  │  │  ├── modem_chat.c
│  │  │  ├── modem_cmux.c
│  │  │  ├── modem_pipe.c
│  │  │  ├── modem_ppp.c
│  │  │  ├── modem_ubx.c
│  │  │  ├── modem_workqueue.c
│  │  │  │ modem_workqueue.h
│  │  ├── net
│  │  │  ├── ip
│  │  │  │  │ tcp.c
│  │  │  ├── l2
│  │  │  │  ├── ppp
│  │  │  │  │  ├── fsm.c
│  │  │  │  │  │ lcp.c
│  │  │  │  ├── wifi
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── wifi_mgmt.c
│  │  │  │  │  │ wifi_shell.c
│  │  │  ├── lib
│  │  │  │  ├── dns
│  │  │  │  │  ├── llmnr_responder.c
│  │  │  │  │  │ mdns_responder.c
│  │  │  │  ├── mqtt
│  │  │  │  │  │ mqtt_transport_socket_tls.c
│  │  │  │  ├── websocket
│  │  │  │  │  │ websocket.c
│  │  ├── pm
│  │  │  ├── Kconfig
│  │  │  ├── device.c
│  │  │  │ device_runtime.c
│  │  ├── shell
│  │  │  ├── backends
│  │  │  │  │ shell_uart.c
│  │  ├── storage
│  │  │  ├── flash_map
│  │  │  │  │ flash_map_default.c
│  │  ├── usb
│  │  │  ├── device_next
│  │  │  │  ├── class
│  │  │  │  │  ├── Kconfig.hid
│  │  │  │  │  ├── Kconfig.msc
│  │  │  │  │  ├── usbd_hid.c
│  │  │  │  │  ├── usbd_hid_api.c
│  │  │  │  │  ├── usbd_hid_internal.h
│  │  │  │  │  ├── usbd_msc.c
│  │  │  │  │  ├── usbd_msc_scsi.c
│  │  │  │  │  │ usbd_msc_scsi.h
│  │  │  │  │ usbd_core.c
│  ├── tests
│  │  ├── application_development
│  │  │  ├── ram_context_for_isr
│  │  │  │  ├── Kconfig
│  │  │  │  ├── boards
│  │  │  │  │  ├── nrf54l05dk_nrf54l05_cpuapp.conf
│  │  │  │  │  ├── nrf54l15dk_nrf54l10_cpuapp.conf
│  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp.conf
│  │  │  │  │  ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf
│  │  │  │  │  ├── nrf54lv10dk_nrf54lv10a_cpuapp.conf
│  │  │  │  │  │ nrf7120pdk_nrf7120_cpuapp.conf
│  │  ├── arch
│  │  │  ├── arm
│  │  │  │  ├── arm_irq_vector_table
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuapp.conf
│  │  │  │  │  │  │ nrf54h20dk_nrf54h20_cpurad.conf
│  │  │  ├── common
│  │  │  │  ├── gen_isr_table
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  ├── bluetooth
│  │  │  ├── audio
│  │  │  │  ├── ascs
│  │  │  │  │  ├── src
│  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │ test_common.c
│  │  │  ├── controller
│  │  │  │  ├── ctrl_api
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── ctrl_chmu
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── ctrl_cis_create
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── ctrl_cis_terminate
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── ctrl_collision
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── ctrl_conn_update
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── ctrl_cte_req
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── ctrl_data_length_update
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── ctrl_encrypt
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── ctrl_feature_exchange
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── ctrl_hci
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── ctrl_invalid
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── ctrl_le_ping
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── ctrl_min_used_chans
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── ctrl_phy_update
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── ctrl_sca_update
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── ctrl_sw_privacy
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── ctrl_terminate
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── ctrl_tx_buffer_alloc
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── ctrl_tx_queue
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── ctrl_unsupported
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── ctrl_user_ext
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── ctrl_version
│  │  │  │  │  │ testcase.yaml
│  │  │  ├── df
│  │  │  │  ├── connection_cte_req
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── connection_cte_tx_params
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── connectionless_cte_chains
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── connectionless_cte_rx
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── connectionless_cte_tx
│  │  │  │  │  │ testcase.yaml
│  │  │  ├── host
│  │  │  │  ├── id
│  │  │  │  │  ├── mocks
│  │  │  │  │  │  ├── adv.c
│  │  │  │  │  │  ├── adv.h
│  │  │  │  │  │  ├── keys.c
│  │  │  │  │  │  │ keys.h
│  │  │  ├── init
│  │  │  │  ├── prj_10.conf
│  │  │  │  ├── prj_11.conf
│  │  │  │  ├── prj_12.conf
│  │  │  │  ├── prj_13.conf
│  │  │  │  ├── prj_14.conf
│  │  │  │  ├── prj_17.conf
│  │  │  │  ├── prj_20.conf
│  │  │  │  ├── prj_21.conf
│  │  │  │  ├── prj_7.conf
│  │  │  │  ├── prj_8.conf
│  │  │  │  ├── prj_9.conf
│  │  │  │  ├── prj_ctlr.conf
│  │  │  │  ├── prj_ctlr_4_0.conf
│  │  │  │  ├── prj_ctlr_4_0_dbg.conf
│  │  │  │  ├── prj_ctlr_5_x_dbg.conf
│  │  │  │  ├── prj_ctlr_dbg.conf
│  │  │  │  ├── prj_ctlr_ticker.conf
│  │  │  │  ├── prj_ctlr_tiny.conf
│  │  │  │  ├── prj_llcp.conf
│  │  │  │  │ testcase.yaml
│  │  │  ├── mesh_shell
│  │  │  │  ├── boards
│  │  │  │  │  │ qemu_x86.conf
│  │  │  │  │ prj.conf
│  │  │  ├── qualification
│  │  │  │  ├── ICS_Zephyr_Bluetooth_Host.bqw
│  │  │  │  │ ICS_Zephyr_Bluetooth_Host.pts
│  │  │  ├── shell
│  │  │  │  ├── audio.conf
│  │  │  │  ├── log.conf
│  │  │  │  ├── mesh.conf
│  │  │  │  ├── prj.conf
│  │  │  │  ├── prj_br.conf
│  │  │  │  │ testcase.yaml
│  │  │  ├── tester
│  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  ├── boards
│  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuapp.conf
│  │  │  │  │  │ nrf54h20dk_nrf54h20_cpuapp.overlay
│  │  │  │  ├── overlay-le-audio.conf
│  │  │  │  ├── prj.conf
│  │  │  │  ├── src
│  │  │  │  │  ├── audio
│  │  │  │  │  │  ├── btp
│  │  │  │  │  │  │  ├── btp_ascs.h
│  │  │  │  │  │  │  ├── btp_bap.h
│  │  │  │  │  │  │  ├── btp_csis.h
│  │  │  │  │  │  │  │ btp_vcs.h
│  │  │  │  │  │  ├── btp_bap.c
│  │  │  │  │  │  ├── btp_bap_broadcast.c
│  │  │  │  │  │  ├── btp_bap_broadcast.h
│  │  │  │  │  │  ├── btp_bap_unicast.c
│  │  │  │  │  │  ├── btp_csis.c
│  │  │  │  │  │  │ btp_vcp.c
│  │  │  │  │  ├── btp
│  │  │  │  │  │  ├── btp_gap.h
│  │  │  │  │  │  ├── btp_gatt.h
│  │  │  │  │  │  │ btp_mesh.h
│  │  │  │  │  ├── btp_gap.c
│  │  │  │  │  ├── btp_gatt.c
│  │  │  │  │  │ btp_mesh.c
│  │  │  │  ├── sysbuild.cmake
│  │  │  │  ├── sysbuild
│  │  │  │  │  ├── hci_ipc
│  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpurad.conf
│  │  │  │  │  │  │  │ nrf54h20dk_nrf54h20_cpurad.overlay
│  │  │  │  │  │  │ prj.conf
│  │  ├── boards
│  │  │  ├── nrf
│  │  │  │  ├── comp
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── bl54l15_dvk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  ├── bl54l15u_dvk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuapp.overlay
│  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  │ nrf54lm20dk_nrf54lm20a_cpuapp.overlay
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ test.c
│  │  │  │  ├── coresight_stm
│  │  │  │  │  │ prj.conf
│  │  │  │  ├── dmm
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── nrf5340dk_nrf5340_cpuapp.overlay
│  │  │  │  │  │  │ nrf54h20dk_nrf54h20_cpuapp.overlay
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── hwinfo
│  │  │  │  │  ├── reset_cause
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │ main.c
│  │  │  │  ├── i2c
│  │  │  │  │  ├── i2c_slave
│  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  ├── bl54l15_dvk_nrf54l15_cpuapp.conf
│  │  │  │  │  │  │  ├── bl54l15u_dvk_nrf54l15_cpuapp.conf
│  │  │  │  │  │  │  ├── nrf52840dk_nrf52840.conf
│  │  │  │  │  │  │  ├── nrf52840dk_nrf52840.overlay
│  │  │  │  │  │  │  ├── nrf5340dk_nrf5340_cpuapp.conf
│  │  │  │  │  │  │  ├── nrf5340dk_nrf5340_cpuapp.overlay
│  │  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuapp.conf
│  │  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuapp.overlay
│  │  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuppr.conf
│  │  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuppr.overlay
│  │  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp.conf
│  │  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp_ns.overlay
│  │  │  │  │  │  │  │ nrf54lm20dk_nrf54lm20a_cpuapp.conf
│  │  │  │  │  │  ├── i2c_speed_fast.overlay
│  │  │  │  │  │  ├── i2c_speed_fast_plus.overlay
│  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │ main.c
│  │  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── qdec
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── bl54l15_dvk_nrf54l15_common.dtsi
│  │  │  │  │  │  ├── bl54l15u_dvk_nrf54l15_common.dtsi
│  │  │  │  │  │  ├── nrf52840dk_nrf52840.overlay
│  │  │  │  │  │  ├── nrf5340dk_nrf5340_cpuapp.overlay
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuapp.overlay
│  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_common.dtsi
│  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp_ns.overlay
│  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuflpr.overlay
│  │  │  │  │  │  │ nrf54lm20dk_nrf54lm20_common.dtsi
│  │  │  │  │  ├── dts
│  │  │  │  │  │  ├── bindings
│  │  │  │  │  │  │  │ test-qdec-loopback.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  │  │ testcase.yaml
│  │  ├── boot
│  │  │  ├── mcuboot_recovery_retention
│  │  │  │  │ sysbuild.conf
│  │  │  ├── test_mcuboot
│  │  │  │  ├── sysbuild.cmake
│  │  │  │  │ sysbuild.conf
│  │  ├── bsim
│  │  │  ├── bluetooth
│  │  │  │  ├── audio
│  │  │  │  │  ├── src
│  │  │  │  │  │  ├── bap_broadcast_assistant_test.c
│  │  │  │  │  │  ├── bap_scan_delegator_test.c
│  │  │  │  │  │  │ common.c
│  │  │  │  ├── compile.nrf54l15bsim_nrf54l15_cpuapp.sh
│  │  │  │  ├── host
│  │  │  │  │  ├── gatt
│  │  │  │  │  │  ├── caching
│  │  │  │  │  │  │  │ psa_overlay.conf
│  │  │  │  ├── ll
│  │  │  │  │  ├── advx
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │ main.c
│  │  │  │  │  │  ├── tests_scripts
│  │  │  │  │  │  │  ├── basic_advx.sh
│  │  │  │  │  │  │  ├── basic_advx_scan_aux_use_chains.sh
│  │  │  │  │  │  │  │ basic_advx_ticker_expire_info.sh
│  │  │  │  │  ├── conn
│  │  │  │  │  │  ├── prj_split.conf
│  │  │  │  │  │  ├── prj_split_1ms.conf
│  │  │  │  │  │  ├── prj_split_hci_uart.conf
│  │  │  │  │  │  ├── prj_split_low_lat.conf
│  │  │  │  │  │  ├── prj_split_privacy.conf
│  │  │  │  │  │  ├── prj_split_single_timer.conf
│  │  │  │  │  │  ├── prj_split_tx_defer.conf
│  │  │  │  │  │  │ psa_overlay.conf
│  │  │  │  │  ├── edtt
│  │  │  │  │  │  ├── gatt_test_app
│  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  ├── gatt
│  │  │  │  │  │  │  │  │  │ service_f_1.c
│  │  │  │  │  │  ├── tests_scripts
│  │  │  │  │  │  │  │ gatt.llcp.test_list
│  │  │  │  ├── mesh
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ test_provision.c
│  │  │  │  ├── tester
│  │  │  │  │  ├── src
│  │  │  │  │  │  ├── audio
│  │  │  │  │  │  │  │ vcp_peripheral.c
│  │  │  │  │  │  ├── bsim_btp.c
│  │  │  │  │  │  │ bsim_btp.h
│  │  │  │  │ tests.nrf54l15bsim_nrf54l15_cpuapp.txt
│  │  ├── crypto
│  │  │  ├── mbedtls
│  │  │  │  │ CMakeLists.txt
│  │  │  ├── mbedtls_psa
│  │  │  │  ├── boards
│  │  │  │  │  ├── nrf54l05dk_nrf54l05_cpuapp.conf
│  │  │  │  │  ├── nrf54l15dk_nrf54l10_cpuapp.conf
│  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp.conf
│  │  │  │  │  ├── nrf54lm20dk_nrf54lm20a_cpuapp.conf
│  │  │  │  │  │ nrf54lv10dk_nrf54lv10a_cpuapp.conf
│  │  │  ├── secp256r1
│  │  │  │  │ mbedtls.conf
│  │  ├── drivers
│  │  │  ├── adc
│  │  │  │  ├── adc_accuracy_test
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── adc_api
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ nrf54l15dk_nrf54l15_cpuapp_ns.overlay
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── adc_error_cases
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_common.dtsi
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuapp.overlay
│  │  │  │  │  │  │ nrf54h20dk_nrf54h20_cpuppr.overlay
│  │  │  │  │  │ testcase.yaml
│  │  │  ├── build_all
│  │  │  │  ├── comparator
│  │  │  │  │  ├── nrf_comp
│  │  │  │  │  │  ├── diff.overlay
│  │  │  │  │  │  ├── se.overlay
│  │  │  │  │  │  │ se_aref.overlay
│  │  │  │  │  ├── nrf_lpcomp
│  │  │  │  │  │  ├── ext_ref.overlay
│  │  │  │  │  │  │ int_ref.overlay
│  │  │  │  │  ├── nxp_cmp
│  │  │  │  │  │  │ frdm_mcxc242.dts
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── regulator
│  │  │  │  │  │ testcase.yaml
│  │  │  ├── clock_control
│  │  │  │  ├── clock_control_api
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── nrf_clock_calibration
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── nrf_clock_control
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ nrf54h20dk_nrf54h20_cpuapp.overlay
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── nrf_lf_clock_start
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── onoff
│  │  │  │  │  │ testcase.yaml
│  │  │  ├── comparator
│  │  │  │  ├── gpio_loopback
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── frdm_mcxc242.overlay
│  │  │  │  │  │  │ nrf54l15dk_nrf54l15_cpuapp_ns.overlay
│  │  │  │  │  ├── snippets
│  │  │  │  │  │  ├── nrf_comp
│  │  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  │  ├── bl54l15_dvk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  │  │  │ nrf54h20dk_nrf54h20_cpuapp.overlay
│  │  │  │  │  │  │  │ snippet.yml
│  │  │  │  │  │  ├── nrf_lpcomp
│  │  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuapp.overlay
│  │  │  │  │  │  │  │  │ nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  │  │ snippet.yml
│  │  │  │  │  ├── socs
│  │  │  │  │  │  ├── nrf5340_cpuapp_nrf_comp.overlay
│  │  │  │  │  │  ├── nrf5340_cpuapp_nrf_lpcomp.overlay
│  │  │  │  │  │  ├── nrf54h20_cpuapp_nrf_comp.overlay
│  │  │  │  │  │  ├── nrf54h20_cpuapp_nrf_lpcomp.overlay
│  │  │  │  │  │  ├── nrf54l15_cpuapp_nrf_comp.overlay
│  │  │  │  │  │  ├── nrf54l15_cpuapp_nrf_lpcomp.overlay
│  │  │  │  │  │  ├── nrf54l15_cpuapp_ns_nrf_comp.overlay
│  │  │  │  │  │  ├── nrf54l15_cpuapp_ns_nrf_lpcomp.overlay
│  │  │  │  │  │  ├── nrf54lm20a_cpuapp_nrf_comp.overlay
│  │  │  │  │  │  │ nrf54lm20a_cpuapp_nrf_lpcomp.overlay
│  │  │  │  │  │ testcase.yaml
│  │  │  ├── counter
│  │  │  │  ├── counter_basic_api
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ nrf54l15dk_nrf54l15_cpuapp_ns.overlay
│  │  │  ├── flash
│  │  │  │  ├── common
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── mx25uw63_low_freq.overlay
│  │  │  │  │  │  ├── mx25uw63_single_io.overlay
│  │  │  │  │  │  ├── mx25uw63_single_io_4B_addr_sreset.overlay
│  │  │  │  │  │  ├── nrf52840dk_qer_none.overlay
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuapp.overlay
│  │  │  │  │  │  │ nrf54l15dk_remove_dt_sfdp.overlay
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── negative_tests
│  │  │  │  │  │ sysbuild.conf
│  │  │  ├── gpio
│  │  │  │  ├── gpio_basic_api
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ nrf54l15dk_nrf54l15_cpuapp_ns.overlay
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── gpio_get_direction
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ nrf54h20dk_nrf54h20_cpuppr.overlay
│  │  │  │  ├── gpio_hogs
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ nrf54h20dk_nrf54h20_cpuppr.overlay
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── gpio_nrf
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ nrf54h20dk_nrf54h20_cpuppr.overlay
│  │  │  ├── i2c
│  │  │  │  ├── i2c_nrfx_twim
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuppr.overlay
│  │  │  │  │  │  │ nrf54lm20dk_nrf54lm20a_cpuapp.overlay
│  │  │  │  │  ├── sysbuild
│  │  │  │  │  │  ├── vpr_launcher
│  │  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  │  │ nrf54h20dk_nrf54h20_cpuapp.overlay
│  │  │  │  │  │  │  │ prj.conf
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── i2c_target_api
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuppr.conf
│  │  │  │  │  │  │ nrf54h20dk_nrf54h20_cpuppr.overlay
│  │  │  │  │  ├── sysbuild
│  │  │  │  │  │  ├── vpr_launcher
│  │  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  │  │ nrf54h20dk_nrf54h20_cpuapp.overlay
│  │  │  │  │  │  │  │ prj.conf
│  │  │  │  │  │ testcase.yaml
│  │  │  ├── i2s
│  │  │  │  ├── i2s_api
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ nrf54l15dk_nrf54l15_cpuapp_ns.overlay
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ test_i2s_errors.c
│  │  │  │  ├── i2s_speed
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ nrf54l15dk_nrf54l15_cpuapp_ns.overlay
│  │  │  ├── mbox
│  │  │  │  ├── mbox_error_cases
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ nrf54lm20dk_nrf54lm20a_cpuapp.overlay
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  ├── mspi
│  │  │  │  ├── flash
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuapp.overlay
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpurad.conf
│  │  │  │  │  │  │ nrf54h20dk_nrf54h20_cpurad.overlay
│  │  │  │  │  │ testcase.yaml
│  │  │  ├── pwm
│  │  │  │  ├── pwm_gpio_loopback
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp_ns.conf
│  │  │  │  │  │  │ nrf54l15dk_nrf54l15_cpuapp_ns.overlay
│  │  │  │  │  │ testcase.yaml
│  │  │  ├── sensor
│  │  │  │  ├── temp_sensor
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ nrf54l15dk_nrf54l15_cpuapp_ns.overlay
│  │  │  ├── spi
│  │  │  │  ├── spi_controller_peripheral
│  │  │  │  │  ├── 1m333333hz.overlay
│  │  │  │  │  ├── 1mhz.overlay
│  │  │  │  │  ├── 250khz.overlay
│  │  │  │  │  ├── 2m666666hz.overlay
│  │  │  │  │  ├── 2mhz.overlay
│  │  │  │  │  ├── 4mhz.overlay
│  │  │  │  │  ├── 500khz.overlay
│  │  │  │  │  ├── 8mhz.overlay
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── nrf52840dk_nrf52840.overlay
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_common.dtsi
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuapp_fast.overlay
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuapp_fast_spis.overlay
│  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp_cross_domain.overlay
│  │  │  │  │  │  │ nrf54l15dk_nrf54l15_cpuapp_ns.overlay
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── spi_error_cases
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── spi_loopback
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuapp.conf
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuapp.overlay
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuppr.conf
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuppr_xip.conf
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuppr_xip.overlay
│  │  │  │  │  │  │ nrf54h20dk_nrf54h20_cpurad.conf
│  │  │  ├── timer
│  │  │  │  ├── nrf_grtc_timer
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuapp.overlay
│  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  │ nrf54l15dk_nrf54l15_cpuflpr.overlay
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  │  │ testcase.yaml
│  │  │  ├── uart
│  │  │  │  ├── uart_async_api
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuppr_xip.conf
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuppr_xip.overlay
│  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp_ns.conf
│  │  │  │  │  │  │ nrf54l15dk_nrf54l15_cpuapp_ns.overlay
│  │  │  │  ├── uart_async_dual
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_common.dtsi
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuapp.conf
│  │  │  │  │  │  │ nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  │  ├── sysbuild
│  │  │  │  │  │  ├── vpr_launcher
│  │  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  │  │ nrf54h20dk_nrf54h20_cpuapp.overlay
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── uart_elementary
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── uart_mix_fifo_poll
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── uart_pm
│  │  │  │  │  │ testcase.yaml
│  │  │  ├── watchdog
│  │  │  │  ├── wdt_basic_api
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── nrf52840dk_nrf52840_counter.conf
│  │  │  │  │  │  │ nrf54l15dk_nrf54l15_cpuapp_ns.overlay
│  │  │  │  │  │ testcase.yaml
│  │  ├── kernel
│  │  │  ├── pipe
│  │  │  │  ├── deprecated
│  │  │  │  │  ├── pipe_api
│  │  │  │  │  │  │ prj.conf
│  │  │  ├── sched
│  │  │  │  ├── schedule_api
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  │ prj_multiq.conf
│  │  │  ├── sleep
│  │  │  │  ├── src
│  │  │  │  │  │ usleep.c
│  │  │  ├── timer
│  │  │  │  ├── timer_behavior
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ nrf54h20dk_nrf54h20_cpuppr_xip.conf
│  │  ├── lib
│  │  │  ├── devicetree
│  │  │  │  ├── api
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  ├── newlib
│  │  │  │  ├── heap_listener
│  │  │  │  │  │ prj.conf
│  │  ├── net
│  │  │  ├── ipv6
│  │  │  │  │ prj.conf
│  │  │  ├── socket
│  │  │  │  ├── getaddrinfo
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  ├── tcp
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  ├── subsys
│  │  │  ├── dfu
│  │  │  │  ├── img_util
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  ├── fs
│  │  │  │  ├── fcb
│  │  │  │  │  │ sysbuild.conf
│  │  │  │  ├── littlefs
│  │  │  │  │  │ sysbuild.conf
│  │  │  │  ├── zms
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  │  │ testcase.yaml
│  │  │  ├── modem
│  │  │  │  ├── mock
│  │  │  │  │  ├── modem_backend_mock.c
│  │  │  │  │  │ modem_backend_mock.h
│  │  │  │  ├── modem_cmux
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── modem_cmux_pair
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── modem_pipe
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  ├── secure_storage
│  │  │  │  ├── psa
│  │  │  │  │  ├── crypto
│  │  │  │  │  │  │ testcase.yaml
│  │  │  │  │  ├── its
│  │  │  │  │  │  │ testcase.yaml
│  │  │  ├── settings
│  │  │  │  ├── its
│  │  │  │  │  │ testcase.yaml
│  │ west.yml

Outputs:

Toolchain

Version: 43683a87ea
Build docker image: docker-dtr.nordicsemi.no/sw-production/ncs-build:43683a87ea_5ea73affbf

Test Spec & Results: ✅ Success; ❌ Failure; 🟠 Queued; 🟡 Progress; ◻️ Skipped; ⚠️ Quarantine

  • ◻️ Toolchain - Skipped: existing toolchain is used
  • ✅ Build twister - Skipped: Skipping Build & Test as it succeeded in a previous run: 2
  • ❌ Integration tests
    • ✅ test-sdk-audio - Skipped: Job was skipped as it succeeded in a previous run
    • ✅ desktop52_verification
    • ✅ test_ble_nrf_config - Skipped: Job was skipped as it succeeded in a previous run
    • ❌ test-fw-nrfconnect-ble_mesh
    • ✅ test-fw-nrfconnect-ble_samples - Skipped: Job was skipped as it succeeded in a previous run
    • ✅ test-fw-nrfconnect-chip - Skipped: Job was skipped as it succeeded in a previous run
    • ✅ test-fw-nrfconnect-nfc - Skipped: Job was skipped as it succeeded in a previous run
    • ✅ test-fw-nrfconnect-nrf-iot_cloud
    • ❌ test-fw-nrfconnect-nrf-iot_libmodem-nrf
    • ✅ test-fw-nrfconnect-nrf-iot_zephyr_lwm2m - Skipped: Job was skipped as it succeeded in a previous run
    • ✅ test-fw-nrfconnect-nrf-iot_samples
    • ✅ test-fw-nrfconnect-nrf-iot_thingy91 - Skipped: Job was skipped as it succeeded in a previous run
    • ❌ test-fw-nrfconnect-nrf_crypto
    • ✅ test-fw-nrfconnect-rpc
    • ❌ test-fw-nrfconnect-rs
    • ❌ test-fw-nrfconnect-fem
    • ❌ test-fw-nrfconnect-tfm
    • ❌ test-fw-nrfconnect-thread-main
    • ✅ test-sdk-find-my - Skipped: Job was skipped as it succeeded in a previous run
    • ✅ test-fw-nrfconnect-nrf_lrcs_mosh
    • ✅ test-fw-nrfconnect-nrf_lrcs_positioning
    • ❌ test-sdk-wifi
    • ❌ test-low-level
    • ✅ test-sdk-mcuboot
    • ✅ test-sdk-dfu - Skipped: Job was skipped as it succeeded in a previous run
    • ⚠️ test-fw-nrfconnect-nrf_lrcs_mosh
    • ⚠️ test-fw-nrfconnect-nrf_lrcs_positioning
Disabled integration tests
    • test-fw-nrfconnect-apps
    • test-fw-nrfconnect-nrf-iot_lwm2m
    • test-fw-nrfconnect-ps-main
    • test-secdom-samples-public

Note: This message is automatically posted and updated by the CI

@github-actions
Copy link

You can find the documentation preview for this PR here.

Automatically created by action-manifest-pr GH action from PR:
nrfconnect/sdk-zephyr#3506

Signed-off-by: Nordic Builder <[email protected]>
@NordicBuilder NordicBuilder force-pushed the auto-manifest-sdk-zephyr-3506 branch from 20c002d to 9e81784 Compare November 18, 2025 09:43
@cvinayak cvinayak self-assigned this Nov 18, 2025
@cvinayak cvinayak changed the base branch from main to v3.2-branch December 9, 2025 11:56
@shanthanordic shanthanordic added this to the 3.2.1 milestone Dec 9, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

changelog-entry-required Update changelog before merge. Remove label if entry is not needed or already added. DNM manifest manifest-zephyr

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants