Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

manifest: sdk-zephyr: drivers: serial: Rework nrfx_uarte shim to support nrf54x platforms #17453

Conversation

NordicBuilder
Copy link
Contributor

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

@NordicBuilder NordicBuilder requested a review from a team as a code owner September 24, 2024 08:36
@github-actions github-actions bot added manifest changelog-entry-required Update changelog before merge. Remove label if entry is not needed or already added. labels Sep 24, 2024
@NordicBuilder
Copy link
Contributor Author

NordicBuilder commented Sep 24, 2024

The following west manifest projects have been modified in this Pull Request:

Name Old Revision New Revision Diff
zephyr nrfconnect/sdk-zephyr@5bb7bb0 nrfconnect/sdk-zephyr#2041 nrfconnect/sdk-zephyr#2041/files

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

@NordicBuilder
Copy link
Contributor Author

NordicBuilder commented Sep 24, 2024

CI Information

To view the history of this post, clich the 'edited' button above
Build number: 12

Inputs:

Sources:

nrf_hw_models: PR head: eeed2591d38e5e9bf89658df67555f2777249fc0
trusted-firmware-m: PR head: a11cd27905aecc4416cfc85552bfc3b997375056
sdk-nrf: PR head: 4bb6ca296f82ce6e0af2459b8a52b767592ec615
mcuboot: PR head: e890df7ab975da181a9f3fb3abc470bf935625ab
mbedtls: PR head: fb36f3fe20f9f62e67b1a20c0cfe0a6788ec2bf6
openthread: PR head: 2aeb8b833ba760ec29d5f340dd1ce7bcb61c5d56
zcbor: PR head: 47f34dd7f5284e8750b5a715dee7f77c6c5bdc3f
hostap: PR head: 9896a2ea803ec62e0998c0e569f12af88537d647
zephyr: PR head: 1073d45ea9cff8c73dcca75ff6c54df561596844

more details

nrf_hw_models:

PR head: eeed2591d38e5e9bf89658df67555f2777249fc0
merge base: d2a119a9c7600ce06033a794de042e0ad9a38702
Diff

trusted-firmware-m:

PR head: a11cd27905aecc4416cfc85552bfc3b997375056
merge base: 785d87492490069b62170159fcf21c385f90f4eb
Diff

sdk-nrf:

PR head: 4bb6ca296f82ce6e0af2459b8a52b767592ec615
merge base: 8f79b808386213196527d7c7a2dbe8b8671c34b1
target head (main): c673d2b5c544d59260a08a8b4531017c11dcd0a2
Diff

mcuboot:

PR head: e890df7ab975da181a9f3fb3abc470bf935625ab
merge base: 018dc01d484358d81f889c36471d9ce5590965b6
Diff

mbedtls:

PR head: fb36f3fe20f9f62e67b1a20c0cfe0a6788ec2bf6
merge base: 3217c450180fd5e817601c6f479116de69e57461
Diff

openthread:

PR head: 2aeb8b833ba760ec29d5f340dd1ce7bcb61c5d56
merge base: e10a92570f94ff1e0bc5e0da9ecf0ee135d955a6
Diff

zcbor:

PR head: 47f34dd7f5284e8750b5a715dee7f77c6c5bdc3f
merge base: b85a5508d473ef6d301d92eae2d721369a5a7665
Diff

hostap:

PR head: 9896a2ea803ec62e0998c0e569f12af88537d647
merge base: 83574f533fb5c6808af0d9872741d72d48be2f98
Diff

zephyr:

PR head: 1073d45ea9cff8c73dcca75ff6c54df561596844
merge base: 5bb7bb0af17cbdbd13c06ed5ea1268ec9b9358fc
target head (main): dded8c29fbd2e3930e865bb6986d472ccf266e3c
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 (16319)
bootloader
│  ├── mcuboot
│  │  ├── .github
│  │  │  ├── workflows
│  │  │  │  ├── imgtool.yaml
│  │  │  │  │ zephyr_build.yaml
│  │  ├── Cargo.toml
│  │  ├── README.md
│  │  ├── boot
│  │  │  ├── boot_serial
│  │  │  │  ├── src
│  │  │  │  │  ├── boot_serial.c
│  │  │  │  │  ├── boot_serial_encryption.c
│  │  │  │  │  │ boot_serial_priv.h
│  │  │  ├── bootutil
│  │  │  │  ├── include
│  │  │  │  │  ├── bootutil
│  │  │  │  │  │  ├── boot_record.h
│  │  │  │  │  │  ├── boot_status.h
│  │  │  │  │  │  ├── bootutil.h
│  │  │  │  │  │  ├── crypto
│  │  │  │  │  │  │  ├── aes_ctr.h
│  │  │  │  │  │  │  ├── aes_kw.h
│  │  │  │  │  │  │  ├── common.h
│  │  │  │  │  │  │  ├── ecdsa.h
│  │  │  │  │  │  │  │ sha.h
│  │  │  │  │  │  ├── enc_key.h
│  │  │  │  │  │  ├── fault_injection_hardening.h
│  │  │  │  │  │  │ image.h
│  │  │  │  ├── pkg.yml
│  │  │  │  ├── src
│  │  │  │  │  ├── boot_record.c
│  │  │  │  │  ├── bootutil_misc.c
│  │  │  │  │  ├── bootutil_priv.h
│  │  │  │  │  ├── encrypted.c
│  │  │  │  │  ├── image_ed25519.c
│  │  │  │  │  ├── image_validate.c
│  │  │  │  │  ├── loader.c
│  │  │  │  │  ├── swap_move.c
│  │  │  │  │  │ swap_scratch.c
│  │  │  ├── espressif
│  │  │  │  ├── hal
│  │  │  │  │  ├── include
│  │  │  │  │  │  ├── esp32c6
│  │  │  │  │  │  │  │ esp32c6.cmake
│  │  │  │  │  │  ├── esp32h2
│  │  │  │  │  │  │  │ esp32h2.cmake
│  │  │  ├── mynewt
│  │  │  │  │ pkg.yml
│  │  │  ├── zephyr
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.serial_recovery
│  │  │  │  ├── boards
│  │  │  │  │  ├── frdm_mcxn947_mcxn947_cpu0.conf
│  │  │  │  │  ├── frdm_mcxn947_mcxn947_cpu0_qspi.conf
│  │  │  │  │  ├── frdm_mcxn947_mcxn947_cpu0_qspi.overlay
│  │  │  │  │  ├── mimxrt1050_evk_mimxrt1052.conf
│  │  │  │  │  ├── mimxrt1062_fmurt6.conf
│  │  │  │  │  ├── mimxrt1160_evk_mimxrt1166_cm7.conf
│  │  │  │  │  ├── mimxrt1170_evk_mimxrt1176_cm7.conf
│  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp.conf
│  │  │  │  │  ├── nrf54l15pdk_nrf54l15_cpuapp.conf
│  │  │  │  │  ├── nrf9161dk_nrf9161_0_7_0.conf
│  │  │  │  │  ├── thingy52_nrf52832.conf
│  │  │  │  │  ├── thingy53_nrf5340_cpuapp.conf
│  │  │  │  │  │ vmu_rt1170_mimxrt1176_cm7.conf
│  │  │  │  ├── include
│  │  │  │  │  ├── mcuboot_config
│  │  │  │  │  │  │ mcuboot_config.h
│  │  │  │  ├── kernel
│  │  │  │  │  │ banner.c
│  │  │  │  ├── main.c
│  │  │  │  ├── socs
│  │  │  │  │  ├── esp32c2.conf
│  │  │  │  │  │ esp32c6.conf
│  │  │  │  ├── sysbuild
│  │  │  │  │  │ CMakeLists.txt
│  │  ├── ci
│  │  │  ├── fih-tests_install.sh
│  │  │  ├── fih-tests_run.sh
│  │  │  ├── fih-tests_version.sh
│  │  │  ├── fih_test_docker
│  │  │  │  ├── docker-build
│  │  │  │  │  │ Dockerfile
│  │  │  │  ├── execute_test.sh
│  │  │  │  ├── fi_tester_gdb.sh
│  │  │  │  ├── paths.sh
│  │  │  │  │ run_fi_test.sh
│  │  ├── docs
│  │  │  ├── Gemfile.lock
│  │  │  ├── encrypted_images.md
│  │  │  ├── index.md
│  │  │  ├── readme-zephyr.md
│  │  │  ├── release-notes.d
│  │  │  │  ├── bootutil-enc-hw-keys.md
│  │  │  │  ├── bootutil-image-verification.md
│  │  │  │  ├── encrypted-scratch-partition.md
│  │  │  │  ├── fix-nordic.md
│  │  │  │  ├── fix-ram-load-zephyr-address.md
│  │  │  │  ├── fix-zephyr-sysbuild-name.md
│  │  │  │  ├── imgtool_sanity_test.md
│  │  │  │  ├── max-app-size-changes.md
│  │  │  │  ├── serial-recovery-slot-info.md
│  │  │  │  ├── zephyr-auto-max-sectors.md
│  │  │  │  │ zephyr-compression.md
│  │  ├── ext
│  │  │  ├── fiat
│  │  │  │  ├── src
│  │  │  │  │  │ curve25519.c
│  │  ├── samples
│  │  │  ├── mcuboot_config
│  │  │  │  │ mcuboot_config.template.h
│  │  ├── scripts
│  │  │  ├── imgtool.nix
│  │  │  ├── imgtool
│  │  │  │  ├── boot_record.py
│  │  │  │  ├── dumpinfo.py
│  │  │  │  ├── image.py
│  │  │  │  ├── keys
│  │  │  │  │  ├── ecdsa_test.py
│  │  │  │  │  ├── ed25519.py
│  │  │  │  │  ├── ed25519_test.py
│  │  │  │  │  ├── general.py
│  │  │  │  │  │ rsa_test.py
│  │  │  │  ├── main.py
│  │  │  │  │ version.py
│  │  │  ├── requirements.txt
│  │  │  ├── setup.py
│  │  │  ├── tests
│  │  │  │  ├── conftest.py
│  │  │  │  ├── test_commands.py
│  │  │  │  │ test_keys.py
│  │  ├── sim
│  │  │  ├── mcuboot-sys
│  │  │  │  ├── build.rs
│  │  │  │  ├── src
│  │  │  │  │  ├── api.rs
│  │  │  │  │  ├── area.rs
│  │  │  │  │  │ c.rs
│  │  │  ├── src
│  │  │  │  │ image.rs
zephyr
│  ├── boards
│  │  ├── arduino
│  │  │  ├── opta
│  │  │  │  ├── arduino_opta_stm32h747xx_m7_defconfig
│  │  │  │  ├── board.cmake
│  │  │  │  ├── board_gpio_hse.c
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  │  ├── dts
│  │  │  │  │  ├── bindings
│  │  │  │  │  │  │ gpio-power-switches.yaml
│  │  │  │  ├── support
│  │  │  │  │  │ openocd_opta_stm32h747xx_m7.cfg
│  │  │  ├── portenta_h7
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── arduino_portenta_h7-common.dtsi
│  │  │  │  ├── arduino_portenta_h7_stm32h747xx_m4.dts
│  │  │  │  ├── arduino_portenta_h7_stm32h747xx_m4.yaml
│  │  │  │  ├── arduino_portenta_h7_stm32h747xx_m4_defconfig
│  │  │  │  ├── arduino_portenta_h7_stm32h747xx_m7.dts
│  │  │  │  ├── arduino_portenta_h7_stm32h747xx_m7_1_0_0.overlay
│  │  │  │  ├── arduino_portenta_h7_stm32h747xx_m7_4_10_0.overlay
│  │  │  │  ├── arduino_portenta_h7_stm32h747xx_m7_defconfig
│  │  │  │  ├── board.yml
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  ├── uno_r4
│  │  │  │  │ arduino_uno_r4_common.dtsi
│  │  │  ├── zero
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  ├── arm
│  │  │  ├── fvp_base_revc_2xaemv8a
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  ├── mps2
│  │  │  │  ├── doc
│  │  │  │  │  ├── mps2_an385.rst
│  │  │  │  │  │ mps2_an521.rst
│  │  │  │  ├── mps2_an385.dts
│  │  │  │  ├── mps2_an385.yaml
│  │  │  │  │ mps2_an521_cpu0_ns.yaml
│  │  │  ├── mps3
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  │  ├── mps3_an547.dts
│  │  │  │  ├── mps3_an547_ns.dts
│  │  │  │  │ mps3_an547_ns.yaml
│  │  │  ├── v2m_beetle
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  │  ├── support
│  │  │  │  │  │ openocd.cfg
│  │  │  ├── v2m_musca_b1
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  ├── v2m_musca_s1
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  ├── atmarktechno
│  │  │  ├── degu_evk
│  │  │  │  ├── Kconfig
│  │  │  │  │ degu_evk.dts
│  │  ├── atmel
│  │  │  ├── sam
│  │  │  │  ├── sam4e_xpro
│  │  │  │  │  ├── doc
│  │  │  │  │  │  │ index.rst
│  │  │  │  ├── sam4l_ek
│  │  │  │  │  ├── doc
│  │  │  │  │  │  │ index.rst
│  │  │  │  ├── sam4s_xplained
│  │  │  │  │  ├── doc
│  │  │  │  │  │  │ index.rst
│  │  │  │  ├── sam_e70_xplained
│  │  │  │  │  ├── doc
│  │  │  │  │  │  │ index.rst
│  │  │  │  │  ├── sam_e70_xplained-common.dtsi
│  │  │  │  │  ├── sam_e70_xplained-pinctrl.dtsi
│  │  │  │  │  │ sam_e70_xplained_same70q21.dts
│  │  │  │  ├── sam_v71_xult
│  │  │  │  │  ├── doc
│  │  │  │  │  │  │ index.rst
│  │  │  ├── sam0
│  │  │  │  ├── samd20_xpro
│  │  │  │  │  ├── doc
│  │  │  │  │  │  │ index.rst
│  │  │  │  ├── samd21_xpro
│  │  │  │  │  │ samd21_xpro.yaml
│  │  │  │  ├── saml21_xpro
│  │  │  │  │  │ saml21_xpro.yaml
│  │  │  │  ├── samr21_xpro
│  │  │  │  │  ├── doc
│  │  │  │  │  │  │ index.rst
│  │  │  │  ├── samr34_xpro
│  │  │  │  │  │ samr34_xpro.yaml
│  │  ├── bbc
│  │  │  ├── microbit
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  ├── microbit_v2
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  ├── bcdevices
│  │  │  ├── plt_demo_v2
│  │  │  │  ├── Kconfig
│  │  │  │  ├── blueclover_plt_demo_v2_nrf52832.dts
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  ├── beagle
│  │  │  ├── beagleconnect_freedom
│  │  │  │  ├── beagleconnect_freedom-pinctrl.dtsi
│  │  │  │  ├── beagleconnect_freedom.dts
│  │  │  │  │ board_antenna.c
│  │  │  ├── beaglev_fire
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.beaglev_fire
│  │  │  │  ├── beaglev_fire.dts
│  │  │  │  ├── beaglev_fire.yaml
│  │  │  │  ├── beaglev_fire_common.dtsi
│  │  │  │  ├── beaglev_fire_defconfig
│  │  │  │  ├── beaglev_fire_polarfire_e51.dts
│  │  │  │  ├── beaglev_fire_polarfire_e51.yaml
│  │  │  │  ├── beaglev_fire_polarfire_e51_defconfig
│  │  │  │  ├── beaglev_fire_polarfire_u54.dts
│  │  │  │  ├── beaglev_fire_polarfire_u54.yaml
│  │  │  │  ├── beaglev_fire_polarfire_u54_defconfig
│  │  │  │  ├── beaglev_fire_polarfire_u54_smp.dts
│  │  │  │  ├── beaglev_fire_polarfire_u54_smp.yaml
│  │  │  │  ├── beaglev_fire_polarfire_u54_smp_defconfig
│  │  │  │  ├── board.yml
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  ├── blues
│  │  │  ├── swan_r5
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  │  │ swan_r5_defconfig
│  │  ├── bytesatwork
│  │  │  ├── bytesensi_l
│  │  │  │  ├── Kconfig.bytesensi_l
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── board.cmake
│  │  │  │  ├── board.yml
│  │  │  │  ├── bytesensi_l.dts
│  │  │  │  ├── bytesensi_l.yaml
│  │  │  │  ├── bytesensi_l_defconfig
│  │  │  │  ├── bytesensi_l_pinctrl.dtsi
│  │  │  │  ├── doc
│  │  │  │  │  ├── img
│  │  │  │  │  │  │ byteSENSI-L.jpg
│  │  │  │  │  │ index.rst
│  │  │  │  │ pre_dt_board.cmake
│  │  │  │ index.rst
│  │  ├── cdns
│  │  │  ├── xt-sim
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  ├── circuitdojo
│  │  │  ├── feather
│  │  │  │  ├── circuitdojo_feather_nrf9160_common.dtsi
│  │  │  │  ├── circuitdojo_feather_nrf9160_ns.dts
│  │  │  │  ├── circuitdojo_feather_nrf9160_partition_conf.dtsi
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  ├── common
│  │  │  ├── probe-rs.board.cmake
│  │  │  ├── renode.board.cmake
│  │  │  ├── renode_robot.board.cmake
│  │  │  │ simics.board.cmake
│  │  ├── contextualelectronics
│  │  │  ├── abc
│  │  │  │  ├── Kconfig
│  │  │  │  ├── contextualelectronics_abc.dts
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  ├── croxel
│  │  │  ├── croxel_cx1825
│  │  │  │  ├── Kconfig
│  │  │  │  ├── croxel_cx1825_nrf52840.dts
│  │  │  │  ├── croxel_cx1825_nrf52840.yaml
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  ├── ct
│  │  │  ├── ctcc
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.ctcc
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── board.cmake
│  │  │  │  ├── board.yml
│  │  │  │  ├── ctcc_nrf52840.dts
│  │  │  │  ├── ctcc_nrf52840.yaml
│  │  │  │  ├── ctcc_nrf52840_defconfig
│  │  │  │  ├── doc
│  │  │  │  │  ├── img
│  │  │  │  │  │  ├── ctcc_nrf52840_m2.webp
│  │  │  │  │  │  │ ctcc_nrf52840_mpcie.webp
│  │  │  │  │  │ index.rst
│  │  │  │  │ pre_dt_board.cmake
│  │  │  │ index.rst
│  │  ├── cypress
│  │  │  ├── cy8ckit_062_ble
│  │  │  │  ├── cy8ckit_062_ble_common.dtsi
│  │  │  │  ├── cy8ckit_062_ble_cy8c6347-pinctrl.dtsi
│  │  │  │  ├── cy8ckit_062_ble_cy8c6347_m0_0_0_0.overlay
│  │  │  │  ├── cy8ckit_062_ble_cy8c6347_m0_1_0_0.overlay
│  │  │  │  ├── cy8ckit_062_ble_cy8c6347_m4_0_0_0.overlay
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  ├── cy8ckit_062_wifi_bt
│  │  │  │  ├── cy8ckit_062_wifi_bt_cy8c6247-pinctrl.dtsi
│  │  │  │  ├── cy8ckit_062_wifi_bt_cy8c6247_m0.dts
│  │  │  │  │ cy8ckit_062_wifi_bt_cy8c6247_m4.dts
│  │  ├── deprecated.cmake
│  │  ├── digilent
│  │  │  ├── arty_a7
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  │  ├── dts
│  │  │  │  │  │ arty_a7_arm_designstart.dtsi
│  │  │  │  ├── support
│  │  │  │  │  ├── openocd_arty_a7_arm_designstart_m1.cfg
│  │  │  │  │  │ openocd_arty_a7_arm_designstart_m3.cfg
│  │  │  ├── zybo
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  ├── dptechnics
│  │  │  ├── index.rst
│  │  │  ├── walter
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  ├── Kconfig.walter
│  │  │  │  ├── board.cmake
│  │  │  │  ├── board.yml
│  │  │  │  ├── doc
│  │  │  │  │  ├── img
│  │  │  │  │  │  │ walter.webp
│  │  │  │  │  │ index.rst
│  │  │  │  ├── support
│  │  │  │  │  │ openocd.cfg
│  │  │  │  ├── walter-pinctrl.dtsi
│  │  │  │  ├── walter_esp32s3_appcpu.dts
│  │  │  │  ├── walter_esp32s3_appcpu.yaml
│  │  │  │  ├── walter_esp32s3_appcpu_defconfig
│  │  │  │  ├── walter_esp32s3_procpu.dts
│  │  │  │  ├── walter_esp32s3_procpu.yaml
│  │  │  │  │ walter_esp32s3_procpu_defconfig
│  │  ├── dragino
│  │  │  ├── lsn50
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  │  │ dragino_lsn50_defconfig
│  │  │  ├── nbsn95
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  │  │ dragino_nbsn95_defconfig
│  │  ├── electronut
│  │  │  ├── nrf52840_blip
│  │  │  │  ├── Kconfig
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  │  │ nrf52840_blip.dts
│  │  │  ├── nrf52840_papyr
│  │  │  │  ├── Kconfig
│  │  │  │  ├── doc
│  │  │  │  │  │ nrf52840_papyr.rst
│  │  │  │  │ nrf52840_papyr.dts
│  │  ├── element14
│  │  │  ├── warp7
│  │  │  │  │ Kconfig.defconfig
│  │  ├── enjoydigital
│  │  │  ├── litex_vexriscv
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  │  ├── litex_vexriscv.dts
│  │  │  │  ├── litex_vexriscv.yaml
│  │  │  │  │ litex_vexriscv_defconfig
│  │  ├── espressif
│  │  │  ├── esp32_devkitc_wroom
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  │  ├── esp32_devkitc_wroom_appcpu.dts
│  │  │  │  │ esp32_devkitc_wroom_procpu.dts
│  │  │  ├── esp32_devkitc_wrover
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  │  ├── esp32_devkitc_wrover_appcpu.dts
│  │  │  │  │ esp32_devkitc_wrover_procpu.dts
│  │  │  ├── esp32_ethernet_kit
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  │  ├── esp32_ethernet_kit_appcpu.dts
│  │  │  │  │ esp32_ethernet_kit_procpu.dts
│  │  │  ├── esp32c3_devkitc
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── Kconfig.esp32c3_devkitc
│  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  ├── board.cmake
│  │  │  │  ├── board.yml
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  │  ├── esp32c3_devkitc-pinctrl.dtsi
│  │  │  │  ├── esp32c3_devkitc.dts
│  │  │  │  ├── esp32c3_devkitc.yaml
│  │  │  │  ├── esp32c3_devkitc_defconfig
│  │  │  │  ├── support
│  │  │  │  │  │ openocd.cfg
│  │  │  ├── esp32c3_devkitm
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  │  ├── esp32c3_devkitm-pinctrl.dtsi
│  │  │  │  ├── esp32c3_devkitm.dts
│  │  │  │  ├── esp32c3_devkitm.yaml
│  │  │  │  ├── support
│  │  │  │  │  │ openocd.cfg
│  │  │  ├── esp32c3_rust
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── Kconfig.esp32c3_rust
│  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  ├── board.cmake
│  │  │  │  ├── board.yml
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  │  ├── esp32c3_rust-pinctrl.dtsi
│  │  │  │  ├── esp32c3_rust.dts
│  │  │  │  ├── esp32c3_rust.yaml
│  │  │  │  ├── esp32c3_rust_defconfig
│  │  │  │  ├── support
│  │  │  │  │  │ openocd.cfg
│  │  │  ├── esp32c6_devkitc
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── Kconfig.esp32c6_devkitc
│  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  ├── board.cmake
│  │  │  │  ├── board.yml
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  │  ├── esp32c6_devkitc-pinctrl.dtsi
│  │  │  │  ├── esp32c6_devkitc.dts
│  │  │  │  ├── esp32c6_devkitc.yaml
│  │  │  │  ├── esp32c6_devkitc_defconfig
│  │  │  │  ├── support
│  │  │  │  │  │ openocd.cfg
│  │  │  ├── esp32s2_devkitc
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  │  │ esp32s2_devkitc.dts
│  │  │  ├── esp32s2_saola
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  │  │ esp32s2_saola.dts
│  │  │  ├── esp32s3_devkitc
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  │  ├── esp32s3_devkitc-pinctrl.dtsi
│  │  │  │  ├── esp32s3_devkitc_appcpu.dts
│  │  │  │  ├── esp32s3_devkitc_procpu.dts
│  │  │  │  │ esp32s3_devkitc_procpu.yaml
│  │  │  ├── esp32s3_devkitm
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  │  ├── esp32s3_devkitm-pinctrl.dtsi
│  │  │  │  ├── esp32s3_devkitm_appcpu.dts
│  │  │  │  ├── esp32s3_devkitm_procpu.dts
│  │  │  │  │ esp32s3_devkitm_procpu.yaml
│  │  │  ├── esp32s3_eye
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── Kconfig.esp32s3_eye
│  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  ├── board.cmake
│  │  │  │  ├── board.yml
│  │  │  │  ├── doc
│  │  │  │  │  ├── img
│  │  │  │  │  │  ├── ESP32-S3-EYE-isometric.webp
│  │  │  │  │  │  ├── ESP32-S3-EYE_20210913_V03_SystemBlock.webp
│  │  │  │  │  │  ├── ESP32-S3-EYE_MB-annotated-photo.webp
│  │  │  │  │  │  │ ESP32-S3-EYE_SUB-annotated-photo.webp
│  │  │  │  │  │ index.rst
│  │  │  │  ├── esp32s3_eye-pinctrl.dtsi
│  │  │  │  ├── esp32s3_eye_appcpu.dts
│  │  │  │  ├── esp32s3_eye_appcpu.yaml
│  │  │  │  ├── esp32s3_eye_appcpu_defconfig
│  │  │  │  ├── esp32s3_eye_procpu.dts
│  │  │  │  ├── esp32s3_eye_procpu.yaml
│  │  │  │  ├── esp32s3_eye_procpu_defconfig
│  │  │  │  ├── support
│  │  │  │  │  │ openocd.cfg
│  │  │  ├── esp8684_devkitm
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── Kconfig.esp8684_devkitm
│  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  ├── board.cmake
│  │  │  │  ├── board.yml
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  │  ├── esp8684_devkitm-pinctrl.dtsi
│  │  │  │  ├── esp8684_devkitm.dts
│  │  │  │  ├── esp8684_devkitm.yaml
│  │  │  │  ├── esp8684_devkitm_defconfig
│  │  │  │  ├── support
│  │  │  │  │  │ openocd.cfg
│  │  │  ├── esp_wrover_kit
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  │  ├── esp_wrover_kit_appcpu.dts
│  │  │  │  │ esp_wrover_kit_procpu.dts
│  │  ├── ezurio
│  │  │  ├── bl5340_dvk
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.bl5340_dvk
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── bl5340_dvk_nrf5340_cpuapp.dts
│  │  │  │  ├── bl5340_dvk_nrf5340_cpuapp.yaml
│  │  │  │  ├── bl5340_dvk_nrf5340_cpuapp_common-pinctrl.dtsi
│  │  │  │  ├── bl5340_dvk_nrf5340_cpuapp_common.dtsi
│  │  │  │  ├── bl5340_dvk_nrf5340_cpuapp_defconfig
│  │  │  │  ├── bl5340_dvk_nrf5340_cpuapp_ns.dts
│  │  │  │  ├── bl5340_dvk_nrf5340_cpuapp_ns.yaml
│  │  │  │  ├── bl5340_dvk_nrf5340_cpuapp_ns_defconfig
│  │  │  │  ├── bl5340_dvk_nrf5340_cpuapp_partition_conf.dtsi
│  │  │  │  ├── bl5340_dvk_nrf5340_cpunet-pinctrl.dtsi
│  │  │  │  ├── bl5340_dvk_nrf5340_cpunet.dts
│  │  │  │  ├── bl5340_dvk_nrf5340_cpunet.yaml
│  │  │  │  ├── bl5340_dvk_nrf5340_cpunet_common.dtsi
│  │  │  │  ├── bl5340_dvk_nrf5340_cpunet_defconfig
│  │  │  │  ├── bl5340_dvk_nrf5340_shared_sram_planning_conf.dtsi
│  │  │  │  ├── board.cmake
│  │  │  │  ├── board.yml
│  │  │  │  ├── doc
│  │  │  │  │  ├── img
│  │  │  │  │  │  │ bl5340_dvk_top.jpg
│  │  │  │  │  │ index.rst
│  │  │  │  │ pre_dt_board.cmake
│  │  │  ├── bl652_dvk
│  │  │  │  ├── Kconfig.bl652_dvk
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── bl652_dvk-pinctrl.dtsi
│  │  │  │  ├── bl652_dvk.dts
│  │  │  │  ├── bl652_dvk.yaml
│  │  │  │  ├── bl652_dvk_defconfig
│  │  │  │  ├── board.cmake
│  │  │  │  ├── board.yml
│  │  │  │  ├── doc
│  │  │  │  │  ├── bl652_dvk.rst
│  │  │  │  │  ├── img
│  │  │  │  │  │  ├── BL652-SA_DVK_BoxContents.jpg
│  │  │  │  │  │  │ bl652_dvk.jpg
│  │  │  │  │ pre_dt_board.cmake
│  │  │  ├── bl653_dvk
│  │  │  │  ├── Kconfig.bl653_dvk
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── bl653_dvk-pinctrl.dtsi
│  │  │  │  ├── bl653_dvk.dts
│  │  │  │  ├── bl653_dvk.yaml
│  │  │  │  ├── bl653_dvk_defconfig
│  │  │  │  ├── board.cmake
│  │  │  │  ├── board.yml
│  │  │  │  ├── doc
│  │  │  │  │  ├── bl653_dvk.rst
│  │  │  │  │  ├── img
│  │  │  │  │  │  │ bl653_dvk.jpg
│  │  │  │  │ pre_dt_board.cmake
│  │  │  ├── bl654_dvk
│  │  │  │  ├── Kconfig.bl654_dvk
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── bl654_dvk-pinctrl.dtsi
│  │  │  │  ├── bl654_dvk.dts
│  │  │  │  ├── bl654_dvk.yaml
│  │  │  │  ├── bl654_dvk_defconfig
│  │  │  │  ├── bl654_dvk_nrf52840_pa.dts
│  │  │  │  ├── bl654_dvk_nrf52840_pa.yaml
│  │  │  │  ├── bl654_dvk_nrf52840_pa_defconfig
│  │  │  │  ├── board.cmake
│  │  │  │  ├── board.yml
│  │  │  │  ├── doc
│  │  │  │  │  ├── bl654_dvk.rst
│  │  │  │  │  ├── img
│  │  │  │  │  │  ├── 455-00001_BoxContents.jpg
│  │  │  │  │  │  │ bl654_dvk.jpg
│  │  │  │  │ pre_dt_board.cmake
│  │  │  ├── bl654_sensor_board
│  │  │  │  ├── Kconfig.bl654_sensor_board
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── bl654_sensor_board-pinctrl.dtsi
│  │  │  │  ├── bl654_sensor_board.dts
│  │  │  │  ├── bl654_sensor_board.yaml
│  │  │  │  ├── bl654_sensor_board_defconfig
│  │  │  │  ├── board.cmake
│  │  │  │  ├── board.yml
│  │  │  │  ├── doc
│  │  │  │  │  ├── bl654_sensor_board.rst
│  │  │  │  │  ├── img
│  │  │  │  │  │  ├── bl654_sensor_board.jpg
│  │  │  │  │  │  │ bl654_sensor_board_usb_swd_programmer.jpg
│  │  │  │  │ pre_dt_board.cmake
│  │  │  ├── bl654_usb
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.bl654_usb
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── bl654_usb-pinctrl.dtsi
│  │  │  │  ├── bl654_usb.dts
│  │  │  │  ├── bl654_usb.yaml
│  │  │  │  ├── bl654_usb_defconfig
│  │  │  │  ├── board.yml
│  │  │  │  ├── doc
│  │  │  │  │  ├── bl654_usb.rst
│  │  │  │  │  ├── img
│  │  │  │  │  │  ├── bl654_usb.jpg
│  │  │  │  │  │  ├── bl654_usb_pcb.jpg
│  │  │  │  │  │  │ bl654_usb_reset.jpg
│  │  │  │  │ pre_dt_board.cmake
│  │  │  ├── bt510
│  │  │  │  ├── Kconfig.bt510
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── board.cmake
│  │  │  │  ├── board.yml
│  │  │  │  ├── bt510-pinctrl.dtsi
│  │  │  │  ├── bt510.dts
│  │  │  │  ├── bt510.yaml
│  │  │  │  ├── bt510_defconfig
│  │  │  │  ├── doc
│  │  │  │  │  ├── bt510.rst
│  │  │  │  │  ├── img
│  │  │  │  │  │  ├── bt510.jpg
│  │  │  │  │  │  ├── bt510_back.jpg
│  │  │  │  │  │  │ bt510_prog.jpg
│  │  │  │  │ pre_dt_board.cmake
│  │  │  ├── bt610
│  │  │  │  ├── Kconfig.bt610
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── board.cmake
│  │  │  │  ├── board.yml
│  │  │  │  ├── bt610-pinctrl.dtsi
│  │  │  │  ├── bt610.dts
│  │  │  │  ├── bt610.yaml
│  │  │  │  ├── bt610_defconfig
│  │  │  │  ├── doc
│  │  │  │  │  ├── bt610.rst
│  │  │  │  │  ├── img
│  │  │  │  │  │  ├── bt610_back.jpg
│  │  │  │  │  │  ├── bt610_board.jpg
│  │  │  │  │  │  │ bt610_front.jpg
│  │  │  │  │ pre_dt_board.cmake
│  │  │  ├── index.rst
│  │  │  ├── mg100
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── Kconfig.mg100
│  │  │  │  ├── board.cmake
│  │  │  │  ├── board.yml
│  │  │  │  ├── doc
│  │  │  │  │  ├── img
│  │  │  │  │  │  │ mg100.jpg
│  │  │  │  │  │ index.rst
│  │  │  │  ├── mg100-pinctrl.dtsi
│  │  │  │  ├── mg100.dts
│  │  │  │  ├── mg100.yaml
│  │  │  │  ├── mg100_defconfig
│  │  │  │  │ pre_dt_board.cmake
│  │  │  ├── pinnacle_100_dvk
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── Kconfig.pinnacle_100_dvk
│  │  │  │  ├── board.cmake
│  │  │  │  ├── board.yml
│  │  │  │  ├── doc
│  │  │  │  │  ├── img
│  │  │  │  │  │  │ pinnacle_100_dvk.jpg
│  │  │  │  │  │ index.rst
│  │  │  │  ├── pinnacle_100_dvk-pinctrl.dtsi
│  │  │  │  ├── pinnacle_100_dvk.dts
│  │  │  │  ├── pinnacle_100_dvk.yaml
│  │  │  │  ├── pinnacle_100_dvk_defconfig
│  │  │  │  │ pre_dt_board.cmake
│  │  │  ├── rm1xx_dvk
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── Kconfig.rm1xx_dvk
│  │  │  │  ├── board.cmake
│  │  │  │  ├── board.yml
│  │  │  │  ├── doc
│  │  │  │  │  ├── img
│  │  │  │  │  │  ├── RM186-DVK.jpg
│  │  │  │  │  │  │ RM186-SM.jpg
│  │  │  │  │  │ index.rst
│  │  │  │  ├── pre_dt_board.cmake
│  │  │  │  ├── rm1xx_dvk-pinctrl.dtsi
│  │  │  │  ├── rm1xx_dvk.dts
│  │  │  │  ├── rm1xx_dvk.yaml
│  │  │  │  │ rm1xx_dvk_defconfig
│  ├── samples
│  │  ├── drivers
│  │  │  ├── adc
│  │  │  │  ├── adc_dt
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── apollo3_evb.conf
│  │  │  │  │  │  ├── apollo3_evb.overlay
│  │  │  │  │  │  ├── apollo3p_evb.conf
│  │  │  │  │  │  ├── apollo3p_evb.overlay
│  │  │  │  │  │  ├── apollo4p_evb.overlay
│  │  │  │  │  │  ├── beagleconnect_freedom.overlay
│  │  │  │  │  │  ├── frdm_mcxn947_mcxn947_cpu0_qspi.overlay
│  │  │  │  │  │  ├── frdm_rw612.overlay
│  │  │  │  │  │  ├── gd32f350r_eval.overlay
│  │  │  │  │  │  ├── gd32l233r_eval.overlay
│  │  │  │  │  │  ├── gd32vf103v_eval.overlay
│  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  ├── nrf54l15pdk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  ├── nucleo_c031c6.overlay
│  │  │  │  │  │  ├── nucleo_h563zi.overlay
│  │  │  │  │  │  ├── nucleo_h7a3zi_q.overlay
│  │  │  │  │  │  ├── nucleo_u575zi_q.overlay
│  │  │  │  │  │  ├── rd_rw612_bga.overlay
│  │  │  │  │  │  ├── s32z2xxdc2_s32z270_rtu0.overlay
│  │  │  │  │  │  ├── s32z2xxdc2_s32z270_rtu1.overlay
│  │  │  │  │  │  ├── slstk3402a.overlay
│  │  │  │  │  │  ├── stm32h573i_dk.overlay
│  │  │  │  │  │  ├── stm32h735g_disco.overlay
│  │  │  │  │  │  ├── stm32l496g_disco.overlay
│  │  │  │  │  │  │ ucans32k1sic.overlay
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── adc_sequence
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  ├── nrf54l15pdk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  ├── s32z2xxdc2_s32z270_rtu0.conf
│  │  │  │  │  │  ├── s32z2xxdc2_s32z270_rtu0.overlay
│  │  │  │  │  │  ├── s32z2xxdc2_s32z270_rtu1.conf
│  │  │  │  │  │  ├── s32z2xxdc2_s32z270_rtu1.overlay
│  │  │  │  │  │  ├── sam_v71_xult_samv71q21.conf
│  │  │  │  │  │  ├── sam_v71_xult_samv71q21.overlay
│  │  │  │  │  │  ├── sam_v71_xult_samv71q21b.conf
│  │  │  │  │  │  ├── sam_v71_xult_samv71q21b.overlay
│  │  │  │  │  │  │ ucans32k1sic.overlay
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  ├── audio
│  │  │  │  ├── dmic
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── mimxrt595_evk_mimxrt595s_cm33.overlay
│  │  │  │  │  │  │ rd_rw612_bga.overlay
│  │  │  ├── auxdisplay
│  │  │  │  │ README.rst
│  │  │  ├── charger
│  │  │  │  │ README.rst
│  │  │  ├── clock_control_litex
│  │  │  │  │ README.rst
│  │  │  ├── counter
│  │  │  │  ├── alarm
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── apard32690_max32690_m4.overlay
│  │  │  │  │  │  ├── arduino_due.overlay
│  │  │  │  │  │  ├── esp32c3_luatos_core_esp32c3_usb.overlay
│  │  │  │  │  │  ├── max32655evkit_max32655_m4.overlay
│  │  │  │  │  │  ├── max32655fthr_max32655_m4.overlay
│  │  │  │  │  │  ├── max32662evkit.overlay
│  │  │  │  │  │  ├── max32666evkit_max32666_cpu0.overlay
│  │  │  │  │  │  ├── max32666fthr_max32666_cpu0.overlay
│  │  │  │  │  │  ├── max32670evkit.overlay
│  │  │  │  │  │  ├── max32672evkit.overlay
│  │  │  │  │  │  ├── max32672fthr.overlay
│  │  │  │  │  │  ├── max32680evkit_max32680_m4.overlay
│  │  │  │  │  │  ├── max32690evkit_max32690_m4.overlay
│  │  │  │  │  │  ├── mr_canhubk3.overlay
│  │  │  │  │  │  ├── sam4e_xpro.overlay
│  │  │  │  │  │  ├── sam4s_xplained.overlay
│  │  │  │  │  │  ├── sam_e70_xplained_same70q21.overlay
│  │  │  │  │  │  ├── sam_e70_xplained_same70q21b.overlay
│  │  │  │  │  │  ├── sam_v71_xult_samv71q21.overlay
│  │  │  │  │  │  │ sam_v71_xult_samv71q21b.overlay
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── socs
│  │  │  │  │  │  │ esp32c3.overlay
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── maxim_ds3231
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ sltb004a.overlay
│  │  │  │  │  │ sample.yaml
│  │  │  ├── crypto
│  │  │  │  ├── boards
│  │  │  │  │  │ da1469x_dk_pro.overlay
│  │  │  │  ├── prj_mtls_shim.conf
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── dac
│  │  │  │  ├── README.rst
│  │  │  │  ├── boards
│  │  │  │  │  ├── frdm_mcxn947.overlay
│  │  │  │  │  ├── frdm_mcxn947_mcxn947_cpu0.overlay
│  │  │  │  │  ├── frdm_mcxn947_mcxn947_cpu0_qspi.overlay
│  │  │  │  │  ├── frdm_rw612.overlay
│  │  │  │  │  │ lpcxpresso55s36.overlay
│  │  │  ├── display
│  │  │  │  ├── README.rst
│  │  │  │  │ sample.yaml
│  │  │  ├── espi
│  │  │  │  ├── boards
│  │  │  │  │  ├── mec15xxevb_assy6853.conf
│  │  │  │  │  │ mec172xevb_assy6906.conf
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── flash_shell
│  │  │  │  │ sample.yaml
│  │  │  ├── fpga
│  │  │  │  ├── fpga_controller
│  │  │  │  │  │ README.rst
│  │  │  ├── gnss
│  │  │  │  ├── boards
│  │  │  │  │  ├── mimxrt1062_fmurt6.overlay
│  │  │  │  │  │ vmu_rt1170.overlay
│  │  │  ├── haptics
│  │  │  │  ├── drv2605
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ nucleo_f401re.overlay
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  ├── ht16k33
│  │  │  │  ├── boards
│  │  │  │  │  │ nrf52840dk_nrf52840.overlay
│  │  │  ├── i2c
│  │  │  │  ├── custom_target
│  │  │  │  │  │ README.rst
│  │  │  │  ├── target_eeprom
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── frdm_ke17z.overlay
│  │  │  │  │  │  │ frdm_ke17z512.overlay
│  │  │  │  │  │ sample.yaml
│  │  │  ├── i2s
│  │  │  │  ├── echo
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ esp32s3_devkitc_procpu.overlay
│  │  │  │  ├── i2s_codec
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── mimxrt595_evk_mimxrt595s_cm33.conf
│  │  │  │  │  │  ├── mimxrt595_evk_mimxrt595s_cm33.overlay
│  │  │  │  │  │  ├── mimxrt685_evk_mimxrt685s_cm33.conf
│  │  │  │  │  │  │ mimxrt685_evk_mimxrt685s_cm33.overlay
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  ├── ipm
│  │  │  │  ├── ipm_esp32
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── esp32_devkitc_wroom_procpu.overlay
│  │  │  │  │  │  ├── esp32_devkitc_wrover_procpu.overlay
│  │  │  │  │  │  ├── esp32s3_devkitm_procpu.overlay
│  │  │  │  │  │  │ yd_esp32_procpu.overlay
│  │  │  │  ├── ipm_ivshmem
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ qemu_cortex_a53.overlay
│  │  │  │  ├── ipm_mcux
│  │  │  │  │  ├── remote
│  │  │  │  │  │  │ prj.conf
│  │  │  │  │  │ sysbuild.cmake
│  │  │  ├── jesd216
│  │  │  │  ├── README.rst
│  │  │  │  ├── boards
│  │  │  │  │  │ nrf54h20dk_nrf54h20_cpuapp.overlay
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── led
│  │  │  │  ├── apa102c_bitbang
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── is31fl3194
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── is31fl3216a
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── arduino_i2c.overlay
│  │  │  │  │  │  │ lpcxpresso55s28.overlay
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── is31fl3733
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ frdm_k22f.overlay
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── led_strip
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── 96b_carbon_stm32f401xe.conf
│  │  │  │  │  │  ├── 96b_carbon_stm32f401xe.overlay
│  │  │  │  │  │  ├── adafruit_qt_py_rp2040.conf
│  │  │  │  │  │  ├── bbc_microbit.overlay
│  │  │  │  │  │  ├── blueclover_plt_demo_v2_nrf52832.conf
│  │  │  │  │  │  ├── blueclover_plt_demo_v2_nrf52832.overlay
│  │  │  │  │  │  ├── esp32c3_devkitm.overlay
│  │  │  │  │  │  ├── esp32s2_saola.overlay
│  │  │  │  │  │  ├── esp32s3_devkitc_procpu.overlay
│  │  │  │  │  │  ├── esp32s3_devkitm_procpu.overlay
│  │  │  │  │  │  ├── mimxrt1050_evk.overlay
│  │  │  │  │  │  ├── mimxrt1050_evk_qspi.overlay
│  │  │  │  │  │  ├── nrf51dk_nrf51822.overlay
│  │  │  │  │  │  ├── nrf52dk_nrf52832.conf
│  │  │  │  │  │  ├── nrf52dk_nrf52832.overlay
│  │  │  │  │  │  ├── nrf5340dk_nrf5340_cpuapp.overlay
│  │  │  │  │  │  ├── nucleo_f070rb.conf
│  │  │  │  │  │  ├── nucleo_f070rb.overlay
│  │  │  │  │  │  ├── nucleo_g071rb.overlay
│  │  │  │  │  │  ├── nucleo_h743zi.overlay
│  │  │  │  │  │  ├── nucleo_l432kc.overlay
│  │  │  │  │  │  ├── nucleo_l476rg.overlay
│  │  │  │  │  │  ├── thingy52_nrf52832.overlay
│  │  │  │  │  │  │ xiao_rp2040.conf
│  │  │  │  │  ├── f070rb-bindings.h
│  │  │  │  │  ├── nrf52-bindings.h
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── lp3943
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ 96b_neonkey.overlay
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── lp50xx
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ lpcxpresso11u68.overlay
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── lp5562
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ nrf52840dk_nrf52840.overlay
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── lp5569
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ nrf52840dk_nrf52840.overlay
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── pca9633
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── app.overlay
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── pwm
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── disco_l475_iot1.overlay
│  │  │  │  │  │  ├── mec15xxevb_assy6853.overlay
│  │  │  │  │  │  ├── mec172xevb_assy6906.overlay
│  │  │  │  │  │  ├── mr_canhubk3.conf
│  │  │  │  │  │  ├── nucleo_f091rc.overlay
│  │  │  │  │  │  ├── nucleo_l073rz.overlay
│  │  │  │  │  │  ├── nucleo_u575zi_q.overlay
│  │  │  │  │  │  ├── rpi_pico.overlay
│  │  │  │  │  │  │ ucans32k1sic.overlay
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── sx1509b_intensity
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ thingy52_nrf52832.overlay
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── xec
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── mec15xxevb_assy6853.overlay
│  │  │  │  │  │  │ mec172xevb_assy6906.overlay
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  ├── led_is31fl3733
│  │  │  │  │ README.rst
│  │  │  ├── led_lp3943
│  │  │  │  │ README.rst
│  │  │  ├── led_lp5562
│  │  │  │  │ README.rst
│  │  │  ├── led_lp5569
│  │  │  │  │ README.rst
│  │  │  ├── led_pca9633
│  │  │  │  │ README.rst
│  │  │  ├── led_strip
│  │  │  │  ├── README.rst
│  │  │  │  ├── boards
│  │  │  │  │  ├── bbc_microbit.conf
│  │  │  │  │  ├── esp32c3_devkitm.overlay
│  │  │  │  │  ├── esp32s2_saola.overlay
│  │  │  │  │  │ esp32s3_devkitm_procpu.overlay
│  │  │  ├── led_sx1509b_intensity
│  │  │  │  │ README.rst
│  │  │  ├── lora
│  │  │  │  ├── receive
│  │  │  │  │  │ README.rst
│  │  │  │  ├── send
│  │  │  │  │  │ README.rst
│  │  │  ├── mbox
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  ├── boards
│  │  │  │  │  ├── esp32_devkitc_wroom_procpu.overlay
│  │  │  │  │  ├── esp32s3_devkitm_procpu.overlay
│  │  │  │  │  ├── nrf5340dk_nrf5340_cpuapp.conf
│  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuapp_cpuflpr.overlay
│  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuapp_cpuppr.overlay
│  │  │  │  │  ├── stm32h747i_disco_stm32h747xx_m7.conf
│  │  │  │  │  │ stm32h747i_disco_stm32h747xx_m7.overlay
│  │  │  │  ├── remote
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── esp32_devkitc_wroom_appcpu.overlay
│  │  │  │  │  │  ├── esp32s3_devkitm_appcpu.overlay
│  │  │  │  │  │  ├── nrf5340bsim_nrf5340_cpunet.conf
│  │  │  │  │  │  ├── nrf5340dk_nrf5340_cpunet.conf
│  │  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuflpr.overlay
│  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuflpr_xip.overlay
│  │  │  │  │  │  ├── stm32h747i_disco_stm32h747xx_m4.conf
│  │  │  │  │  │  │ stm32h747i_disco_stm32h747xx_m4.overlay
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  │  ├── sysbuild
│  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuflpr.conf
│  │  │  │  │  │ nrf54h20dk_nrf54h20_cpuppr.conf
│  │  │  ├── memc
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── boards
│  │  │  │  │  ├── apollo3p_evb.conf
│  │  │  │  │  │ apollo3p_evb.overlay
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── mspi
│  │  │  │  ├── mspi_async
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── apollo3p_evb.conf
│  │  │  │  │  │  │ apollo3p_evb.overlay
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── mspi_flash
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── apollo3p_evb.conf
│  │  │  │  │  │  │ apollo3p_evb.overlay
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  ├── smbus
│  │  │  │  │ README.rst
│  │  │  ├── soc_flash_nrf
│  │  │  │  ├── README.rst
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── spi_flash
│  │  │  │  ├── README.rst
│  │  │  │  ├── boards
│  │  │  │  │  ├── adafruit_feather_nrf52840_sense.conf
│  │  │  │  │  ├── adp_xc7k_ae350.overlay
│  │  │  │  │  ├── b_u585i_iot02a.overlay
│  │  │  │  │  ├── mec172xevb_assy6906.overlay
│  │  │  │  │  ├── nrf54h20dk_nrf54h20_cpuapp.overlay
│  │  │  │  │  ├── stm32h573i_dk.conf
│  │  │  │  │  ├── stm32h573i_dk.overlay
│  │  │  │  │  ├── stm32h735g_disco.overlay
│  │  │  │  │  │ stm32l562e_dk.overlay
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── uart
│  │  │  │  ├── passthrough
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  │ sample.yml
│  │  │  ├── video
│  │  │  │  ├── capture
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── mimxrt1060_evkb.conf
│  │  │  │  │  │  ├── mimxrt1064_evk.conf
│  │  │  │  │  │  │ mimxrt1170_evk_mimxrt1176_cm7.conf
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── tcpserversink
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  │ video.rst
│  │  │  ├── virtualization
│  │  │  │  ├── ivshmem
│  │  │  │  │  ├── doorbell
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │ ivshmem.c
│  │  ├── fuel_gauge
│  │  │  ├── max17048
│  │  │  │  ├── README.rst
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  ├── hello_world
│  │  │  │ README.rst
│  │  ├── index.rst
│  │  ├── kernel
│  │  │  ├── bootargs
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── README.rst
│  │  │  │  ├── prj.conf
│  │  │  │  ├── prj_efi.conf
│  │  │  │  ├── prj_multiboot.conf
│  │  │  │  ├── prj_static_bootargs.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  ├── modules
│  │  │  ├── canopennode
│  │  │  │  ├── README.rst
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── chre
│  │  │  │  │ README.rst
│  │  │  ├── cmsis_dsp
│  │  │  │  ├── cmsis_dsp.rst
│  │  │  │  ├── moving_average
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  ├── compression
│  │  │  │  ├── compression.rst
│  │  │  │  ├── lz4
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  ├── index.rst
│  │  │  ├── lvgl
│  │  │  │  ├── accelerometer_chart
│  │  │  │  │  ├── README.rst
│  │  │  │  │  │ prj.conf
│  │  │  │  │ lvgl.rst
│  │  │  ├── nanopb
│  │  │  │  ├── README.rst
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── tflite-micro
│  │  │  │  ├── hello_world
│  │  │  │  │  ├── README.rst
│  │  │  │  │  │ prj.conf
│  │  │  │  ├── magic_wand
│  │  │  │  │  │ README.rst
│  │  │  │  ├── tflite-micro.rst
│  │  │  │  ├── tflm_ethosu
│  │  │  │  │  ├── README.rst
│  │  │  │  │  │ prj.conf
│  │  │  ├── thrift
│  │  │  │  ├── hello
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── client
│  │  │  │  │  │  ├── Makefile
│  │  │  │  │  │  │ prj.conf
│  │  │  │  │  ├── server
│  │  │  │  │  │  ├── Makefile
│  │  │  │  │  │  │ prj.conf
│  │  │  │  │ thrift.rst
│  │  ├── net
│  │  │  ├── cellular_modem
│  │  │  │  ├── boards
│  │  │  │  │  ├── mg100.conf
│  │  │  │  │  ├── mg100.overlay
│  │  │  │  │  ├── nrf9160dk_nrf52840.conf
│  │  │  │  │  ├── nrf9160dk_nrf9160_ns.conf
│  │  │  │  │  ├── pinnacle_100_dvk.conf
│  │  │  │  │  │ pinnacle_100_dvk.overlay
│  │  │  │  ├── prj.conf
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── cloud
│  │  │  │  ├── aws_iot_mqtt
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ nucleo_f429zi.overlay
│  │  │  │  │  │ prj.conf
│  │  │  │  ├── mqtt_azure
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ digicert.cer
│  │  │  │  ├── tagoio_http_post
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── arduino.overlay
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── sam4e_xpro.conf
│  │  │  │  │  │  │ sam4e_xpro.overlay
│  │  │  │  │  ├── overlay-modem.conf
│  │  │  │  │  │ sample.yaml
│  │  │  ├── common
│  │  │  │  ├── common.cmake
│  │  │  │  ├── net_sample_common.c
│  │  │  │  │ net_sample_common.h
│  │  │  ├── dhcpv4_client
│  │  │  │  ├── README.rst
│  │  │  │  ├── overlay-nrf700x.conf
│  │  │  │  ├── prj.conf
│  │  │  │  │ sample.yaml
│  │  │  ├── dns_resolve
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  ├── README.rst
│  │  │  │  ├── overlay-nrf700x.conf
│  │  │  │  ├── prj.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── dsa
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── gptp
│  │  │  │  │ sample.yaml
│  │  │  ├── gsm_modem
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── README.rst
│  │  │  │  ├── boards
│  │  │  │  │  ├── b_u585i_iot02a.conf
│  │  │  │  │  ├── b_u585i_iot02a.overlay
│  │  │  │  │  │ frdm_uart2_dts.overlay
│  │  │  │  ├── prj.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── ipv4_autoconf
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  ├── README.rst
│  │  │  │  ├── overlay-nrf700x.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── lldp
│  │  │  │  │ sample.yaml
│  │  │  ├── lwm2m_client
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  ├── overlay-dtls-cert.conf
│  │  │  │  ├── overlay-dtls.conf
│  │  │  │  ├── overlay-nrf700x.conf
│  │  │  │  ├── prj.conf
│  │  │  │  ├── src
│  │  │  │  │  │ lwm2m-client.c
│  │  │  ├── mdns_responder
│  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  ├── README.rst
│  │  │  │  ├── overlay-nrf700x.conf
│  │  │  │  ├── prj.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── mqtt_publisher
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  ├── README.rst
│  │  │  │  ├── boards
│  │  │  │  │  │ frdm_k64f.conf
│  │  │  │  ├── overlay-nrf700x.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── mqtt_sn_publisher
│  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  ├── overlay-nrf700x.conf
│  │  │  │  │ prj.conf
│  │  │  ├── openthread
│  │  │  │  ├── coprocessor
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ cc1352p7_lp.overlay
│  │  │  ├── ptp
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig
│  │  │  │  ├── README.rst
│  │  │  │  ├── boards
│  │  │  │  │  ├── native_posix.conf
│  │  │  │  │  ├── native_posix_native_64.conf
│  │  │  │  │  ├── native_sim.conf
│  │  │  │  │  ├── native_sim_native_64.conf
│  │  │  │  │  │ qemu_x86.conf
│  │  │  │  ├── docker-test.sh
│  │  │  │  ├── prj.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── sockets
│  │  │  │  ├── big_http_download
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ big_http_download.c
│  │  │  │  ├── coap_client
│  │  │  │  │  ├── README.rst
│  │  │  │  │  │ overlay-nrf700x.conf
│  │  │  │  ├── coap_download
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── coap_server
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── overlay-nrf700x.conf
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── dumb_http_server_mt
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  │ sample.yaml
│  │  │  │  ├── echo
│  │  │  │  │  │ overlay-nrf700x.conf
│  │  │  │  ├── echo_async
│  │  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── overlay-nrf700x.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ socket_echo.c
│  │  │  │  ├── echo_client
│  │  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── intel_socfpga_agilex5_socdk.conf
│  │  │  │  │  │  │ intel_socfpga_agilex5_socdk.overlay
│  │  │  │  │  ├── overlay-nrf700x.conf
│  │  │  │  │  ├── overlay-tls.conf
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  ├── common.h
│  │  │  │  │  │  ├── echo-client.c
│  │  │  │  │  │  ├── tcp.c
│  │  │  │  │  │  │ udp.c
│  │  │  │  ├── echo_server
│  │  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── intel_socfpga_agilex5_socdk.conf
│  │  │  │  │  │  │ intel_socfpga_agilex5_socdk.overlay
│  │  │  │  │  ├── overlay-nrf700x.conf
│  │  │  │  │  ├── overlay-tls.conf
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  ├── tcp.c
│  │  │  │  │  │  │ udp.c
│  │  │  │  ├── echo_service
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── http_client
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── cc1352-enable-subg.overlay
│  │  │  │  │  ├── ieee802154-overlay.conf
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── http_get
│  │  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── overlay-nrf700x.conf
│  │  │  │  │  ├── overlay-tls.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ http_get.c
│  │  │  │  ├── http_server
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── cc1352-enable-subg.overlay
│  │  │  │  │  ├── ieee802154-overlay.conf
│  │  │  │  │  ├── overlay-netusb.conf
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  ├── index.html
│  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  ├── not_found_page.html
│  │  │  │  │  │  ├── static_web_resources
│  │  │  │  │  │  │  ├── index.html
│  │  │  │  │  │  │  │ main.js
│  │  │  │  │  │  ├── usb.c
│  │  │  │  │  │  ├── ws.c
│  │  │  │  │  │  │ ws.h
│  │  │  │  ├── net_mgmt
│  │  │  │  │  │ prj.conf
│  │  │  │  ├── packet
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ packet.c
│  │  │  │  ├── sntp_client
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── overlay-nrf700x.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── txtime
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ native_sim.conf
│  │  │  │  │  ├── overlay-e1000.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── websocket_client
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  ├── tests
│  │  ├── subsys
│  │  │  ├── display
│  │  │  │  ├── cfb
│  │  │  │  │  ├── basic
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  ├── invert_area.c
│  │  │  │  │  │  │  ├── print_rectspace1016.c
│  │  │  │  │  │  │  ├── testdata.c
│  │  │  │  │  │  │  ├── testdata.h
│  │  │  │  │  │  │  ├── utils.c
│  │  │  │  │  │  │  │ utils.h
│  │  │  │  │  │  │ testcase.yaml
│  │  │  ├── dsp
│  │  │  │  ├── basicmath
│  │  │  │  │  │ prj_arc.conf
│  │  │  ├── emul
│  │  │  │  ├── app.overlay
│  │  │  │  │ prj.conf
│  │  │  ├── fs
│  │  │  │  ├── common
│  │  │  │  │  ├── test_fs_basic.c
│  │  │  │  │  │ test_fs_open_flags.c
│  │  │  │  ├── ext2
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ hifive_unmatched.overlay
│  │  │  │  ├── fat_fs_api
│  │  │  │  │  ├── prj_native_ram.conf
│  │  │  │  │  ├── prj_sdmmc.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  ├── common.c
│  │  │  │  │  │  ├── test_fat.h
│  │  │  │  │  │  ├── test_fat_mkfs.c
│  │  │  │  │  │  │ test_fat_mount.c
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── fcb
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  │  ├── sysbuild.conf
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── fs_api
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ test_fs_dir_file.c
│  │  │  │  ├── littlefs
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── mimxrt1060_evk.overlay
│  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp.overlay
│  │  │  │  │  │  │ nrf54l15pdk_nrf54l15_cpuapp.overlay
│  │  │  │  │  ├── src
│  │  │  │  │  │  ├── test_util.c
│  │  │  │  │  │  │ testfs_lfs.c
│  │  │  │  │  ├── sysbuild.conf
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── multi-fs
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ test_utils.c
│  │  │  │  ├── nvs
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── zms
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── native_sim.overlay
│  │  │  │  │  │  │ qemu_x86_ev_0x00.overlay
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  │  │ testcase.yaml
│  │  │  ├── input
│  │  │  │  ├── api
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── double_tap
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── native_sim.overlay
│  │  │  │  │  │  │ native_sim_native_64.overlay
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── longpress
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ native_sim.overlay
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  ├── ipc
│  │  │  │  ├── pbuf
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  │  │ testcase.yaml
│  │  │  ├── llext
│  │  │  │  ├── simple
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── qemu_cortex_a9.conf
│  │  │  │  │  │  ├── qemu_cortex_a9.overlay
│  │  │  │  │  │  ├── qemu_cortex_r5.conf
│  │  │  │  │  │  │ qemu_cortex_r5.overlay
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  ├── export_dependency_ext.c
│  │  │  │  │  │  ├── export_dependent_ext.c
│  │  │  │  │  │  ├── find_section_ext.c
│  │  │  │  │  │  ├── hello_world_ext.c
│  │  │  │  │  │  ├── init_fini_ext.c
│  │  │  │  │  │  ├── logging_ext.c
│  │  │  │  │  │  ├── movwmovt_ext.c
│  │  │  │  │  │  ├── multi_file_ext1.c
│  │  │  │  │  │  ├── object_ext.c
│  │  │  │  │  │  ├── pre_located_ext.c
│  │  │  │  │  │  ├── relative_jump_ext.c
│  │  │  │  │  │  ├── syscalls_ext.c
│  │  │  │  │  │  ├── syscalls_ext.h
│  │  │  │  │  │  ├── test_llext_simple.c
│  │  │  │  │  │  │ threads_kernel_objects_ext.c
│  │  │  │  │  │ testcase.yaml
│  │  │  ├── logging
│  │  │  │  ├── dictionary
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── pytest
│  │  │  │  │  │  ├── conftest.py
│  │  │  │  │  │  │ test_logging_dictionary.py
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── log_api
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── log_backend_uart
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── log_benchmark
│  │  │  │  │  ├── src
│  │  │  │  │  │  ├── test_helpers.c
│  │  │  │  │  │  │ test_helpers.h
│  │  │  │  ├── log_links
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── log_output
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ log_output_test.c
│  │  │  │  ├── log_switch_format
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── intel_adsp_cavs18.conf
│  │  │  │  │  │  │ intel_adsp_cavs20.conf
│  │  │  │  ├── log_timestamp
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ log_timestamp_test.c
│  │  │  ├── lorawan
│  │  │  │  ├── clock_sync
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ native_sim.overlay
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── frag_decoder
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ native_sim.overlay
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  │  │ testcase.yaml
│  │  │  ├── mem_mgmt
│  │  │  │  ├── mem_attr
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  ├── mgmt
│  │  │  │  ├── mcumgr
│  │  │  │  │  ├── all_options
│  │  │  │  │  │  │ prj.conf
│  │  │  │  │  ├── cb_notifications
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │ smp_test_util.c
│  │  │  │  │  ├── enum_mgmt
│  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  ├── smp_test_util.c
│  │  │  │  │  │  │  │ smp_test_util.h
│  │  │  │  │  │  │ testcase.yaml
│  │  │  │  │  ├── fs_mgmt_hash_supported
│  │  │  │  │  │  ├── configuration
│  │  │  │  │  │  │  ├── all.conf
│  │  │  │  │  │  │  │ sha256.conf
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │ main.c
│  │  │  │  │  │  │ testcase.yaml
│  │  │  │  │  ├── mcumgr_client
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  ├── img_gr_stub.c
│  │  │  │  │  │  │  ├── img_gr_stub.h
│  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  ├── os_gr_stub.c
│  │  │  │  │  │  │  ├── os_gr_stub.h
│  │  │  │  │  │  │  ├── smp_stub.c
│  │  │  │  │  │  │  │ smp_stub.h
│  │  │  │  │  ├── os_mgmt_datetime
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │ smp_test_util.c
│  │  │  │  │  ├── os_mgmt_echo
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │ main.c
│  │  │  │  │  ├── os_mgmt_info
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  ├── build_date.c
│  │  │  │  │  │  │  ├── limited.c
│  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │ smp_test_util.c
│  │  │  │  │  ├── settings_mgmt
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │ smp_test_util.c
│  │  │  │  │  ├── smp_client
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  ├── smp_transport_stub.c
│  │  │  │  │  │  │  │ smp_transport_stub.h
│  │  │  │  │  ├── smp_reassembly
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │ main.c
│  │  │  │  │  ├── smp_version
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │ smp_test_util.c
│  │  │  ├── modem
│  │  │  │  ├── backends
│  │  │  │  │  ├── tty
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │ main.c
│  │  │  │  │  ├── uart
│  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │ main.c
│  │  │  │  ├── modem_chat
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── modem_cmux
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── modem_cmux_pair
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── modem_pipe
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── modem_pipelink
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── app.overlay
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │ pipelink.c
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── modem_ppp
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  ├── pm
│  │  │  │  ├── device_driver_init
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── device_wakeup_api
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ native_sim.overlay
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── policy_api
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── power_domain
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── power_mgmt
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ native_sim.overlay
│  │  │  │  │  ├── no-device-pm.conf
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── power_mgmt_soc
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── power_states_api
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ native_sim.overlay
│  │  │  │  │  ├── dts
│  │  │  │  │  │  ├── bindings
│  │  │  │  │  │  │  │ test-device-pm.yaml
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  ├── test_driver.c
│  │  │  │  │  │  │ test_driver.h
│  │  │  ├── portability
│  │  │  │  ├── cmsis_rtos_v2
│  │  │  │  │  ├── src
│  │  │  │  │  │  ├── event_flags.c
│  │  │  │  │  │  ├── kernel.c
│  │  │  │  │  │  ├── mempool.c
│  │  │  │  │  │  ├── mutex.c
│  │  │  │  │  │  ├── semaphore.c
│  │  │  │  │  │  ├── thread_apis.c
│  │  │  │  │  │  │ timer.c
│  │  │  ├── random
│  │  │  │  ├── rng
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── entropy_psa_crypto.overlay
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── prj_ctr_drbg.conf
│  │  │  │  │  ├── prj_hw_random_psa_crypto.conf
│  │  │  │  │  ├── prj_hw_random_xoshiro.conf
│  │  │  │  │  ├── prj_sw_random_systimer.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  │  │ testcase.yaml
│  │  │  ├── rtio
│  │  │  │  ├── rtio_api
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── src
│  │  │  │  │  │  ├── rtio_api.h
│  │  │  │  │  │  ├── rtio_iodev_test.h
│  │  │  │  │  │  ├── test_rtio_api.c
│  │  │  │  │  │  ├── test_rtio_mpsc.c
│  │  │  │  │  │  │ test_rtio_spsc.c
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── rtio_i2c
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ native_sim.overlay
│  │  │  │  │  ├── dts
│  │  │  │  │  │  ├── bindings
│  │  │  │  │  │  │  │ zephyr,blocking-emul.yaml
│  │  │  │  │  ├── include
│  │  │  │  │  │  │ blocking_emul.hpp
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  ├── blocking_emul.cpp
│  │  │  │  │  │  │ main.cpp
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── workq
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  │  │ testcase.yaml
│  │  │  ├── sd
│  │  │  │  ├── sdmmc
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ rcar_h3ulcb_r8a77951_a57.overlay
│  │  │  ├── sensing
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── README.rst
│  │  │  │  ├── boards
│  │  │  │  │  ├── native_sim.conf
│  │  │  │  │  │ native_sim.overlay
│  │  │  │  ├── prj.conf
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  │  │ testcase.yaml
│  │  │  ├── settings
│  │  │  │  ├── fcb
│  │  │  │  │  ├── src
│  │  │  │  │  │  ├── settings_test_fcb.c
│  │  │  │  │  │  │ settings_test_save_2_fcb.c
│  │  │  │  ├── fcb_init
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ settings_test_fcb_init.c
│  │  │  │  ├── file
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ native_sim_native_64.overlay
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ settings_setup_littlefs.c
│  │  │  │  ├── functional
│  │  │  │  │  ├── file
│  │  │  │  │  │  │ native_sim_native_64.overlay
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ settings_basic_test.c
│  │  │  │  ├── zms
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  ├── settings_test.h
│  │  │  │  │  │  │ settings_test_zms.c
│  │  │  │  │  │ testcase.yaml
│  │  │  ├── shell
│  │  │  │  ├── shell_backend_uart
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  ├── storage
│  │  │  │  ├── flash_map
│  │  │  │  │  ├── overlay-psa.conf
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── stream
│  │  │  │  │  ├── stream_flash
│  │  │  │  │  │  ├── mpu_allow_flash_write.overlay
│  │  │  │  │  │  ├── no_erase.overlay
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │ main.c
│  │  │  │  │  │  │ testcase.yaml
│  │  │  ├── tracing
│  │  │  │  ├── tracing_api
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ qemu_x86.overlay
│  │  │  ├── usb
│  │  │  │  ├── desc_sections
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ desc_sections.c
│  │  │  │  ├── device_next
│  │  │  │  │  ├── build_all.overlay
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── uac2
│  │  │  │  │  ├── app.overlay
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ uac2_desc.c
│  │  │  ├── zbus
│  │  │  │  ├── hlp_priority_boost
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── integration
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── unittests
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  │  │ testcase.yaml
│  │  ├── unit
│  │  │  ├── base64
│  │  │  │  │ CMakeLists.txt
│  │  │  ├── cbprintf
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  │ main.c
│  │  │  ├── intmath
│  │  │  │  │ CMakeLists.txt
│  │  │  ├── list
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  │ slist.c
│  │  │  ├── math_extras
│  │  │  │  │ CMakeLists.txt
│  │  │  ├── net_timeout
│  │  │  │  │ CMakeLists.txt
│  │  │  ├── rbtree
│  │  │  │  │ CMakeLists.txt
│  │  │  ├── timeutil
│  │  │  │  │ CMakeLists.txt
│  │  │  ├── util
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  │ main.c
│  │  │  ├── winstream
│  │  │  │  │ CMakeLists.txt
│  │  ├── ztest
│  │  │  ├── base
│  │  │  │  ├── prj_verbose_0.conf
│  │  │  │  ├── prj_verbose_1.conf
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── error_hook
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── fail
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── README.rst
│  │  │  │  ├── core
│  │  │  │  │  │ CMakeLists.txt
│  │  │  ├── zexpect
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  │ testcase.yaml
│  │  │  ├── ztest_param
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── prj.conf
│  │  │  │  ├── pytest
│  │  │  │  │  │ test_parameters.py
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  │  │ testcase.yaml
│  ├── drivers
│  │  ├── wifi
│  │  │  ├── nxp
│  │  │  │  │ nxp_wifi_shell.c
│  │  │  ├── simplelink
│  │  │  │  ├── Kconfig.simplelink
│  │  │  │  │ simplelink_sockets.c
│  │  ├── xen
│  │  │  ├── dom0
│  │  │  │  │ domctl.c
│  │  │  │ events.c
│  ├── dts
│  │  ├── arm
│  │  │  ├── adi
│  │  │  │  ├── max32
│  │  │  │  │  ├── max32655-pinctrl.dtsi
│  │  │  │  │  ├── max32655.dtsi
│  │  │  │  │  ├── max32662-pinctrl.dtsi
│  │  │  │  │  ├── max32662.dtsi
│  │  │  │  │  ├── max32666-pinctrl.dtsi
│  │  │  │  │  ├── max32666.dtsi
│  │  │  │  │  ├── max32670-pinctrl.dtsi
│  │  │  │  │  ├── max32670.dtsi
│  │  │  │  │  ├── max32672-pinctrl.dtsi
│  │  │  │  │  ├── max32672.dtsi
│  │  │  │  │  ├── max32675-pinctrl.dtsi
│  │  │  │  │  ├── max32675.dtsi
│  │  │  │  │  ├── max32680-pinctrl.dtsi
│  │  │  │  │  ├── max32680.dtsi
│  │  │  │  │  ├── max32690-pinctrl.dtsi
│  │  │  │  │  ├── max32690.dtsi
│  │  │  │  │  │ max32xxx.dtsi
│  │  │  ├── ambiq
│  │  │  │  ├── ambiq_apollo3_blue.dtsi
│  │  │  │  ├── ambiq_apollo3p_blue.dtsi
│  │  │  │  ├── ambiq_apollo4p.dtsi
│  │  │  │  │ ambiq_apollo4p_blue.dtsi
│  │  │  ├── atmel
│  │  │  │  │ same70.dtsi
│  │  │  ├── gd
│  │  │  │  ├── gd32f4xx
│  │  │  │  │  │ gd32f4xx.dtsi
│  │  │  ├── infineon
│  │  │  │  ├── cat1a
│  │  │  │  │  ├── legacy
│  │  │  │  │  │  ├── psoc6-pinctrl.dtsi
│  │  │  │  │  │  │ psoc6.dtsi
│  │  │  │  ├── cat1b
│  │  │  │  │  ├── cyw20829
│  │  │  │  │  │  ├── clock_source_def.h
│  │  │  │  │  │  ├── cyw20829.40-qfn.dtsi
│  │  │  │  │  │  ├── cyw20829.56-qfn.dtsi
│  │  │  │  │  │  ├── cyw20829.77-bga.dtsi
│  │  │  │  │  │  ├── cyw20829.dtsi
│  │  │  │  │  │  │ system_clocks.dtsi
│  │  │  │  │  ├── mpns
│  │  │  │  │  │  ├── CYW20829B0000.dtsi
│  │  │  │  │  │  ├── CYW20829B0010.dtsi
│  │  │  │  │  │  ├── CYW20829B0021.dtsi
│  │  │  │  │  │  ├── CYW20829B0LKML.dtsi
│  │  │  │  │  │  ├── CYW89829B0022.dtsi
│  │  │  │  │  │  │ CYW89829B0232.dtsi
│  │  │  │  ├── cat3
│  │  │  │  │  ├── xmc
│  │  │  │  │  │  │ xmc4xxx.dtsi
│  │  │  ├── microchip
│  │  │  │  ├── mec5.dtsi
│  │  │  │  ├── mec5
│  │  │  │  │  ├── mec5_dma_chan16.dtsi
│  │  │  │  │  ├── mec5_dma_chan20.dtsi
│  │  │  │  │  ├── mec5_eeprom_8kb.dtsi
│  │  │  │  │  ├── mec5_gpspi_v1.dtsi
│  │  │  │  │  ├── mec5_gpspi_v2.dtsi
│  │  │  │  │  ├── mec5_pkg176_pwms.dtsi
│  │  │  │  │  ├── mec5_pkg176_uarts.dtsi
│  │  │  │  │  │ mec5_power_guards.dtsi
│  │  │  │  ├── mec5_mec1743qlj.dtsi
│  │  │  │  ├── mec5_mec1743qsz.dtsi
│  │  │  │  ├── mec5_mec1753qlj.dtsi
│  │  │  │  ├── mec5_mec1753qsz.dtsi
│  │  │  │  ├── mec5_mech1723nlj.dtsi
│  │  │  │  │ mec5_mech1723nsz.dtsi
│  │  │  ├── nordic
│  │  │  │  ├── nrf51822.dtsi
│  │  │  │  ├── nrf52805.dtsi
│  │  │  │  ├── nrf52810.dtsi
│  │  │  │  ├── nrf52811.dtsi
│  │  │  │  ├── nrf52820.dtsi
│  │  │  │  ├── nrf52832.dtsi
│  │  │  │  ├── nrf52833.dtsi
│  │  │  │  ├── nrf52840.dtsi
│  │  │  │  ├── nrf52840_qiaa.dtsi
│  │  │  │  ├── nrf5340_cpuapp.dtsi
│  │  │  │  ├── nrf5340_cpuapp_peripherals.dtsi
│  │  │  │  ├── nrf5340_cpuappns.dtsi
│  │  │  │  ├── nrf54h20_cpuapp.dtsi
│  │  │  │  ├── nrf54h20_cpurad.dtsi
│  │  │  │  ├── nrf54l15_cpuapp.dtsi
│  │  │  │  ├── nrf54l20_enga_cpuapp.dtsi
│  │  │  │  ├── nrf91.dtsi
│  │  │  │  ├── nrf91_peripherals.dtsi
│  │  │  │  │ nrf91ns.dtsi
│  │  │  ├── nuvoton
│  │  │  │  ├── m2l31x.dtsi
│  │  │  │  ├── m46x.dtsi
│  │  │  │  ├── npcm
│  │  │  │  │  ├── npcm.dtsi
│  │  │  │  │  │ npcm4.dtsi
│  │  │  │  ├── npcm400.dtsi
│  │  │  │  ├── npcx
│  │  │  │  │  ├── npcx.dtsi
│  │  │  │  │  ├── npcx4.dtsi
│  │  │  │  │  ├── npcx7.dtsi
│  │  │  │  │  │ npcx9.dtsi
│  │  │  │  │ npcx9m7fb.dtsi
│  │  │  ├── nxp
│  │  │  │  ├── nxp_imx8mm_m4.dtsi
│  │  │  │  ├── nxp_imx93_m33.dtsi
│  │  │  │  ├── nxp_imx95_m7.dtsi
│  │  │  │  ├── nxp_k22fn512.dtsi
│  │  │  │  ├── nxp_ke17z.dtsi
│  │  │  │  ├── nxp_ke17z512.dtsi
│  │  │  │  ├── nxp_ke1xf.dtsi
│  │  │  │  ├── nxp_ke1xz.dtsi
│  │  │  │  ├── nxp_lpc51u68.dtsi
│  │  │  │  ├── nxp_lpc54xxx.dtsi
│  │  │  │  ├── nxp_lpc55S06_ns.dtsi
│  │  │  │  ├── nxp_lpc55S0x_common.dtsi
│  │  │  │  ├── nxp_lpc55S16_ns.dtsi
│  │  │  │  ├── nxp_lpc55S1x_common.dtsi
│  │  │  │  ├── nxp_lpc55S26_ns.dtsi
│  │  │  │  ├── nxp_lpc55S2x.dtsi
│  │  │  │  ├── nxp_lpc55S2x_common.dtsi
│  │  │  │  ├── nxp_lpc55S36_ns.dtsi
│  │  │  │  ├── nxp_lpc55S3x_common.dtsi
│  │  │  │  ├── nxp_lpc55S6x_common.dtsi
│  │  │  │  ├── nxp_mcxa156.dtsi
│  │  │  │  ├── nxp_mcxc141.dtsi
│  │  │  │  ├── nxp_mcxc142.dtsi
│  │  │  │  ├── nxp_mcxc242.dtsi
│  │  │  │  ├── nxp_mcxc_common.dtsi
│  │  │  │  ├── nxp_mcxn23x.dtsi
│  │  │  │  ├── nxp_mcxn23x_common.dtsi
│  │  │  │  ├── nxp_mcxn23x_ns.dtsi
│  │  │  │  ├── nxp_mcxn94x_common.dtsi
│  │  │  │  ├── nxp_rt1010.dtsi
│  │  │  │  ├── nxp_rt10xx.dtsi
│  │  │  │  ├── nxp_rt1160.dtsi
│  │  │  │  ├── nxp_rt1170.dtsi
│  │  │  │  ├── nxp_rt118x.dtsi
│  │  │  │  ├── nxp_rt118x_cm33.dtsi
│  │  │  │  ├── nxp_rt118x_cm33_ns.dtsi
│  │  │  │  ├── nxp_rt118x_cm7.dtsi
│  │  │  │  ├── nxp_rt11xx.dtsi
│  │  │  │  ├── nxp_rt5xx.dtsi
│  │  │  │  ├── nxp_rt5xx_common.dtsi
│  │  │  │  ├── nxp_rt5xx_ns.dtsi
│  │  │  │  ├── nxp_rt6xx.dtsi
│  │  │  │  ├── nxp_rt6xx_common.dtsi
│  │  │  │  ├── nxp_rt6xx_ns.dtsi
│  │  │  │  ├── nxp_rw6xx.dtsi
│  │  │  │  ├── nxp_rw6xx_common.dtsi
│  │  │  │  ├── nxp_rw6xx_ns.dtsi
│  │  │  │  ├── nxp_s32k1xx.dtsi
│  │  │  │  ├── nxp_s32k344_m7.dtsi
│  │  │  │  ├── nxp_s32z27x_r52.dtsi
│  │  │  │  ├── nxp_s32z27x_rtu0_r52.dtsi
│  │  │  │  │ nxp_s32z27x_rtu1_r52.dtsi
│  │  │  ├── renesas
│  │  │  │  ├── ra
│  │  │  │  │  ├── ra2
│  │  │  │  │  │  ├── r7fa2a1ab3cfm.dtsi
│  │  │  │  │  │  ├── r7fa2a1xh.dtsi
│  │  │  │  │  │  │ ra2xx.dtsi
│  │  │  │  │  ├── ra4
│  │  │  │  │  │  ├── r7fa4e2b93cfm.dtsi
│  │  │  │  │  │  ├── r7fa4m2ad3cfp.dtsi
│  │  │  │  │  │  ├── r7fa4m2ax.dtsi
│  │  │  │  │  │  ├── r7fa4m3af3cfb.dtsi
│  │  │  │  │  │  ├── r7fa4m3ax.dtsi
│  │  │  │  │  │  ├── r7fa4w1ad2cng.dtsi
│  │  │  │  │  │  ├── ra4-cm33-common.dtsi
│  │  │  │  │  │  │ ra4-cm4-common.dtsi
│  │  │  │  │  ├── ra6
│  │  │  │  │  │  ├── r7fa6e10f2cfp.dtsi
│  │  │  │  │  │  ├── r7fa6e10x.dtsi
│  │  │  │  │  │  ├── r7fa6e2bb3cfm.dtsi
│  │  │  │  │  │  ├── r7fa6e2bx.dtsi
│  │  │  │  │  │  ├── r7fa6m1ad3cfp.dtsi
│  │  │  │  │  │  ├── r7fa6m2af3cfb.dtsi
│  │  │  │  │  │  ├── r7fa6m2ax.dtsi
│  │  │  │  │  │  ├── r7fa6m3ah3cfc.dtsi
│  │  │  │  │  │  ├── r7fa6m3ax.dtsi
│  │  │  │  │  │  ├── r7fa6m4af3cfb.dtsi
│  │  │  │  │  │  ├── r7fa6m4ax.dtsi
│  │  │  │  │  │  ├── r7fa6m5bh3cfc.dtsi
│  │  │  │  │  │  ├── r7fa6m5xh.dtsi
│  │  │  │  │  │  ├── ra6-cm33-common.dtsi
│  │  │  │  │  │  │ ra6-cm4-common.dtsi
│  │  │  │  │  ├── ra8
│  │  │  │  │  │  ├── r7fa8d1bhecbd.dtsi
│  │  │  │  │  │  ├── r7fa8d1xh.dtsi
│  │  │  │  │  │  ├── r7fa8m1ahecbd.dtsi
│  │  │  │  │  │  ├── r7fa8m1xh.dtsi
│  │  │  │  │  │  ├── r7fa8t1ahecbd.dtsi
│  │  │  │  │  │  ├── r7fa8t1xh.dtsi
│  │  │  │  │  │  │ ra8x1.dtsi
│  │  │  │  ├── smartbond
│  │  │  │  │  │ da1469x.dtsi
│  │  │  ├── rpi_pico
│  │  │  │  │ rp2040.dtsi
│  │  │  ├── silabs
│  │  │  │  ├── efm32_jg_pg_12b.dtsi
│  │  │  │  ├── efm32_pg_1b.dtsi
│  │  │  │  ├── efm32gg11b.dtsi
│  │  │  │  ├── efm32gg12b.dtsi
│  │  │  │  ├── efr32bg2x.dtsi
│  │  │  │  ├── efr32mg.dtsi
│  │  │  │  ├── efr32mg24.dtsi
│  │  │  │  ├── efr32mg24b020f1536im40.dtsi
│  │  │  │  ├── efr32xg13p.dtsi
│  │  │  │  ├── sim3u.dtsi
│  │  │  │  │ sim3u167.dtsi
│  │  │  ├── st
│  │  │  │  ├── c0
│  │  │  │  │  │ stm32c0.dtsi
│  │  │  │  ├── f0
│  │  │  │  │  ├── stm32f0.dtsi
│  │  │  │  │  │ stm32f042.dtsi
│  │  │  │  ├── f1
│  │  │  │  │  ├── stm32f1.dtsi
│  │  │  │  │  │ stm32f105.dtsi
│  │  │  │  ├── f4
│  │  │  │  │  ├── stm32f4.dtsi
│  │  │  │  │  ├── stm32f415.dtsi
│  │  │  │  │  ├── stm32f417.dtsi
│  │  │  │  │  ├── stm32f423.dtsi
│  │  │  │  │  ├── stm32f429.dtsi
│  │  │  │  │  ├── stm32f429vX.dtsi
│  │  │  │  │  │ stm32f437.dtsi
│  │  │  │  ├── f7
│  │  │  │  │  ├── stm32f7.dtsi
│  │  │  │  │  ├── stm32f746.dtsi
│  │  │  │  │  │ stm32f767.dtsi
│  │  │  │  ├── g0
│  │  │  │  │  ├── stm32g0.dtsi
│  │  │  │  │  ├── stm32g0_crypt.dtsi
│  │  │  │  │  │ stm32g0b1.dtsi
│  │  │  │  ├── h5
│  │  │  │  │  ├── stm32h5.dtsi
│  │  │  │  │  ├── stm32h533.dtsi
│  │  │  │  │  ├── stm32h533Xe.dtsi
│  │  │  │  │  │ stm32h562.dtsi
│  │  │  │  ├── h7
│  │  │  │  │  ├── stm32h7.dtsi
│  │  │  │  │  ├── stm32h723.dtsi
│  │  │  │  │  ├── stm32h730.dtsi
│  │  │  │  │  ├── stm32h743.dtsi
│  │  │  │  │  ├── stm32h745.dtsi
│  │  │  │  │  ├── stm32h745Xi_m4.dtsi
│  │  │  │  │  ├── stm32h747Xi_m4.dtsi
│  │  │  │  │  ├── stm32h750.dtsi
│  │  │  │  │  ├── stm32h755.dtsi
│  │  │  │  │  ├── stm32h755Xi_m4.dtsi
│  │  │  │  │  ├── stm32h755Xi_m7.dtsi
│  │  │  │  │  ├── stm32h7_dualcore.dtsi
│  │  │  │  │  ├── stm32h7a3.dtsi
│  │  │  │  │  │ stm32h7b0.dtsi
│  │  │  │  ├── h7rs
│  │  │  │  │  ├── stm32h7r3.dtsi
│  │  │  │  │  ├── stm32h7r3X8.dtsi
│  │  │  │  │  ├── stm32h7r7.dtsi
│  │  │  │  │  ├── stm32h7r7X8.dtsi
│  │  │  │  │  ├── stm32h7rs.dtsi
│  │  │  │  │  ├── stm32h7s3.dtsi
│  │  │  │  │  ├── stm32h7s3X8.dtsi
│  │  │  │  │  ├── stm32h7s7.dtsi
│  │  │  │  │  │ stm32h7s7X8.dtsi
│  │  │  │  ├── l0
│  │  │  │  │  ├── stm32l053.dtsi
│  │  │  │  │  │ stm32l072.dtsi
│  │  │  │  ├── l4
│  │  │  │  │  ├── stm32l4.dtsi
│  │  │  │  │  ├── stm32l412.dtsi
│  │  │  │  │  ├── stm32l422.dtsi
│  │  │  │  │  ├── stm32l431.dtsi
│  │  │  │  │  ├── stm32l432.dtsi
│  │  │  │  │  ├── stm32l451.dtsi
│  │  │  │  │  ├── stm32l462.dtsi
│  │  │  │  │  ├── stm32l496.dtsi
│  │  │  │  │  ├── stm32l4p5.dtsi
│  │  │  │  │  ├── stm32l4r5Xi.dtsi
│  │  │  │  │  │ stm32l4r9.dtsi
│  │  │  │  ├── l5
│  │  │  │  │  ├── stm32l5.dtsi
│  │  │  │  │  │ stm32l562.dtsi
│  │  │  │  ├── mp1
│  │  │  │  │  │ stm32mp157.dtsi
│  │  │  │  ├── u0
│  │  │  │  │  ├── stm32u0.dtsi
│  │  │  │  │  ├── stm32u031.dtsi
│  │  │  │  │  ├── stm32u031X4.dtsi
│  │  │  │  │  ├── stm32u031X6.dtsi
│  │  │  │  │  ├── stm32u031X8.dtsi
│  │  │  │  │  ├── stm32u073.dtsi
│  │  │  │  │  ├── stm32u073X8.dtsi
│  │  │  │  │  ├── stm32u073Xb.dtsi
│  │  │  │  │  ├── stm32u073Xc.dtsi
│  │  │  │  │  ├── stm32u083.dtsi
│  │  │  │  │  │ stm32u083Xc.dtsi
│  │  │  │  ├── u5
│  │  │  │  │  ├── stm32u5.dtsi
│  │  │  │  │  │ stm32u595.dtsi
│  │  │  │  ├── wb
│  │  │  │  │  ├── stm32wb.dtsi
│  │  │  │  │  │ stm32wb55Xg.dtsi
│  │  │  │  ├── wb0
│  │  │  │  │  ├── stm32wb0.dtsi
│  │  │  │  │  ├── stm32wb05.dtsi
│  │  │  │  │  ├── stm32wb05Xz.dtsi
│  │  │  │  │  ├── stm32wb06.dtsi
│  │  │  │  │  ├── stm32wb06Xc.dtsi
│  │  │  │  │  ├── stm32wb07.dtsi
│  │  │  │  │  ├── stm32wb07Xc.dtsi
│  │  │  │  │  ├── stm32wb09.dtsi
│  │  │  │  │  │ stm32wb09Xe.dtsi
│  │  │  │  ├── wba
│  │  │  │  │  │ stm32wba.dtsi
│  │  │  │  ├── wl
│  │  │  │  │  │ stm32wl.dtsi
│  │  │  ├── ti
│  │  │  │  │ cc13xx_cc26xx.dtsi
│  │  ├── arm64
│  │  │  ├── intel
│  │  │  │  │ intel_socfpga_agilex5.dtsi
│  │  │  ├── nxp
│  │  │  │  ├── nxp_mimx8mm_a53.dtsi
│  │  │  │  ├── nxp_mimx8mn_a53.dtsi
│  │  │  │  ├── nxp_mimx8mp_a53.dtsi
│  │  │  │  ├── nxp_mimx93_a55.dtsi
│  │  │  │  │ nxp_mimx95_a55.dtsi
│  │  ├── bindings
│  │  │  ├── adc
│  │  │  │  ├── adi,max32-adc-10b.yaml
│  │  │  │  ├── adi,max32-adc-sar.yaml
│  │  │  │  ├── adi,max32-adc.yaml
│  │  │  │  ├── ambiq,adc.yaml
│  │  │  │  ├── lltc,ltc2451.yaml
│  │  │  │  ├── nxp,kinetis-adc12.yaml
│  │  │  │  ├── nxp,lpc-lpadc.yaml
│  │  │  │  ├── nxp,vf610-adc.yaml
│  │  │  │  ├── renesas,ra-adc.yaml
│  │  │  │  ├── st,stm32-adc.yaml
│  │  │  │  │ ti,ads1x1x-base.yaml
│  │  │  ├── arm
│  │  │  │  ├── linaro,optee-tz.yaml
│  │  │  │  ├── nordic,nrf-tddconf.yaml
│  │  │  │  │ nxp,imx-epit.yaml
│  │  │  ├── audio
│  │  │  │  ├── nordic,nrf-pdm.yaml
│  │  │  │  │ wolfson,wm8904.yaml
│  │  │  ├── base
│  │  │  │  │ pm.yaml
│  │  │  ├── battery
│  │  │  │  │ battery.yaml
│  │  │  ├── bluetooth
│  │  │  │  ├── ambiq,bt-hci-spi.yaml
│  │  │  │  ├── infineon,cyw208xx-hci.yaml
│  │  │  │  ├── nxp,bt-hci-uart.yaml
│  │  │  │  │ silabs,bt-hci.yaml
│  │  │  ├── can
│  │  │  │  ├── atmel,sam-can.yaml
│  │  │  │  ├── can-controller.yaml
│  │  │  │  ├── can-fd-controller.yaml
│  │  │  │  ├── nordic,nrf-can.yaml
│  │  │  │  ├── zephyr,can-loopback.yaml
│  │  │  │  │ zephyr,native-linux-can.yaml
│  │  │  ├── charger
│  │  │  │  │ ti,bq25180.yaml
│  │  │  ├── clock
│  │  │  │  ├── espressif,esp32-rtc.yaml
│  │  │  │  ├── litex,clk.yaml
│  │  │  │  ├── mediatek,mt8195_cpuclk.yaml
│  │  │  │  ├── nordic,nrf-fll16m.yaml
│  │  │  │  ├── nordic,nrf-lfclk.yaml
│  │  │  │  ├── nuvoton,numaker-scc.yaml
│  │  │  │  ├── nxp,kinetis-mcg.yaml
│  │  │  │  ├── nxp,mcxc-osc.yaml
│  │  │  │  ├── raspberrypi,pico-xosc.yaml
│  │  │  │  ├── renesas,ra-cgc-busclk.yaml
│  │  │  │  ├── renesas,ra-cgc-external-clock.yaml
│  │  │  │  ├── renesas,ra-cgc-pclk-block.yaml
│  │  │  │  ├── renesas,ra-cgc-pclk.yaml
│  │  │  │  ├── renesas,ra-cgc-pll.yaml
│  │  │  │  ├── renesas,ra-cgc-subclk.yaml
│  │  │  │  ├── silabs,si32-ahb.yaml
│  │  │  │  ├── silabs,si32-apb.yaml
│  │  │  │  ├── silabs,si32-pll.yaml
│  │  │  │  ├── st,stm32-clock-mco.yaml
│  │  │  │  ├── st,stm32f1-clock-mco.yaml
│  │  │  │  ├── st,stm32f3-rcc.yaml
│  │  │  │  ├── st,stm32h7-pll-clock.yaml
│  │  │  │  ├── st,stm32h7rs-pll-clock.yaml
│  │  │  │  ├── st,stm32h7rs-rcc.yaml
│  │  │  │  ├── st,stm32u0-pll-clock.yaml
│  │  │  │  ├── st,stm32wb0-lsi-clock.yaml
│  │  │  │  │ st,stm32wb0-rcc.yaml
│  │  │  ├── counter
│  │  │  │  ├── adi,max32-counter.yaml
│  │  │  │  ├── ambiq,counter.yaml
│  │  │  │  ├── espressif,esp32-rtc-timer.yaml
│  │  │  │  ├── nxp,kinetis-lptmr.yaml
│  │  │  │  │ nxp,lptmr.yaml
│  │  │  ├── cpu
│  │  │  │  ├── arm,cortex-m55.yaml
│  │  │  │  ├── arm,cortex-m55f.yaml
│  │  │  │  ├── arm,cortex-m85.yaml
│  │  │  │  ├── arm,cortex-m85f.yaml
│  │  │  │  ├── espressif,riscv.yaml
│  │  │  │  ├── espressif,xtensa-lx6.yaml
│  │  │  │  ├── espressif,xtensa-lx7.yaml
│  │  │  │  │ sensry,ganymed-sy1xx.yaml
│  │  │  ├── crypto
│  │  │  │  │ st,stm32-crypto-common.yaml
│  │  │  ├── dac
│  │  │  │  ├── adi,ad569x-base.yaml
│  │  │  │  │ st,stm32-dac.yaml
│  │  │  ├── display
│  │  │  │  ├── galaxycore,gc9x01x.yaml
│  │  │  │  ├── ilitek,ili9xxx-common.yaml
│  │  │  │  ├── istech,ist3931.yaml
│  │  │  │  ├── sitronix,st7789v.yaml
│  │  │  │  ├── sitronix,st7796s.yaml
│  │  │  │  ├── solomon,ssd1306fb-common.yaml
│  │  │  │  ├── solomon,ssd1327fb.yaml
│  │  │  │  ├── solomon,ssd16xx-common.yaml
│  │  │  │  ├── st,stm32-ltdc.yaml
│  │  │  │  │ ultrachip,uc81xx-common.yaml
│  │  │  ├── dma
│  │  │  │  ├── adi,max32-dma.yaml
│  │  │  │  ├── intel,sedi-dma.yaml
│  │  │  │  ├── intel,sedi_dma.yaml
│  │  │  │  ├── raspberrypi,pico-dma.yaml
│  │  │  │  ├── renesas,smartbond-dma.yaml
│  │  │  │  ├── silabs,si32-dma.yaml
│  │  │  │  │ snps,designware-dma-axi.yaml
│  │  │  ├── espi
│  │  │  │  │ nuvoton,npcx-espi-vw-conf.yaml
│  │  │  ├── ethernet
│  │  │  │  ├── ethernet-controller.yaml
│  │  │  │  ├── ethernet-phy.yaml
│  │  │  │  ├── litex,eth0.yaml
│  │  │  │  ├── litex,liteeth.yaml
│  │  │  │  ├── microchip,ksz8081.yaml
│  │  │  │  ├── nxp,enet-mac.yaml
│  │  │  │  ├── nxp,enet.yaml
│  │  │  │  ├── nxp,enet1g.yaml
│  │  │  │  ├── qca,ar8031.yaml
│  │  │  │  ├── realtek,rtl8211f.yaml
│  │  │  │  │ snps,dwcxgmac.yaml
│  │  │  ├── firmware
│  │  │  │  ├── arm,scmi-clock.yaml
│  │  │  │  ├── arm,scmi-pinctrl.yaml
│  │  │  │  ├── arm,scmi-shmem.yaml
│  │  │  │  │ arm,scmi.yaml
│  │  │  ├── flash_controller
│  │  │  │  ├── infineon,cat1-qspi-flash.yaml
│  │  │  │  ├── nordic,nrf-qspi.yaml
│  │  │  │  ├── nordic,rram-controller.yaml
│  │  │  │  ├── nxp,kinetis-ftfa.yaml
│  │  │  │  ├── renesas,ra-flash-hp-controller.yaml
│  │  │  │  ├── silabs,si32-flash-controller.yaml
│  │  │  │  ├── st,stm32-ospi-nor.yaml
│  │  │  │  ├── st,stm32-xspi-nor.yaml
│  │  │  │  │ st,stm32wb0-flash-controller.yaml
│  │  │  ├── fpga
│  │  │  │  ├── renesas,slg47105.yaml
│  │  │  │  ├── renesas,slg47115.yaml
│  │  │  │  │ renesas,slg471x5.yaml
│  │  │  ├── fuel-gauge
│  │  │  │  │ zephyr,fuel-gauge-composite.yaml
│  │  │  ├── gnss
│  │  │  │  ├── u-blox,m10.yaml
│  │  │  │  │ u-blox,m8.yaml
│  │  │  ├── gpio
│  │  │  │  ├── adi,max32-gpio.yaml
│  │  │  │  ├── brcm,iproc-gpio.yaml
│  │  │  │  ├── gaisler,grgpio.yaml
│  │  │  │  ├── microchip,mcp23008.yaml
│  │  │  │  ├── microchip,mcp23009.yaml
│  │  │  │  ├── microchip,mcp23016.yaml
│  │  │  │  ├── microchip,mcp23017.yaml
│  │  │  │  ├── microchip,mcp23018.yaml
│  │  │  │  ├── microchip,mcp230xx.yaml
│  │  │  │  ├── microchip,mcp23s08.yaml
│  │  │  │  ├── microchip,mcp23s09.yaml
│  │  │  │  ├── microchip,mcp23s17.yaml
│  │  │  │  ├── microchip,mcp23s18.yaml
│  │  │  │  ├── microchip,mcp23sxx.yaml
│  │  │  │  ├── microchip,mcp23xxx.yaml
│  │  │  │  ├── nxp,cam-44pins-connector.yaml
│  │  │  │  ├── nxp,i2c-tsc-fpc.yaml
│  │  │  │  ├── nxp,imx-gpio.yaml
│  │  │  │  ├── nxp,imx-rgpio.yaml
│  │  │  │  ├── nxp,lcd-8080.yaml
│  │  │  │  ├── nxp,lpc-gpio-port.yaml
│  │  │  │  ├── nxp,lpc-gpio.yaml
│  │  │  │  ├── nxp,parallel-lcd-connector.yaml
│  │  │  │  ├── nxp,pca9538.yaml
│  │  │  │  ├── nxp,pca9539.yaml
│  │  │  │  ├── nxp,pca9554.yaml
│  │  │  │  ├── nxp,pca9555.yaml
│  │  │  │  ├── nxp,pca_series.yaml
│  │  │  │  ├── nxp,pcal64xxa-base.yaml
│  │  │  │  ├── nxp,pcal6524.yaml
│  │  │  │  ├── nxp,pcal6534.yaml
│  │  │  │  ├── renesas,ra-gpio-ioport.yaml
│  │  │  │  ├── silabs,si32-gpio.yaml
│  │  │  │  ├── sparkfun,micromod-gpio.yaml
│  │  │  │  │ st,stm32-gpio.yaml
│  │  │  ├── haptics
│  │  │  │  │ ti,drv2605.yaml
│  │  │  ├── i2c
│  │  │  │  ├── adi,max32-i2c.yaml
│  │  │  │  ├── brcm,iproc-i2c.yaml
│  │  │  │  ├── fsl,imx21-i2c.yaml
│  │  │  │  ├── ite,common-i2c.yaml
│  │  │  │  ├── litex,i2c.yaml
│  │  │  │  ├── nordic,nrf-twi-common.yaml
│  │  │  │  ├── renesas,ra-iic.yaml
│  │  │  │  │ zephyr,i2c-emul-controller.yaml
│  │  │  ├── i2s
│  │  │  │  ├── espressif,esp32-i2s.yaml
│  │  │  │  │ nordic,nrf-i2s.yaml
│  │  │  ├── i3c
│  │  │  │  │ i3c-device.yaml
│  │  │  ├── input
│  │  │  │  ├── analog-axis.yaml
│  │  │  │  ├── focaltech,ft5336.yaml
│  │  │  │  ├── futaba,sbus.yaml
│  │  │  │  ├── st,stmpe811.yaml
│  │  │  │  ├── touchscreen-common.yaml
│  │  │  │  │ zephyr,input-double-tap.yaml
│  │  │  ├── interrupt-controller
│  │  │  │  ├── espressif,esp32-intc.yaml
│  │  │  │  ├── litex,vexriscv-intc0.yaml
│  │  │  │  ├── mediatek,adsp_intc.yaml
│  │  │  │  ├── nxp,s32-siul2-eirq.yaml
│  │  │  │  ├── nxp,s32-wkpu.yaml
│  │  │  │  ├── st,stm32-exti.yaml
│  │  │  │  ├── st,stm32h7rs-exti.yaml
│  │  │  │  ├── st,stm32wb0-gpio-intc.yaml
│  │  │  │  ├── sy1xx,event-unit.yaml
│  │  │  │  │ vexriscv-intc0.yaml
│  │  │  ├── ipm
│  │  │  │  ├── nxp,imx-mu.yaml
│  │  │  │  │ st,stm32-hsem-mailbox.yaml
│  │  │  ├── led
│  │  │  │  ├── issi,is31fl3194.yaml
│  │  │  │  ├── ti,lp5562.yaml
│  │  │  │  │ ti,lp5569.yaml
│  │  │  ├── led_strip
│  │  │  │  ├── worldsemi,ws2812-gpio.yaml
│  │  │  │  │ ws2812.yaml
│  │  │  ├── lora
│  │  │  │  │ reyax,rylrxxx.yaml
│  │  │  ├── mbox
│  │  │  │  ├── espressif,mbox-esp32.yaml
│  │  │  │  │ st,mbox-stm32-hsem.yaml
│  │  │  ├── mdio
│  │  │  │  ├── litex,liteeth-mdio.yaml
│  │  │  │  │ snps,dwcxgmac-mdio.yaml
│  │  │  ├── mipi-dbi
│  │  │  │  ├── mipi-dbi-device.yaml
│  │  │  │  ├── nxp,mipi-dbi-flexio-lcdif.yaml
│  │  │  │  │ st,mipi-dbi-fmc.yaml
│  │  │  ├── misc
│  │  │  │  ├── nordic,nrf-dppic-local.yaml
│  │  │  │  ├── nxp,rdc-policy.yaml
│  │  │  │  ├── skyworks,sky13317.yaml
│  │  │  │  │ zephyr,swdp-gpio.yaml
│  │  │  ├── modem
│  │  │  │  ├── u-blox,lara-r6.yaml
│  │  │  │  │ zephyr,gsm-ppp.yaml
│  │  │  ├── mspi
│  │  │  │  ├── ambiq,mspi-controller.yaml
│  │  │  │  ├── ambiq,mspi-device.yaml
│  │  │  │  ├── mspi-controller.yaml
│  │  │  │  ├── mspi-device.yaml
│  │  │  │  ├── zephyr,mspi-emul-controller.yaml
│  │  │  │  │ zephyr,mspi-emul-device.yaml
│  │  │  ├── mtd
│  │  │  │  ├── atmel,at24.yaml
│  │  │  │  ├── atmel,at25.yaml
│  │  │  │  ├── mspi-aps6404l.yaml
│  │  │  │  ├── mspi-atxp032.yaml
│  │  │  │  ├── nordic,owned-partitions.yaml
│  │  │  │  ├── renesas,ra-nv-flash.yaml
│  │  │  │  ├── st,stm32-nv-flash.yaml
│  │  │  │  ├── zephyr,i2c-target-eeprom.yaml
│  │  │  │  │ zephyr,mspi-emul-flash.yaml
│  │  │  ├── net
│  │  │  │  ├── wireless
│  │  │  │  │  │ nordic,nrf-radio.yaml
│  │  │  ├── pinctrl
│  │  │  │  ├── adi,max32-pinctrl.yaml
│  │  │  │  ├── ambiq,apollo4-pinctrl.yaml
│  │  │  │  ├── cypress,psoc6-pinctrl.yaml
│  │  │  │  ├── ite,it8xxx2-pinctrl.yaml
│  │  │  │  ├── nxp,imx-iomuxc.yaml
│  │  │  │  ├── raspberrypi,pico-pinctrl.yaml
│  │  │  │  ├── renesas,ra-pincrl-pfs.yaml
│  │  │  │  ├── silabs,si32-pinctrl.yaml
│  │  │  │  │ ti,cc13xx-cc26xx-pinctrl.yaml
│  │  │  ├── power
│  │  │  │  ├── nordic,nrf-regulators.yaml
│  │  │  │  ├── nxp,aon-wakeup-pin.yaml
│  │  │  │  ├── nxp,s32-mc-me.yaml
│  │  │  │  ├── nxp,s32-mc-rgm.yaml
│  │  │  │  ├── nxp,s32k3-pmc.yaml
│  │  │  │  ├── st,stm32-pwr.yaml
│  │  │  │  ├── st,stm32wb0-pwr.yaml
│  │  │  │  │ zephyr,power-state.yaml
│  │  │  ├── ppc
│  │  │  │  │ nuvoton,numaker-ppc.yaml
│  │  │  ├── pwm
│  │  │  │  ├── fsl,imx27-pwm.yaml
│  │  │  │  ├── nordic,nrf-pwm.yaml
│  │  │  │  ├── nxp,flexio-pwm.yaml
│  │  │  │  ├── nxp,qtmr-pwm.yaml
│  │  │  │  │ ti,cc13xx-cc26xx-timer-pwm.yaml
│  │  │  ├── qspi
│  │  │  │  │ st,stm32-qspi.yaml
│  │  │  ├── regulator
│  │  │  │  ├── mps,mpm54304.yaml
│  │  │  │  ├── nordic,nrf53x-regulator-hv.yaml
│  │  │  │  ├── nordic,nrf53x-regulators.yaml
│  │  │  │  ├── nordic,nrf91x-regulators.yaml
│  │  │  │  │ nxp,vref.yaml
│  │  │  ├── reserved-memory
│  │  │  │  │ nordic,owned-memory.yaml
│  │  │  ├── riscv
│  │  │  │  ├── litex,soc-controller.yaml
│  │  │  │  │ nordic,nrf-vpr-coprocessor.yaml
│  │  │  ├── rng
│  │  │  │  ├── adi,max32-trng.yaml
│  │  │  │  │ renesas,ra-rsip-e51a-trng.yaml
│  │  │  ├── rtc
│  │  │  │  ├── ambiq,rtc.yaml
│  │  │  │  ├── infineon,xmc4xxx-rtc.yaml
│  │  │  │  ├── microcrystal,rv-8263-c8.yaml
│  │  │  │  ├── microcrystal,rv3028.yaml
│  │  │  │  ├── nxp,kinetis-lptmr.yaml
│  │  │  │  │ nxp,kinetis-rtc.yaml
│  │  │  ├── sdhc
│  │  │  │  │ nxp,imx-usdhc.yaml
│  │  │  ├── sensor
│  │  │  │  ├── atmel,sam-tc-qdec.yaml
│  │  │  │  ├── avago,apds9253.yaml
│  │  │  │  ├── bosch,bmp180.yaml
│  │  │  │  ├── invensense,icm42670-i2c.yaml
│  │  │  │  ├── invensense,icm42670-spi.yaml
│  │  │  │  ├── invensense,icm42670.yaml
│  │  │  │  ├── invensense,icm42688.yaml
│  │  │  │  ├── jedec,jc-42.4-temp.yaml
│  │  │  │  ├── lm75.yaml
│  │  │  │  ├── memsic,mc3419.yaml
│  │  │  │  ├── microchip,mcp9808.yaml
│  │  │  │  ├── national,lm95234.yaml
│  │  │  │  ├── nordic,nrf-qdec.yaml
│  │  │  │  ├── nxp,fxls8974-common.yaml
│  │  │  │  ├── nxp,fxls8974-i2c.yaml
│  │  │  │  ├── nxp,fxls8974-spi.yaml
│  │  │  │  ├── nxp,lpcmp.yaml
│  │  │  │  ├── sensirion,sht21.yaml
│  │  │  │  ├── sensirion,shtcx.yaml
│  │  │  │  ├── silabs,si7006.yaml
│  │  │  │  ├── st,lis2mdl-common.yaml
│  │  │  │  ├── st,lsm9ds1.yaml
│  │  │  │  ├── st,stm32-digi-temp.yaml
│  │  │  │  ├── ti,tmag5273.yaml
│  │  │  │  │ vishay,vcnl36825t.yaml
│  │  │  ├── serial
│  │  │  │  ├── adi,max32-uart.yaml
│  │  │  │  ├── cypress,psoc6-uart.yaml
│  │  │  │  ├── espressif,esp32-uart.yaml
│  │  │  │  ├── litex,uart.yaml
│  │  │  │  ├── litex,uart0.yaml
│  │  │  │  ├── nordic,nrf-uart-common.yaml
│  │  │  │  ├── nordic,nrf-uarte.yaml
│  │  │  │  ├── nxp,imx-iuart.yaml
│  │  │  │  ├── nxp,imx-uart.yaml
│  │  │  │  ├── nxp,kinetis-lpuart.yaml
│  │  │  │  ├── nxp,lpc11u6x-uart.yaml
│  │  │  │  ├── renesas,ra-sci-uart.yaml
│  │  │  │  ├── renesas,ra8-uart-sci-b.yaml
│  │  │  │  ├── sensry,sy1xx-uart.yaml
│  │  │  │  ├── silabs,si32-usart.yaml
│  │  │  │  ├── st,stm32-uart-base.yaml
│  │  │  │  │ uart-controller-pin-inversion.yaml
│  │  │  ├── spi
│  │  │  │  ├── adi,max32-spi.yaml
│  │  │  │  ├── ambiq,spi-bleif.yaml
│  │  │  │  ├── cypress,psoc6-spi.yaml
│  │  │  │  ├── litex,spi-litespi.yaml
│  │  │  │  ├── litex,spi.yaml
│  │  │  │  ├── nordic,nrf-spi-common.yaml
│  │  │  │  ├── renesas,ra8-spi-b.yaml
│  │  │  │  ├── spi-controller.yaml
│  │  │  │  │ xlnx,xps-spi-2.00.a.yaml
│  │  │  ├── stepper
│  │  │  │  ├── gpio-stepper-controller.yaml
│  │  │  │  │ stepper-controller.yaml
│  │  │  ├── tcpc
│  │  │  │  │ nuvoton,numaker-tcpc.yaml
│  │  │  ├── timer
│  │  │  │  ├── adi,max32-timer.yaml
│  │  │  │  ├── arm,armv6m-systick.yaml
│  │  │  │  ├── arm,armv7m-systick.yaml
│  │  │  │  ├── arm,armv8.1m-systick.yaml
│  │  │  │  ├── arm,armv8m-systick.yaml
│  │  │  │  ├── cortex-m-systick.yaml
│  │  │  │  ├── sy1xx,sys-timer.yaml
│  │  │  │  │ ti,am654-dmtimer.yaml
│  │  │  ├── usb-c
│  │  │  │  │ nuvoton,numaker-vbus.yaml
│  │  │  ├── usb
│  │  │  │  ├── nxp,ehci.yaml
│  │  │  │  ├── nxp,lpcip3511.yaml
│  │  │  │  ├── nxp,usbphy.yaml
│  │  │  │  ├── renesas,smartbond-usbd.yaml
│  │  │  │  ├── uac2
│  │  │  │  │  │ zephyr,uac2.yaml
│  │  │  │  │ zephyr,hid-device.yaml
│  │  │  ├── vendor-prefixes.txt
│  │  │  ├── video
│  │  │  │  ├── espressif,esp32-cam.yaml
│  │  │  │  ├── galaxycore,gc2145.yaml
│  │  │  │  │ ovti,ov7670.yaml
│  │  │  ├── w1
│  │  │  │  │ zephyr,w1-gpio.yaml
│  │  │  ├── watchdog
│  │  │  │  ├── adi,max32-watchdog.yaml
│  │  │  │  ├── espressif,esp32-xt-wdt.yaml
│  │  │  │  ├── litex,watchdog.yaml
│  │  │  │  │ nxp,s32-swt.yaml
│  │  │  ├── wifi
│  │  │  │  ├── nordic,nrf70-coex.yaml
│  │  │  │  ├── nordic,nrf70-qspi.yaml
│  │  │  │  ├── nordic,nrf70-spi.yaml
│  │  │  │  ├── nordic,nrf70.yaml
│  │  │  │  ├── nordic,nrf7000-qspi.yaml
│  │  │  │  ├── nordic,nrf7000-spi.yaml
│  │  │  │  ├── nordic,nrf7001-qspi.yaml
│  │  │  │  ├── nordic,nrf7001-spi.yaml
│  │  │  │  ├── nordic,nrf7002-qspi.yaml
│  │  │  │  ├── nordic,nrf7002-spi.yaml
│  │  │  │  ├── nxp,wifi.yaml
│  │  │  │  ├── wifi-tx-power-2g.yaml
│  │  │  │  │ wifi-tx-power-5g.yaml
│  │  ├── common
│  │  │  ├── espressif
│  │  │  │  ├── partitions_0x0_amp.dtsi
│  │  │  │  ├── partitions_0x0_amp_2M.dtsi
│  │  │  │  ├── partitions_0x0_amp_4M.dtsi
│  │  │  │  ├── partitions_0x0_amp_8M.dtsi
│  │  │  │  ├── partitions_0x0_default.dtsi
│  │  │  │  ├── partitions_0x0_default_2M.dtsi
│  │  │  │  ├── partitions_0x0_default_4M.dtsi
│  │  │  │  ├── partitions_0x0_default_8M.dtsi
│  │  │  │  ├── partitions_0x1000_amp.dtsi
│  │  │  │  ├── partitions_0x1000_amp_2M.dtsi
│  │  │  │  ├── partitions_0x1000_amp_4M.dtsi
│  │  │  │  ├── partitions_0x1000_amp_8M.dtsi
│  │  │  │  ├── partitions_0x1000_default.dtsi
│  │  │  │  ├── partitions_0x1000_default_2M.dtsi
│  │  │  │  ├── partitions_0x1000_default_4M.dtsi
│  │  │  │  │ partitions_0x1000_default_8M.dtsi
│  │  │  ├── nordic
│  │  │  │  ├── nrf52840_partition.dtsi
│  │  │  │  ├── nrf5340_cpuapp_partition.dtsi
│  │  │  │  ├── nrf5340_shared_sram_partition.dtsi
│  │  │  │  ├── nrf54h20.dtsi
│  │  │  │  ├── nrf54l15.dtsi
│  │  │  │  ├── nrf54l20.dtsi
│  │  │  │  ├── nrf91xx_partition.dtsi
│  │  │  │  ├── nrf9280.dtsi
│  │  │  │  │ nrf_common.dtsi
│  │  ├── nios2
│  │  │  ├── intel
│  │  │  │  │ nios2f.dtsi
│  │  ├── riscv
│  │  │  ├── efinix
│  │  │  │  │ sapphire_soc.dtsi
│  │  │  ├── espressif
│  │  │  │  ├── esp32c2
│  │  │  │  │  ├── esp32c2.dtsi
│  │  │  │  │  ├── esp32c2_common.dtsi
│  │  │  │  │  ├── esp8684_mini_h2.dtsi
│  │  │  │  │  ├── esp8684_mini_h4.dtsi
│  │  │  │  │  ├── esp8684_wroom_h2.dtsi
│  │  │  │  │  │ esp8684_wroom_h4.dtsi
│  │  │  │  ├── esp32c3
│  │  │  │  │  ├── esp32c3_common.dtsi
│  │  │  │  │  │ esp32c3_wroom_n4.dtsi
│  │  │  │  ├── esp32c6
│  │  │  │  │  ├── esp32c6_common.dtsi
│  │  │  │  │  ├── esp32c6_wroom_n4.dtsi
│  │  │  │  │  │ esp32c6_wroom_n8.dtsi
│  │  │  ├── ite
│  │  │  │  ├── it81xx2.dtsi
│  │  │  │  │ it82xx2.dtsi
│  │  │  ├── nordic
│  │  │  │  ├── nrf54h20_cpuflpr.dtsi
│  │  │  │  │ nrf54h20_cpuppr.dtsi
│  │  │  ├── openisa
│  │  │  │  │ rv32m1.dtsi
│  │  │  ├── riscv32-litex-vexriscv.dtsi
│  │  │  ├── sensry
│  │  │  │  │ ganymed-sy1xx.dtsi
│  │  ├── sparc
│  │  │  ├── gaisler
│  │  │  │  │ gr716a.dtsi
│  │  ├── x86
│  │  │  ├── intel
│  │  │  │  ├── elkhart_lake.dtsi
│  │  │  │  │ intel_ish5.dtsi
│  │  ├── xtensa
│  │  │  ├── espressif
│  │  │  │  ├── esp32
│  │  │  │  │  │ esp32_common.dtsi
│  │  │  │  ├── esp32s2
│  │  │  │  │  │ esp32s2_common.dtsi
│  │  │  │  ├── esp32s3
│  │  │  │  │  │ esp32s3_common.dtsi
│  │  │  ├── intel
│  │  │  │  ├── intel_adsp_ace15_mtpm.dtsi
│  │  │  │  ├── intel_adsp_ace20_lnl.dtsi
│  │  │  │  ├── intel_adsp_ace30_ptl.dtsi
│  │  │  │  ├── intel_adsp_cavs15.dtsi
│  │  │  │  ├── intel_adsp_cavs18.dtsi
│  │  │  │  ├── intel_adsp_cavs20.dtsi
│  │  │  │  ├── intel_adsp_cavs20_jsl.dtsi
│  │  │  │  │ intel_adsp_cavs25.dtsi
│  ├── version.h.in
│  ├── west.yml
modules
│  ├── tee
│  │  ├── tf-m
│  │  │  ├── trusted-firmware-m
│  │  │  │  ├── platform
│  │  │  │  │  ├── ext
│  │  │  │  │  │  ├── target
│  │  │  │  │  │  │  ├── arm
│  │  │  │  │  │  │  │  ├── rse
│  │  │  │  │  │  │  │  │  ├── rdfremont
│  │  │  │  │  │  │  │  │  │  ├── rse_comms
│  │  │  │  │  │  │  │  │  │  │  │ rse_comms_permissions_hal.c
│  │  │  │  │  │  │  │  │  │  ├── rse_expansion_base_address.h
│  │  │  │  │  │  │  │  │  │  ├── rse_expansion_peripherals_def.c
│  │  │  │  │  │  │  │  │  │  ├── rse_memory_sizes.h
│  │  │  │  │  │  │  │  │  │  ├── size_defs.h
│  │  │  │  │  │  │  │  │  │  ├── tests
│  │  │  │  │  │  │  │  │  │  │  ├── tfm_tests_config.cmake
│  │  │  │  │  │  │  │  │  │  │  │ tfm_tests_ns_config.cmake
│  │  │  │  │  │  │  │  │  ├── tc
│  │  │  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  ├── bl1
│  │  │  │  │  │  │  │  │  │  │  │ rse_bringup_helpers_hal.c
│  │  │  │  │  │  │  │  │  │  ├── bl2
│  │  │  │  │  │  │  │  │  │  │  ├── bl2_image_id.h
│  │  │  │  │  │  │  │  │  │  │  ├── boot_hal_bl2.c
│  │  │  │  │  │  │  │  │  │  │  │ flash_map_bl2.c
│  │  │  │  │  │  │  │  │  │  ├── check_config.cmake
│  │  │  │  │  │  │  │  │  │  ├── cmsis_drivers
│  │  │  │  │  │  │  │  │  │  │  ├── Driver_Flash.c
│  │  │  │  │  │  │  │  │  │  │  ├── Driver_USART.c
│  │  │  │  │  │  │  │  │  │  │  │ host_cmsis_driver_config.h
│  │  │  │  │  │  │  │  │  │  ├── config.cmake
│  │  │  │  │  │  │  │  │  │  ├── config_tfm_target.h
│  │  │  │  │  │  │  │  │  │  ├── cpuarch.cmake
│  │  │  │  │  │  │  │  │  │  ├── device
│  │  │  │  │  │  │  │  │  │  │  ├── host_device_cfg.h
│  │  │  │  │  │  │  │  │  │  │  ├── host_device_definition.c
│  │  │  │  │  │  │  │  │  │  │  │ host_device_definition.h
│  │  │  │  │  │  │  │  │  │  ├── flash_layout.h
│  │  │  │  │  │  │  │  │  │  ├── host_base_address.h
│  │  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  ├── rse_comms
│  │  │  │  │  │  │  │  │  │  │  │ rse_comms_permissions_hal.c
│  │  │  │  │  │  │  │  │  │  ├── rse_memory_sizes.h
│  │  │  │  │  │  │  │  │  │  ├── tests
│  │  │  │  │  │  │  │  │  │  │  ├── tfm_tests_config.cmake
│  │  │  │  │  │  │  │  │  │  │  │ tfm_tests_ns_config.cmake
│  │  │  │  │  │  │  │  ├── rss
│  │  │  │  │  │  │  │  │  ├── common
│  │  │  │  │  │  │  │  │  │  ├── bl1
│  │  │  │  │  │  │  │  │  │  │  ├── bringup_helpers
│  │  │  │  │  │  │  │  │  │  │  │  │ rss_bringup_helpers.c
│  │  │  │  │  │  │  │  │  │  ├── bl2
│  │  │  │  │  │  │  │  │  │  │  ├── sic_boot.c
│  │  │  │  │  │  │  │  │  │  │  │ sic_boot.h
│  │  │  │  │  │  │  │  │  │  ├── check_config.cmake
│  │  │  │  │  │  │  │  │  │  ├── cmsis_drivers
│  │  │  │  │  │  │  │  │  │  │  │ Driver_PPC.c
│  │  │  │  │  │  │  │  │  │  ├── config.cmake
│  │  │  │  │  │  │  │  │  │  ├── dpe
│  │  │  │  │  │  │  │  │  │  │  │ dpe_plat.c
│  │  │  │  │  │  │  │  │  │  ├── libraries
│  │  │  │  │  │  │  │  │  │  │  ├── dma350_checker_layer.c
│  │  │  │  │  │  │  │  │  │  │  ├── dma350_checker_layer.h
│  │  │  │  │  │  │  │  │  │  │  ├── dma350_lib.c
│  │  │  │  │  │  │  │  │  │  │  ├── dma350_lib.h
│  │  │  │  │  │  │  │  │  │  │  │ dma350_privileged_config.h
│  │  │  │  │  │  │  │  │  │  ├── native_drivers
│  │  │  │  │  │  │  │  │  │  │  ├── dma350_ch_drv.c
│  │  │  │  │  │  │  │  │  │  │  ├── dma350_ch_drv.h
│  │  │  │  │  │  │  │  │  │  │  ├── dma350_drv.c
│  │  │  │  │  │  │  │  │  │  │  ├── dma350_drv.h
│  │  │  │  │  │  │  │  │  │  │  │ dma350_regdef.h
│  │  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │  │ config.cmake.in
│  │  │  │  │  │  │  │  │  │  ├── provisioning
│  │  │  │  │  │  │  │  │  │  │  ├── bl1_provisioning.c
│  │  │  │  │  │  │  │  │  │  │  ├── bundle_dm
│  │  │  │  │  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  │  │  │ dm_dummy_provisioning_data.c
│  │  │  │  │  │  │  │  │  │  │  │ rss_create_provisioning_bundle.py
│  │  │  │  │  │  │  │  │  │  ├── rss_comms
│  │  │  │  │  │  │  │  │  │  │  ├── rss_comms_atu_hal.h
│  │  │  │  │  │  │  │  │  │  │  │ rss_comms_protocol_embed.h
│  │  │  │  │  │  │  │  │  │  ├── tfm_interrupts.c
│  │  │  │  │  │  │  │  │  │  │ tfm_peripherals_def.h
│  │  │  │  │  │  │  │  │  ├── kronos
│  │  │  │  │  │  │  │  │  │  │ rss_bringup_helper_gpio_pin_ids.h
│  │  │  │  │  │  │  │  │  ├── tc
│  │  │  │  │  │  │  │  │  │  │ rss_bringup_helper_gpio_pin_ids.h
│  │  │  │  │  │  │  ├── armchina
│  │  │  │  │  │  │  │  ├── mps3
│  │  │  │  │  │  │  │  │  ├── alcor
│  │  │  │  │  │  │  │  │  │  ├── an557
│  │  │  │  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  │  ├── cmsis_drivers
│  │  │  │  │  │  │  │  │  │  │  │  ├── Driver_Flash.c
│  │  │  │  │  │  │  │  │  │  │  │  │ Driver_Flash_bl2.c
│  │  │  │  │  │  │  │  │  │  │  ├── config.cmake
│  │  │  │  │  │  │  │  │  │  │  ├── cpuarch.cmake
│  │  │  │  │  │  │  │  │  │  │  ├── device
│  │  │  │  │  │  │  │  │  │  │  │  ├── include
│  │  │  │  │  │  │  │  │  │  │  │  │  │ flash_device_definition.h
│  │  │  │  │  │  │  │  │  │  │  │  ├── source
│  │  │  │  │  │  │  │  │  │  │  │  │  │ flash_device_definition.c
│  │  │  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  │  │  │ cpuarch_ns.cmake
│  │  │  │  │  │  │  │  │  │  │  ├── partition
│  │  │  │  │  │  │  │  │  │  │  │  │ platform_base_address.h
│  │  │  │  │  │  │  │  │  │  │  │ tfm_hal_platform_reset_halt.c
│  │  │  │  │  │  │  │  │  │  ├── common
│  │  │  │  │  │  │  │  │  │  │  ├── bl2
│  │  │  │  │  │  │  │  │  │  │  │  │ boot_hal_bl2.c
│  │  │  │  │  │  │  │  │  │  │  ├── check_config.cmake
│  │  │  │  │  │  │  │  │  │  │  ├── cmsis_drivers
│  │  │  │  │  │  │  │  │  │  │  │  ├── Driver_ALCOR_PPC.c
│  │  │  │  │  │  │  │  │  │  │  │  ├── Driver_ALCOR_PPC.h
│  │  │  │  │  │  │  │  │  │  │  │  ├── Driver_MPC.c
│  │  │  │  │  │  │  │  │  │  │  │  ├── Driver_TGU.c
│  │  │  │  │  │  │  │  │  │  │  │  ├── Driver_TGU_Common.h
│  │  │  │  │  │  │  │  │  │  │  │  ├── Driver_USART.c
│  │  │  │  │  │  │  │  │  │  │  │  ├── config
│  │  │  │  │  │  │  │  │  │  │  │  │  ├── non_secure
│  │  │  │  │  │  │  │  │  │  │  │  │  │  ├── RTE_Device.h
│  │  │  │  │  │  │  │  │  │  │  │  │  │  │ cmsis_driver_config.h
│  │  │  │  │  │  │  │  │  │  │  │  │  ├── secure
│  │  │  │  │  │  │  │  │  │  │  │  │  │  ├── RTE_Device.h
│  │  │  │  │  │  │  │  │  │  │  │  │  │  │ cmsis_driver_config.h
│  │  │  │  │  │  │  │  │  │  │  ├── common.cmake
│  │  │  │  │  │  │  │  │  │  │  ├── config.cmake
│  │  │  │  │  │  │  │  │  │  │  ├── cpuarch.cmake
│  │  │  │  │  │  │  │  │  │  │  ├── device
│  │  │  │  │  │  │  │  │  │  │  │  ├── config
│  │  │  │  │  │  │  │  │  │  │  │  │  │ device_cfg.h
│  │  │  │  │  │  │  │  │  │  │  │  ├── include
│  │  │  │  │  │  │  │  │  │  │  │  │  ├── alcor_mps3.h
│  │  │  │  │  │  │  │  │  │  │  │  │  ├── cmsis.h
│  │  │  │  │  │  │  │  │  │  │  │  │  ├── device_definition.h
│  │  │  │  │  │  │  │  │  │  │  │  │  ├── platform_irq.h
│  │  │  │  │  │  │  │  │  │  │  │  │  ├── platform_ns_device_definition.h
│  │  │  │  │  │  │  │  │  │  │  │  │  ├── platform_pins.h
│  │  │  │  │  │  │  │  │  │  │  │  │  ├── platform_regs.h
│  │  │  │  │  │  │  │  │  │  │  │  │  ├── platform_s_device_definition.h
│  │  │  │  │  │  │  │  │  │  │  │  │  │ system_core_init.h
│  │  │  │  │  │  │  │  │  │  │  │  ├── source
│  │  │  │  │  │  │  │  │  │  │  │  │  ├── alcor_ns_init.c
│  │  │  │  │  │  │  │  │  │  │  │  │  ├── platform_ns_device_definition.c
│  │  │  │  │  │  │  │  │  │  │  │  │  ├── platform_s_device_definition.c
│  │  │  │  │  │  │  │  │  │  │  │  │  ├── startup_alcor_mps3.c
│  │  │  │  │  │  │  │  │  │  │  │  │  │ system_core_init.c
│  │  │  │  │  │  │  │  │  │  │  ├── libflash_drivers.cmake
│  │  │  │  │  │  │  │  │  │  │  ├── native_drivers
│  │  │  │  │  │  │  │  │  │  │  │  ├── ppc_alcor_drv.c
│  │  │  │  │  │  │  │  │  │  │  │  ├── ppc_alcor_drv.h
│  │  │  │  │  │  │  │  │  │  │  │  ├── tgu_armv8_m_drv.c
│  │  │  │  │  │  │  │  │  │  │  │  │ tgu_armv8_m_drv.h
│  │  │  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │  │  │ common.cmake
│  │  │  │  │  │  │  │  │  │  │  ├── partition
│  │  │  │  │  │  │  │  │  │  │  │  ├── flash_layout.h
│  │  │  │  │  │  │  │  │  │  │  │  │ region_defs.h
│  │  │  │  │  │  │  │  │  │  │  ├── plat_test.c
│  │  │  │  │  │  │  │  │  │  │  ├── services
│  │  │  │  │  │  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │  │  │  │  │  │ tfm_platform_system.c
│  │  │  │  │  │  │  │  │  │  │  ├── target_cfg.c
│  │  │  │  │  │  │  │  │  │  │  ├── target_cfg.h
│  │  │  │  │  │  │  │  │  │  │  ├── tests
│  │  │  │  │  │  │  │  │  │  │  │  ├── psa_arch_tests_config.cmake
│  │  │  │  │  │  │  │  │  │  │  │  │ tfm_tests_config.cmake
│  │  │  │  │  │  │  │  │  │  │  ├── tfm_hal_platform.c
│  │  │  │  │  │  │  │  │  │  │  ├── tfm_peripherals_def.c
│  │  │  │  │  │  │  │  │  │  │  │ tfm_peripherals_def.h
│  │  │  │  │  │  │  │  │  ├── common
│  │  │  │  │  │  │  │  │  │  ├── provisioning
│  │  │  │  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  │  ├── bl2_provisioning.c
│  │  │  │  │  │  │  │  │  │  │  ├── create_provisioning_bundle.py
│  │  │  │  │  │  │  │  │  │  │  ├── create_provisioning_data.py
│  │  │  │  │  │  │  │  │  │  │  ├── provisioning_bundle.h
│  │  │  │  │  │  │  │  │  │  │  ├── provisioning_bundle.icf
│  │  │  │  │  │  │  │  │  │  │  ├── provisioning_bundle.ld
│  │  │  │  │  │  │  │  │  │  │  ├── provisioning_bundle.sct
│  │  │  │  │  │  │  │  │  │  │  ├── provisioning_code.c
│  │  │  │  │  │  │  │  │  │  │  ├── provisioning_config.cmake
│  │  │  │  │  │  │  │  │  │  │  ├── provisioning_data_template.jinja2
│  │  │  │  │  │  │  │  │  │  │  │ runtime_stub_provisioning.c
│  │  │  │  │  │  │  ├── cypress
│  │  │  │  │  │  │  │  ├── psoc64
│  │  │  │  │  │  │  │  │  ├── CMSIS_Driver
│  │  │  │  │  │  │  │  │  │  │ Driver_USART.c
│  │  │  │  │  │  │  │  │  ├── Device
│  │  │  │  │  │  │  │  │  │  ├── Include
│  │  │  │  │  │  │  │  │  │  │  │ platform_description.h
│  │  │  │  │  │  │  │  │  │  ├── Source
│  │  │  │  │  │  │  │  │  │  │  ├── gcc
│  │  │  │  │  │  │  │  │  │  │  │  │ psoc6_ns.ld
│  │  │  │  │  │  │  │  │  │  │  │ system_psoc6_cm0plus.c
│  │  │  │  │  │  │  │  │  ├── config.cmake
│  │  │  │  │  │  │  │  │  ├── install.cmake
│  │  │  │  │  │  │  │  │  ├── libs
│  │  │  │  │  │  │  │  │  │  ├── mtb-pdl-cat1
│  │  │  │  │  │  │  │  │  │  │  │ fetch_lib.cmake
│  │  │  │  │  │  │  │  │  ├── mailbox
│  │  │  │  │  │  │  │  │  │  ├── platform_ns_mailbox.c
│  │  │  │  │  │  │  │  │  │  │ platform_spe_mailbox.c
│  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │  │  │  │  │  ├── target_cfg.c
│  │  │  │  │  │  │  │  │  ├── tfm_hal_isolation.c
│  │  │  │  │  │  │  │  │  ├── tfm_hal_multi_core.c
│  │  │  │  │  │  │  │  │  ├── tfm_hal_platform.c
│  │  │  │  │  │  │  │  │  │ tfm_interrupts.c
│  │  │  │  │  │  │  ├── lairdconnectivity
│  │  │  │  │  │  │  │  ├── bl5340_dvk_cpuapp
│  │  │  │  │  │  │  │  │  ├── services
│  │  │  │  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │  │  │  │ tfm_platform_system.c
│  │  │  │  │  │  │  │  ├── common
│  │  │  │  │  │  │  │  │  ├── bl5340
│  │  │  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  ├── partition
│  │  │  │  │  │  │  │  │  │  │  │ region_defs.h
│  │  │  │  │  │  │  │  │  │  │ target_cfg.h
│  │  │  │  │  │  │  ├── nordic_nrf
│  │  │  │  │  │  │  │  ├── common
│  │  │  │  │  │  │  │  │  ├── core
│  │  │  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  ├── cmsis_drivers
│  │  │  │  │  │  │  │  │  │  │  ├── Driver_Flash.c
│  │  │  │  │  │  │  │  │  │  │  │ Driver_USART.c
│  │  │  │  │  │  │  │  │  │  ├── common
│  │  │  │  │  │  │  │  │  │  │  │ nrfx_glue.h
│  │  │  │  │  │  │  │  │  │  ├── config.cmake
│  │  │  │  │  │  │  │  │  │  ├── faults.c
│  │  │  │  │  │  │  │  │  │  ├── native_drivers
│  │  │  │  │  │  │  │  │  │  │  ├── mpu_armv8m_drv.c
│  │  │  │  │  │  │  │  │  │  │  ├── spu.c
│  │  │  │  │  │  │  │  │  │  │  │ spu.h
│  │  │  │  │  │  │  │  │  │  ├── nrf_exception_info.c
│  │  │  │  │  │  │  │  │  │  ├── nrf_exception_info.h
│  │  │  │  │  │  │  │  │  │  ├── nrfx_config.h
│  │  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  ├── plat_test.c
│  │  │  │  │  │  │  │  │  │  ├── services
│  │  │  │  │  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │  │  │  │  ├── tfm_ioctl_core_s_api.c
│  │  │  │  │  │  │  │  │  │  │  │  │ tfm_platform_hal_ioctl.c
│  │  │  │  │  │  │  │  │  │  ├── startup.c
│  │  │  │  │  │  │  │  │  │  ├── startup.h
│  │  │  │  │  │  │  │  │  │  ├── startup_nrf5340.c
│  │  │  │  │  │  │  │  │  │  ├── startup_nrf91.c
│  │  │  │  │  │  │  │  │  │  ├── target_cfg.c
│  │  │  │  │  │  │  │  │  │  ├── target_cfg.h
│  │  │  │  │  │  │  │  │  │  ├── tfm_hal_isolation.c
│  │  │  │  │  │  │  │  │  │  │ tfm_hal_platform_common.c
│  │  │  │  │  │  │  │  │  ├── nrf5340
│  │  │  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  ├── config.cmake
│  │  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  ├── partition
│  │  │  │  │  │  │  │  │  │  │  │ region_defs.h
│  │  │  │  │  │  │  │  │  │  │ tfm_interrupts.c
│  │  │  │  │  │  │  │  │  ├── nrf91
│  │  │  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  ├── config.cmake
│  │  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  ├── partition
│  │  │  │  │  │  │  │  │  │  │  │ region_defs.h
│  │  │  │  │  │  │  │  │  │  ├── target_cfg.h
│  │  │  │  │  │  │  │  │  │  │ tfm_interrupts.c
│  │  │  │  │  │  │  │  ├── nrf5340dk_nrf5340_cpuapp
│  │  │  │  │  │  │  │  │  ├── RTE_Device.h
│  │  │  │  │  │  │  │  │  ├── services
│  │  │  │  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │  │  │  │ tfm_platform_system.c
│  │  │  │  │  │  │  │  ├── nrf9160dk_nrf9160
│  │  │  │  │  │  │  │  │  ├── services
│  │  │  │  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │  │  │  │ tfm_platform_system.c
│  │  │  │  │  │  │  │  ├── nrf9161dk_nrf9161
│  │  │  │  │  │  │  │  │  ├── services
│  │  │  │  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │  │  │  │ tfm_platform_system.c
│  │  │  │  │  │  │  ├── nuvoton
│  │  │  │  │  │  │  │  ├── common
│  │  │  │  │  │  │  │  │  ├── faults.c
│  │  │  │  │  │  │  │  │  ├── mmio_defs.h
│  │  │  │  │  │  │  │  │  ├── native_drivers
│  │  │  │  │  │  │  │  │  │  │ mpu_armv8m_drv.c
│  │  │  │  │  │  │  │  │  ├── services
│  │  │  │  │  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │  │  │  │  │ tfm_platform_system.c
│  │  │  │  │  │  │  │  │  ├── tfm_hal_isolation.c
│  │  │  │  │  │  │  │  │  │ tfm_hal_platform.c
│  │  │  │  │  │  │  │  ├── m2351
│  │  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │  ├── device
│  │  │  │  │  │  │  │  │  │  ├── source
│  │  │  │  │  │  │  │  │  │  │  ├── armclang
│  │  │  │  │  │  │  │  │  │  │  │  │ m2351_s.sct
│  │  │  │  │  │  │  │  │  │  │  ├── gcc
│  │  │  │  │  │  │  │  │  │  │  │  ├── m2351_bl2.ld
│  │  │  │  │  │  │  │  │  │  │  │  │ m2351_ns.ld
│  │  │  │  │  │  │  │  │  │  │  ├── startup_m2351.c
│  │  │  │  │  │  │  │  │  │  │  │ system_core_init.c
│  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │  │  │  │  │  │ target_cfg.c
│  │  │  │  │  │  │  │  ├── m2354
│  │  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │  ├── device
│  │  │  │  │  │  │  │  │  │  ├── source
│  │  │  │  │  │  │  │  │  │  │  ├── armclang
│  │  │  │  │  │  │  │  │  │  │  │  │ m2354_s.sct
│  │  │  │  │  │  │  │  │  │  │  ├── gcc
│  │  │  │  │  │  │  │  │  │  │  │  ├── m2354_bl2.ld
│  │  │  │  │  │  │  │  │  │  │  │  │ m2354_ns.ld
│  │  │  │  │  │  │  │  │  │  │  ├── startup_m2354.c
│  │  │  │  │  │  │  │  │  │  │  │ system_core_init.c
│  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │  │  │  │  │  │ target_cfg.c
│  │  │  │  │  │  │  ├── nxp
│  │  │  │  │  │  │  │  ├── common
│  │  │  │  │  │  │  │  │  ├── CMSIS_Driver
│  │  │  │  │  │  │  │  │  │  │ Driver_USART.c
│  │  │  │  │  │  │  │  │  ├── Device
│  │  │  │  │  │  │  │  │  │  ├── Include
│  │  │  │  │  │  │  │  │  │  │  │ platform_description.h
│  │  │  │  │  │  │  │  │  ├── Native_Driver
│  │  │  │  │  │  │  │  │  │  ├── components
│  │  │  │  │  │  │  │  │  │  │  ├── lists
│  │  │  │  │  │  │  │  │  │  │  │  ├── fsl_component_generic_list.c
│  │  │  │  │  │  │  │  │  │  │  │  │ fsl_component_generic_list.h
│  │  │  │  │  │  │  │  │  │  │  ├── serial_manager
│  │  │  │  │  │  │  │  │  │  │  │  ├── fsl_component_serial_manager.c
│  │  │  │  │  │  │  │  │  │  │  │  ├── fsl_component_serial_manager.h
│  │  │  │  │  │  │  │  │  │  │  │  ├── fsl_component_serial_port_internal.h
│  │  │  │  │  │  │  │  │  │  │  │  ├── fsl_component_serial_port_uart.c
│  │  │  │  │  │  │  │  │  │  │  │  │ fsl_component_serial_port_uart.h
│  │  │  │  │  │  │  │  │  │  │  ├── uart
│  │  │  │  │  │  │  │  │  │  │  │  ├── fsl_adapter_uart.h
│  │  │  │  │  │  │  │  │  │  │  │  │ fsl_adapter_usart.c
│  │  │  │  │  │  │  │  │  │  ├── drivers
│  │  │  │  │  │  │  │  │  │  │  ├── fsl_casper.c
│  │  │  │  │  │  │  │  │  │  │  ├── fsl_casper.h
│  │  │  │  │  │  │  │  │  │  │  ├── fsl_common.h
│  │  │  │  │  │  │  │  │  │  │  ├── fsl_common_arm.c
│  │  │  │  │  │  │  │  │  │  │  ├── fsl_common_arm.h
│  │  │  │  │  │  │  │  │  │  │  ├── fsl_ctimer.h
│  │  │  │  │  │  │  │  │  │  │  ├── fsl_flexcomm.c
│  │  │  │  │  │  │  │  │  │  │  ├── fsl_flexcomm.h
│  │  │  │  │  │  │  │  │  │  │  ├── fsl_gpio.h
│  │  │  │  │  │  │  │  │  │  │  ├── fsl_hashcrypt.c
│  │  │  │  │  │  │  │  │  │  │  ├── fsl_hashcrypt.h
│  │  │  │  │  │  │  │  │  │  │  ├── fsl_iap.c
│  │  │  │  │  │  │  │  │  │  │  ├── fsl_iap.h
│  │  │  │  │  │  │  │  │  │  │  ├── fsl_iap_ffr.h
│  │  │  │  │  │  │  │  │  │  │  ├── fsl_iap_kbp.h
│  │  │  │  │  │  │  │  │  │  │  ├── fsl_iap_skboot_authenticate.h
│  │  │  │  │  │  │  │  │  │  │  ├── fsl_iocon.h
│  │  │  │  │  │  │  │  │  │  │  ├── fsl_rng.c
│  │  │  │  │  │  │  │  │  │  │  │ fsl_rng.h
│  │  │  │  │  │  │  │  │  │  ├── utilities
│  │  │  │  │  │  │  │  │  │  │  ├── fsl_assert.c
│  │  │  │  │  │  │  │  │  │  │  ├── fsl_assert.h
│  │  │  │  │  │  │  │  │  │  │  │ fsl_sbrk.c
│  │  │  │  │  │  │  │  │  ├── mmio_defs.h
│  │  │  │  │  │  │  │  │  ├── mpc_ppc_faults.c
│  │  │  │  │  │  │  │  │  ├── tfm_hal_isolation.c
│  │  │  │  │  │  │  │  │  │ tfm_hal_platform.c
│  │  │  │  │  │  │  │  ├── lpcxpresso55s69
│  │  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │  ├── Device
│  │  │  │  │  │  │  │  │  │  ├── Include
│  │  │  │  │  │  │  │  │  │  │  │ platform_base_address.h
│  │  │  │  │  │  │  │  │  │  ├── Source
│  │  │  │  │  │  │  │  │  │  │  │ startup_lpcxpresso55s69.c
│  │  │  │  │  │  │  │  │  ├── Native_Driver
│  │  │  │  │  │  │  │  │  │  ├── LPC55S69_cm33_core0.h
│  │  │  │  │  │  │  │  │  │  ├── LPC55S69_cm33_core0_features.h
│  │  │  │  │  │  │  │  │  │  ├── LPC55S69_cm33_core1.h
│  │  │  │  │  │  │  │  │  │  ├── LPC55S69_cm33_core1_features.h
│  │  │  │  │  │  │  │  │  │  ├── drivers
│  │  │  │  │  │  │  │  │  │  │  ├── fsl_clock.c
│  │  │  │  │  │  │  │  │  │  │  ├── fsl_clock.h
│  │  │  │  │  │  │  │  │  │  │  │ fsl_reset.h
│  │  │  │  │  │  │  │  │  │  ├── fsl_device_registers.h
│  │  │  │  │  │  │  │  │  │  ├── system_LPC55S69_cm33_core0.c
│  │  │  │  │  │  │  │  │  │  ├── system_LPC55S69_cm33_core0.h
│  │  │  │  │  │  │  │  │  │  ├── utilities
│  │  │  │  │  │  │  │  │  │  │  ├── fsl_notifier.c
│  │  │  │  │  │  │  │  │  │  │  ├── fsl_notifier.h
│  │  │  │  │  │  │  │  │  │  │  ├── fsl_shell.c
│  │  │  │  │  │  │  │  │  │  │  │ fsl_shell.h
│  │  │  │  │  │  │  │  │  ├── config.cmake
│  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │  │  │  │  │  ├── partition
│  │  │  │  │  │  │  │  │  │  ├── flash_layout.h
│  │  │  │  │  │  │  │  │  │  │ region_defs.h
│  │  │  │  │  │  │  │  │  ├── project_template
│  │  │  │  │  │  │  │  │  │  ├── bl2
│  │  │  │  │  │  │  │  │  │  │  │ hardware_init.c
│  │  │  │  │  │  │  │  │  │  ├── s
│  │  │  │  │  │  │  │  │  │  │  │ hardware_init.c
│  │  │  │  │  │  │  │  │  ├── pull_drivers.cmake
│  │  │  │  │  │  │  │  │  ├── scripts
│  │  │  │  │  │  │  │  │  │  ├── build_tfm_demo.py
│  │  │  │  │  │  │  │  │  │  ├── build_tfm_demo_bl2.py
│  │  │  │  │  │  │  │  │  │  ├── build_tfm_regression.py
│  │  │  │  │  │  │  │  │  │  ├── flash_JLink.py
│  │  │  │  │  │  │  │  │  │  ├── flash_PyOCD.py
│  │  │  │  │  │  │  │  │  │  ├── flash_bl2_JLink.py
│  │  │  │  │  │  │  │  │  │  │ flash_bl2_PyOCD.py
│  │  │  │  │  │  │  │  │  ├── target_cfg.c
│  │  │  │  │  │  │  │  │  ├── target_cfg.h
│  │  │  │  │  │  │  │  │  │ tfm_peripherals_def.h
│  │  │  │  │  │  │  ├── stm
│  │  │  │  │  │  │  │  ├── b_u585i_iot02a
│  │  │  │  │  │  │  │  │  ├── accelerator
│  │  │  │  │  │  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │  │  │  │  │  ├── config.cmake
│  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │  │  │  │  │  ├── tests
│  │  │  │  │  │  │  │  │  │  │ psa_arch_tests_config.cmake
│  │  │  │  │  │  │  │  ├── common
│  │  │  │  │  │  │  │  │  ├── hal
│  │  │  │  │  │  │  │  │  │  ├── CMSIS_Driver
│  │  │  │  │  │  │  │  │  │  │  ├── low_level_com.c
│  │  │  │  │  │  │  │  │  │  │  │ low_level_flash.c
│  │  │  │  │  │  │  │  │  │  ├── Native_Driver
│  │  │  │  │  │  │  │  │  │  │  ├── mpu_armv8m_drv.c
│  │  │  │  │  │  │  │  │  │  │  │ mpu_armv8m_drv.h
│  │  │  │  │  │  │  │  │  │  ├── accelerator
│  │  │  │  │  │  │  │  │  │  │  ├── aes_alt.c
│  │  │  │  │  │  │  │  │  │  │  │ rsa_alt.c
│  │  │  │  │  │  │  │  │  │  ├── provision
│  │  │  │  │  │  │  │  │  │  │  │ otp_provision.c
│  │  │  │  │  │  │  │  │  │  ├── template
│  │  │  │  │  │  │  │  │  │  │  ├── gcc
│  │  │  │  │  │  │  │  │  │  │  │  ├── appli_ns.ld
│  │  │  │  │  │  │  │  │  │  │  │  │ bl2.ld
│  │  │  │  │  │  │  │  │  ├── scripts
│  │  │  │  │  │  │  │  │  │  ├── TFM_UPDATE.sh
│  │  │  │  │  │  │  │  │  │  ├── regression.sh
│  │  │  │  │  │  │  │  │  │  │ stm_tool.py
│  │  │  │  │  │  │  │  │  ├── stm32h5xx
│  │  │  │  │  │  │  │  │  │  ├── Device
│  │  │  │  │  │  │  │  │  │  │  ├── Source
│  │  │  │  │  │  │  │  │  │  │  │  ├── gcc
│  │  │  │  │  │  │  │  │  │  │  │  │  │ tfm_common_s.ld
│  │  │  │  │  │  │  │  │  │  │  │  ├── startup_stm32h5xx_bl2.c
│  │  │  │  │  │  │  │  │  │  │  │  ├── startup_stm32h5xx_ns.c
│  │  │  │  │  │  │  │  │  │  │  │  │ startup_stm32h5xx_s.c
│  │  │  │  │  │  │  │  │  │  ├── bl2
│  │  │  │  │  │  │  │  │  │  │  │ boot_hal_bl2.c
│  │  │  │  │  │  │  │  │  │  ├── secure
│  │  │  │  │  │  │  │  │  │  │  ├── target_cfg.c
│  │  │  │  │  │  │  │  │  │  │  ├── tfm_hal_isolation.c
│  │  │  │  │  │  │  │  │  │  │  ├── tfm_hal_platform.c
│  │  │  │  │  │  │  │  │  │  │  │ tfm_platform_system.c
│  │  │  │  │  │  │  │  │  ├── stm32l5xx
│  │  │  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │  │  ├── Device
│  │  │  │  │  │  │  │  │  │  │  ├── Source
│  │  │  │  │  │  │  │  │  │  │  │  ├── startup_stm32l5xx_bl2.c
│  │  │  │  │  │  │  │  │  │  │  │  ├── startup_stm32l5xx_ns.c
│  │  │  │  │  │  │  │  │  │  │  │  │ startup_stm32l5xx_s.c
│  │  │  │  │  │  │  │  │  │  ├── bl2
│  │  │  │  │  │  │  │  │  │  │  │ boot_hal_bl2.c
│  │  │  │  │  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  │  │  │  │  │ mmio_defs.h
│  │  │  │  │  │  │  │  │  │  ├── secure
│  │  │  │  │  │  │  │  │  │  │  ├── target_cfg.c
│  │  │  │  │  │  │  │  │  │  │  ├── tfm_hal_isolation.c
│  │  │  │  │  │  │  │  │  │  │  ├── tfm_hal_platform.c
│  │  │  │  │  │  │  │  │  │  │  │ tfm_platform_system.c
│  │  │  │  │  │  │  │  │  ├── stm32u5xx
│  │  │  │  │  │  │  │  │  │  ├── Device
│  │  │  │  │  │  │  │  │  │  │  ├── Source
│  │  │  │  │  │  │  │  │  │  │  │  ├── armclang
│  │  │  │  │  │  │  │  │  │  │  │  │  │ tfm_common_s.sct
│  │  │  │  │  │  │  │  │  │  │  │  ├── gcc
│  │  │  │  │  │  │  │  │  │  │  │  │  │ tfm_common_s.ld
│  │  │  │  │  │  │  │  │  │  │  │  ├── iar
│  │  │  │  │  │  │  │  │  │  │  │  │  │ tfm_common_s.icf
│  │  │  │  │  │  │  │  │  │  │  │  ├── startup_stm32u5xx_bl2.c
│  │  │  │  │  │  │  │  │  │  │  │  ├── startup_stm32u5xx_ns.c
│  │  │  │  │  │  │  │  │  │  │  │  │ startup_stm32u5xx_s.c
│  │  │  │  │  │  │  │  │  │  ├── bl2
│  │  │  │  │  │  │  │  │  │  │  │ boot_hal_bl2.c
│  │  │  │  │  │  │  │  │  │  ├── secure
│  │  │  │  │  │  │  │  │  │  │  ├── target_cfg.c
│  │  │  │  │  │  │  │  │  │  │  ├── tfm_hal_isolation.c
│  │  │  │  │  │  │  │  │  │  │  ├── tfm_hal_platform.c
│  │  │  │  │  │  │  │  │  │  │  │ tfm_platform_system.c
│  │  │  │  │  │  │  │  ├── nucleo_l552ze_q
│  │  │  │  │  │  │  │  │  ├── accelerator
│  │  │  │  │  │  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │  │  │  │  ├── stm32h573i_dk
│  │  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  │  ├── accelerator
│  │  │  │  │  │  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │  │  │  │  │  ├── check_config.cmake
│  │  │  │  │  │  │  │  │  ├── config.cmake
│  │  │  │  │  │  │  │  │  ├── cpuarch.cmake
│  │  │  │  │  │  │  │  │  ├── include
│  │  │  │  │  │  │  │  │  │  │ flash_layout.h
│  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │  │  │  │  │  ├── regression.sh
│  │  │  │  │  │  │  │  │  ├── tests
│  │  │  │  │  │  │  │  │  │  │ psa_arch_tests_config.cmake
│  │  │  │  │  │  │  │  ├── stm32l562e_dk
│  │  │  │  │  │  │  │  │  ├── accelerator
│  │  │  │  │  │  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │  │  │  │  │  ├── ns
│  │  │  │  │  │  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │  ├── include
│  │  │  │  │  │  ├── boot_hal.h
│  │  │  │  │  │  ├── exception_info.h
│  │  │  │  │  │  ├── fatal_error.h
│  │  │  │  │  │  ├── tfm_hal_isolation.h
│  │  │  │  │  │  ├── tfm_hal_mailbox.h
│  │  │  │  │  │  ├── tfm_hal_multi_core.h
│  │  │  │  │  │  ├── tfm_plat_crypto_keys.h
│  │  │  │  │  │  │ tfm_plat_otp.h
│  │  │  │  │  ├── ns
│  │  │  │  │  │  ├── toolchain_ns_ARMCLANG.cmake
│  │  │  │  │  │  ├── toolchain_ns_GNUARM.cmake
│  │  │  │  │  │  │ toolchain_ns_IARARM.cmake
│  │  │  │  ├── readme.rst
│  │  │  │  ├── secure_fw
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── include
│  │  │  │  │  │  │ security_defs.h
│  │  │  │  │  ├── partitions
│  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  ├── crypto
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── Kconfig.comp
│  │  │  │  │  │  │  ├── crypto_aead.c
│  │  │  │  │  │  │  ├── crypto_check_config.h
│  │  │  │  │  │  │  ├── crypto_cipher.c
│  │  │  │  │  │  │  ├── crypto_hash.c
│  │  │  │  │  │  │  ├── crypto_init.c
│  │  │  │  │  │  │  ├── crypto_key_derivation.c
│  │  │  │  │  │  │  ├── crypto_key_management.c
│  │  │  │  │  │  │  ├── crypto_mac.c
│  │  │  │  │  │  │  ├── crypto_spe.h
│  │  │  │  │  │  │  ├── psa_driver_api
│  │  │  │  │  │  │  │  ├── tfm_builtin_key_loader.c
│  │  │  │  │  │  │  │  │ tfm_builtin_key_loader.h
│  │  │  │  │  │  ├── firmware_update
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── bootloader
│  │  │  │  │  │  │  │  ├── mcuboot
│  │  │  │  │  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │  │  ├── idle_partition
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── idle_partition.c
│  │  │  │  │  │  │  │ load_info_idle_sp.c
│  │  │  │  │  │  ├── initial_attestation
│  │  │  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │  │  ├── internal_trusted_storage
│  │  │  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │  │  ├── lib
│  │  │  │  │  │  │  ├── runtime
│  │  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │  ├── psa_api_ipc.c
│  │  │  │  │  │  │  │  │ sfn_common_thread.c
│  │  │  │  │  │  ├── ns_agent_mailbox
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── ns_agent_mailbox.c
│  │  │  │  │  │  │  ├── ns_agent_mailbox.yaml
│  │  │  │  │  │  │  ├── tfm_multi_core_client_id.c
│  │  │  │  │  │  │  ├── tfm_spe_mailbox.c
│  │  │  │  │  │  │  │ tfm_spe_mailbox.h
│  │  │  │  │  │  ├── ns_agent_tz
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── load_info_ns_agent_tz.c
│  │  │  │  │  │  │  ├── ns_agent_tz.c
│  │  │  │  │  │  │  ├── psa_api_veneers.c
│  │  │  │  │  │  │  │ psa_api_veneers_v80m.c
│  │  │  │  │  │  ├── platform
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │ platform_sp.c
│  │  │  │  │  │  ├── protected_storage
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  ├── ps_object_defs.h
│  │  │  │  │  │  │  │ tfm_protected_storage.c
│  │  │  │  │  ├── spm
│  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  ├── core
│  │  │  │  │  │  │  ├── arch
│  │  │  │  │  │  │  │  ├── tfm_arch.c
│  │  │  │  │  │  │  │  ├── tfm_arch_v6m_v7m.c
│  │  │  │  │  │  │  │  ├── tfm_arch_v6m_v7m.h
│  │  │  │  │  │  │  │  ├── tfm_arch_v8m_base.c
│  │  │  │  │  │  │  │  │ tfm_arch_v8m_main.c
│  │  │  │  │  │  │  ├── backend_ipc.c
│  │  │  │  │  │  │  ├── backend_sfn.c
│  │  │  │  │  │  │  ├── interrupt.c
│  │  │  │  │  │  │  ├── mailbox_agent_api.c
│  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  ├── memory_symbols.h
│  │  │  │  │  │  │  ├── psa_api.c
│  │  │  │  │  │  │  ├── psa_call_api.c
│  │  │  │  │  │  │  ├── psa_connection_api.c
│  │  │  │  │  │  │  ├── psa_interface_sfn.c
│  │  │  │  │  │  │  ├── psa_interface_svc.c
│  │  │  │  │  │  │  ├── psa_interface_thread_fn_call.c
│  │  │  │  │  │  │  ├── psa_version_api.c
│  │  │  │  │  │  │  ├── rom_loader.c
│  │  │  │  │  │  │  ├── spm.h
│  │  │  │  │  │  │  ├── spm_connection_pool.c
│  │  │  │  │  │  │  ├── spm_ipc.c
│  │  │  │  │  │  │  ├── tfm_multi_core.h
│  │  │  │  │  │  │  ├── tfm_pools.c
│  │  │  │  │  │  │  ├── tfm_pools.h
│  │  │  │  │  │  │  ├── tfm_rpc.c
│  │  │  │  │  │  │  ├── tfm_rpc.h
│  │  │  │  │  │  │  ├── tfm_spe_mailbox.h
│  │  │  │  │  │  │  ├── tfm_svcalls.c
│  │  │  │  │  │  │  ├── tfm_svcalls.h
│  │  │  │  │  │  │  ├── thread.c
│  │  │  │  │  │  │  ├── thread.h
│  │  │  │  │  │  │  │ utilities.c
│  │  │  │  │  │  ├── include
│  │  │  │  │  │  │  ├── ffm
│  │  │  │  │  │  │  │  ├── backend_ipc.h
│  │  │  │  │  │  │  │  ├── backend_sfn.h
│  │  │  │  │  │  │  │  ├── mailbox_agent_api.h
│  │  │  │  │  │  │  │  │ psa_api.h
│  │  │  │  │  │  │  ├── interface
│  │  │  │  │  │  │  │  ├── runtime_defs.h
│  │  │  │  │  │  │  │  │ svc_num.h
│  │  │  │  │  │  │  ├── load
│  │  │  │  │  │  │  │  ├── interrupt_defs.h
│  │  │  │  │  │  │  │  ├── partition_defs.h
│  │  │  │  │  │  │  │  │ spm_load_api.h
│  │  │  │  │  │  │  ├── private
│  │  │  │  │  │  │  │  │ assert.h
│  │  │  │  │  │  │  ├── tfm_arch.h
│  │  │  │  │  │  │  ├── tfm_arch_v8m.h
│  │  │  │  │  │  │  ├── tfm_nspm.h
│  │  │  │  │  │  │  │ utilities.h
│  │  │  │  │  │  ├── ns_client_ext
│  │  │  │  │  │  │  ├── tfm_ns_client_ext.c
│  │  │  │  │  │  │  ├── tfm_ns_ctx.c
│  │  │  │  │  │  │  │ tfm_spm_ns_ctx.c
│  │  │  │  ├── toolchain_ARMCLANG.cmake
│  │  │  │  ├── toolchain_GNUARM.cmake
│  │  │  │  ├── toolchain_IARARM.cmake
│  │  │  │  ├── tools
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── requirements.txt
│  │  │  │  │  ├── templates
│  │  │  │  │  │  │ partition_load_info.template
│  │  │  │  │  ├── tfm_manifest_list.yaml
│  │  │  │  │  │ tfm_parse_manifest_list.py
│  ├── bsim_hw_models
│  │  ├── nrf_hw_models
│  │  │  ├── .github
│  │  │  │  │ test-spec.yml
│  │  │  ├── 54L15.mk
│  │  │  ├── Makefile
│  │  │  ├── docs
│  │  │  │  ├── README.md
│  │  │  │  ├── README_HW_models.md
│  │  │  │  ├── README_impl_status.md
│  │  │  │  │ UART.md
│  │  │  ├── make_inc
│  │  │  │  │ 5340_hw_files
│  │  │  ├── src
│  │  │  │  ├── HW_models
│  │  │  │  │  ├── NHW_AES_CCM.c
│  │  │  │  │  ├── NHW_GRTC.c
│  │  │  │  │  ├── NHW_RADIO.c
│  │  │  │  │  ├── NHW_RADIO_signals.c
│  │  │  │  │  ├── NHW_UART.c
│  │  │  │  │  ├── NHW_config.h
│  │  │  │  │  ├── NHW_misc.c
│  │  │  │  │  ├── NHW_misc.h
│  │  │  │  │  ├── NHW_virt_RAM.c
│  │  │  │  │  │ NHW_virt_RAM.h
│  │  │  │  ├── nrfx
│  │  │  │  │  ├── hal
│  │  │  │  │  │  ├── nrf_ccm.c
│  │  │  │  │  │  │ nrf_grtc.c
│  │  │  ├── tests
│  │  │  │  ├── zephyr_apps
│  │  │  │  │  ├── 54_aar_ccm_ecb
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │ test_ecb.c
│  ├── crypto
│  │  ├── mbedtls
│  │  │  ├── .github
│  │  │  │  │ pull_request_template.md
│  │  │  ├── .gitignore
│  │  │  ├── 3rdparty
│  │  │  │  ├── p256-m
│  │  │  │  │  │ .gitignore
│  │  │  ├── BRANCHES.md
│  │  │  ├── CMakeLists.txt
│  │  │  ├── ChangeLog
│  │  │  ├── configs
│  │  │  │  ├── config-symmetric-only.h
│  │  │  │  │ crypto-config-ccm-aes-sha256.h
│  │  │  ├── docs
│  │  │  │  ├── architecture
│  │  │  │  │  ├── psa-crypto-implementation-structure.md
│  │  │  │  │  ├── psa-keystore-design.md
│  │  │  │  │  │ psa-shared-memory.md
│  │  │  │  ├── driver-only-builds.md
│  │  │  │  ├── psa-transition.md
│  │  │  │  ├── requirements.txt
│  │  │  │  │ use-psa-crypto.md
│  │  │  ├── doxygen
│  │  │  │  ├── input
│  │  │  │  │  │ doc_mainpage.h
│  │  │  │  │ mbedtls.doxyfile
│  │  │  ├── framework
│  │  │  ├── include
│  │  │  │  ├── mbedtls
│  │  │  │  │  ├── bignum.h
│  │  │  │  │  ├── build_info.h
│  │  │  │  │  ├── check_config.h
│  │  │  │  │  ├── config_adjust_legacy_crypto.h
│  │  │  │  │  ├── config_adjust_legacy_from_psa.h
│  │  │  │  │  ├── config_adjust_psa_from_legacy.h
│  │  │  │  │  ├── config_adjust_psa_superset_legacy.h
│  │  │  │  │  ├── config_adjust_ssl.h
│  │  │  │  │  ├── config_adjust_x509.h
│  │  │  │  │  ├── config_psa.h
│  │  │  │  │  ├── ctr_drbg.h
│  │  │  │  │  ├── ecdh.h
│  │  │  │  │  ├── ecp.h
│  │  │  │  │  ├── mbedtls_config.h
│  │  │  │  │  ├── pk.h
│  │  │  │  │  ├── psa_util.h
│  │  │  │  │  │ ssl.h
│  │  │  │  ├── psa
│  │  │  │  │  ├── crypto.h
│  │  │  │  │  ├── crypto_adjust_auto_enabled.h
│  │  │  │  │  ├── crypto_adjust_config_dependencies.h
│  │  │  │  │  ├── crypto_adjust_config_key_pair_types.h
│  │  │  │  │  ├── crypto_adjust_config_synonyms.h
│  │  │  │  │  ├── crypto_extra.h
│  │  │  │  │  ├── crypto_struct.h
│  │  │  │  │  │ crypto_types.h
│  │  │  ├── library
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── bignum.c
│  │  │  │  ├── bignum_core.c
│  │  │  │  ├── bignum_core.h
│  │  │  │  ├── bignum_internal.h
│  │  │  │  ├── block_cipher.c
│  │  │  │  ├── cipher.c
│  │  │  │  ├── common.h
│  │  │  │  ├── ctr_drbg.c
│  │  │  │  ├── entropy.c
│  │  │  │  ├── entropy_poll.c
│  │  │  │  ├── error.c
│  │  │  │  ├── lmots.c
│  │  │  │  ├── lms.c
│  │  │  │  ├── md.c
│  │  │  │  ├── net_sockets.c
│  │  │  │  ├── nist_kw.c
│  │  │  │  ├── pem.c
│  │  │  │  ├── pk.c
│  │  │  │  ├── platform_util.c
│  │  │  │  ├── psa_crypto.c
│  │  │  │  ├── psa_crypto_cipher.c
│  │  │  │  ├── psa_crypto_core.h
│  │  │  │  ├── psa_crypto_driver_wrappers.h
│  │  │  │  ├── psa_crypto_ecp.c
│  │  │  │  ├── psa_crypto_hash.c
│  │  │  │  ├── psa_crypto_random_impl.h
│  │  │  │  ├── psa_crypto_rsa.c
│  │  │  │  ├── psa_crypto_rsa.h
│  │  │  │  ├── psa_crypto_slot_management.c
│  │  │  │  ├── psa_crypto_slot_management.h
│  │  │  │  ├── psa_util.c
│  │  │  │  ├── rsa.c
│  │  │  │  ├── sha256.c
│  │  │  │  ├── ssl_cookie.c
│  │  │  │  ├── ssl_debug_helpers_generated.c
│  │  │  │  ├── ssl_misc.h
│  │  │  │  ├── ssl_msg.c
│  │  │  │  ├── ssl_ticket.c
│  │  │  │  ├── ssl_tls.c
│  │  │  │  ├── ssl_tls12_client.c
│  │  │  │  ├── ssl_tls12_server.c
│  │  │  │  ├── ssl_tls13_client.c
│  │  │  │  ├── ssl_tls13_generic.c
│  │  │  │  ├── ssl_tls13_server.c
│  │  │  │  ├── version_features.c
│  │  │  │  ├── x509_crt.c
│  │  │  │  ├── x509write_crt.c
│  │  │  │  │ x509write_csr.c
│  │  │  ├── pkgconfig
│  │  │  │  │ .gitignore
│  │  │  ├── programs
│  │  │  │  ├── cipher
│  │  │  │  │  │ cipher_aead_demo.c
│  │  │  │  ├── fuzz
│  │  │  │  │  ├── Makefile
│  │  │  │  │  ├── common.h
│  │  │  │  │  ├── fuzz_pkcs7.c
│  │  │  │  │  ├── fuzz_pubkey.c
│  │  │  │  │  ├── fuzz_x509crl.c
│  │  │  │  │  ├── fuzz_x509crt.c
│  │  │  │  │  ├── fuzz_x509csr.c
│  │  │  │  │  │ onefile.c
│  │  │  │  ├── hash
│  │  │  │  │  │ md_hmac_demo.c
│  │  │  │  ├── pkey
│  │  │  │  │  │ gen_key.c
│  │  │  │  ├── psa
│  │  │  │  │  ├── aead_demo.c
│  │  │  │  │  ├── hmac_demo.c
│  │  │  │  │  │ psa_constant_names.c
│  │  │  │  ├── ssl
│  │  │  │  │  ├── mini_client.c
│  │  │  │  │  ├── ssl_client2.c
│  │  │  │  │  ├── ssl_context_info.c
│  │  │  │  │  ├── ssl_mail_client.c
│  │  │  │  │  ├── ssl_server2.c
│  │  │  │  │  │ ssl_test_common_source.c
│  │  │  │  ├── test
│  │  │  │  │  ├── cmake_package
│  │  │  │  │  │  │ .gitignore
│  │  │  │  │  ├── cmake_package_install
│  │  │  │  │  │  │ .gitignore
│  │  │  │  │  ├── metatest.c
│  │  │  │  │  ├── query_config.c
│  │  │  │  │  ├── selftest.c
│  │  │  │  │  ├── udp_proxy.c
│  │  │  │  │  │ zeroize.c
│  │  │  │  ├── util
│  │  │  │  │  │ pem2der.c
│  │  │  │  ├── x509
│  │  │  │  │  ├── cert_req.c
│  │  │  │  │  ├── cert_write.c
│  │  │  │  │  │ load_roots.c
│  │  │  ├── scripts
│  │  │  │  ├── abi_check.py
│  │  │  │  ├── ci.requirements.txt
│  │  │  │  ├── code_size_compare.py
│  │  │  │  ├── code_style.py
│  │  │  │  ├── common.make
│  │  │  │  ├── config.py
│  │  │  │  ├── data_files
│  │  │  │  │  ├── driver_templates
│  │  │  │  │  │  │ psa_crypto_driver_wrappers.h.jinja
│  │  │  │  ├── framework_scripts_path.py
│  │  │  │  ├── generate_driver_wrappers.py
│  │  │  │  ├── generate_psa_constants.py
│  │  │  │  ├── generate_ssl_debug_helpers.py
│  │  │  │  ├── lcov.sh
│  │  │  │  ├── make_generated_files.bat
│  │  │  │  ├── mbedtls_dev
│  │  │  │  │  ├── __init__.py
│  │  │  │  │  ├── asymmetric_key_data.py
│  │  │  │  │  ├── bignum_common.py
│  │  │  │  │  ├── bignum_core.py
│  │  │  │  │  ├── bignum_data.py
│  │  │  │  │  ├── bignum_mod.py
│  │  │  │  │  ├── bignum_mod_raw.py
│  │  │  │  │  ├── build_tree.py
│  │  │  │  │  ├── c_build_helper.py
│  │  │  │  │  ├── c_parsing_helper.py
│  │  │  │  │  ├── c_wrapper_generator.py
│  │  │  │  │  ├── crypto_data_tests.py
│  │  │  │  │  ├── crypto_knowledge.py
│  │  │  │  │  ├── ecp.py
│  │  │  │  │  ├── logging_util.py
│  │  │  │  │  ├── macro_collector.py
│  │  │  │  │  ├── psa_information.py
│  │  │  │  │  ├── psa_storage.py
│  │  │  │  │  ├── test_case.py
│  │  │  │  │  ├── test_data_generation.py
│  │  │  │  │  │ typing_util.py
│  │  │  │  ├── min_requirements.py
│  │  │  │  │ project_name.txt
│  │  │  ├── tests
│  │  │  │  ├── .gitignore
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Makefile
│  │  │  │  ├── compat.sh
│  │  │  │  ├── context-info.sh
│  │  │  │  ├── data_files
│  │  │  │  │  ├── .gitignore
│  │  │  │  │  ├── Makefile
│  │  │  │  │  ├── Readme-x509.txt
│  │  │  │  │  ├── authorityKeyId_no_authorityKeyId.crt.der
│  │  │  │  │  ├── authorityKeyId_no_issuer.crt.der
│  │  │  │  │  ├── authorityKeyId_no_keyid.crt.der
│  │  │  │  │  ├── authorityKeyId_subjectKeyId.conf
│  │  │  │  │  ├── authorityKeyId_subjectKeyId.crt.der
│  │  │  │  │  ├── authorityKeyId_subjectKeyId_issuer_tag1_malformed.crt.der
│  │  │  │  │  ├── authorityKeyId_subjectKeyId_issuer_tag2_malformed.crt.der
│  │  │  │  │  ├── authorityKeyId_subjectKeyId_keyid_tag_len_malformed.crt.der
│  │  │  │  │  ├── authorityKeyId_subjectKeyId_keyid_tag_malformed.crt.der
│  │  │  │  │  ├── authorityKeyId_subjectKeyId_length_malformed.crt.der
│  │  │  │  │  ├── authorityKeyId_subjectKeyId_sequence_tag_malformed.crt.der
│  │  │  │  │  ├── authorityKeyId_subjectKeyId_sn_len_malformed.crt.der
│  │  │  │  │  ├── authorityKeyId_subjectKeyId_sn_tag_malformed.crt.der
│  │  │  │  │  ├── authorityKeyId_subjectKeyId_tag_len_malformed.crt.der
│  │  │  │  │  ├── authorityKeyId_subjectKeyId_tag_malformed.crt.der
│  │  │  │  │  ├── base64
│  │  │  │  │  │  ├── cli_cid.txt
│  │  │  │  │  │  ├── cli_ciphersuite.txt
│  │  │  │  │  │  ├── cli_def.txt
│  │  │  │  │  │  ├── cli_min_cfg.txt
│  │  │  │  │  │  ├── cli_no_alpn.txt
│  │  │  │  │  │  ├── cli_no_keep_cert.txt
│  │  │  │  │  │  ├── cli_no_mfl.txt
│  │  │  │  │  │  ├── cli_no_packing.txt
│  │  │  │  │  │  ├── def_b64_ff.bin
│  │  │  │  │  │  ├── def_b64_too_big_1.txt
│  │  │  │  │  │  ├── def_b64_too_big_2.txt
│  │  │  │  │  │  ├── def_b64_too_big_3.txt
│  │  │  │  │  │  ├── def_bad_b64.txt
│  │  │  │  │  │  ├── empty.txt
│  │  │  │  │  │  ├── mfl_1024.txt
│  │  │  │  │  │  ├── mtu_10000.txt
│  │  │  │  │  │  ├── srv_cid.txt
│  │  │  │  │  │  ├── srv_ciphersuite.txt
│  │  │  │  │  │  ├── srv_def.txt
│  │  │  │  │  │  ├── srv_min_cfg.txt
│  │  │  │  │  │  ├── srv_no_alpn.txt
│  │  │  │  │  │  ├── srv_no_keep_cert.txt
│  │  │  │  │  │  ├── srv_no_mfl.txt
│  │  │  │  │  │  ├── srv_no_packing.txt
│  │  │  │  │  │  │ v2.19.1.txt
│  │  │  │  │  ├── cert_example_multi.crt
│  │  │  │  │  ├── cert_example_multi_nocn.crt
│  │  │  │  │  ├── cert_example_wildcard.crt
│  │  │  │  │  ├── cert_md5.crt
│  │  │  │  │  ├── cert_md5.csr
│  │  │  │  │  ├── cert_sha1.crt
│  │  │  │  │  ├── cert_sha224.crt
│  │  │  │  │  ├── cert_sha256.crt
│  │  │  │  │  ├── cert_sha384.crt
│  │  │  │  │  ├── cert_sha512.crt
│  │  │  │  │  ├── cert_v1_with_ext.crt
│  │  │  │  │  ├── cli-rsa-sha1.crt
│  │  │  │  │  ├── cli-rsa-sha256.crt
│  │  │  │  │  ├── cli-rsa-sha256.crt.der
│  │  │  │  │  ├── cli-rsa-sha256.key.der
│  │  │  │  │  ├── cli-rsa.key
│  │  │  │  │  ├── cli-rsa.key.der
│  │  │  │  │  ├── cli.opensslconf
│  │  │  │  │  ├── cli2.crt
│  │  │  │  │  ├── cli2.crt.der
│  │  │  │  │  ├── cli2.key
│  │  │  │  │  ├── cli2.key.der
│  │  │  │  │  ├── clusterfuzz-testcase-minimized-fuzz_x509crt-6666050834661376.crt.der
│  │  │  │  │  ├── crl-ec-sha1.pem
│  │  │  │  │  ├── crl-ec-sha256.pem
│  │  │  │  │  ├── crl-future.pem
│  │  │  │  │  ├── crl-futureRevocationDate.pem
│  │  │  │  │  ├── crl-rsa-pss-sha1-badsign.pem
│  │  │  │  │  ├── crl-rsa-pss-sha1.pem
│  │  │  │  │  ├── crl-rsa-pss-sha224.pem
│  │  │  │  │  ├── crl-rsa-pss-sha256.pem
│  │  │  │  │  ├── crl-rsa-pss-sha384.pem
│  │  │  │  │  ├── crl-rsa-pss-sha512.pem
│  │  │  │  │  ├── crl.pem
│  │  │  │  │  ├── crl_cat_ec-rsa.pem
│  │  │  │  │  ├── crl_cat_ecfut-rsa.pem
│  │  │  │  │  ├── crl_cat_rsa-ec.pem
│  │  │  │  │  ├── crl_cat_rsabadpem-ec.pem
│  │  │  │  │  ├── crl_expired.pem
│  │  │  │  │  ├── crl_sha256.pem
│  │  │  │  │  ├── crt_cat_rsaexp-ec.pem
│  │  │  │  │  ├── dh.1000.pem
│  │  │  │  │  ├── dh.998.pem
│  │  │  │  │  ├── dh.999.pem
│  │  │  │  │  ├── dh.optlen.der
│  │  │  │  │  ├── dh.optlen.pem
│  │  │  │  │  ├── dhparams.pem
│  │  │  │  │  ├── dir-maxpath
│  │  │  │  │  │  ├── 00.crt
│  │  │  │  │  │  ├── 00.key
│  │  │  │  │  │  ├── 01.crt
│  │  │  │  │  │  ├── 01.key
│  │  │  │  │  │  ├── 02.crt
│  │  │  │  │  │  ├── 02.key
│  │  │  │  │  │  ├── 03.crt
│  │  │  │  │  │  ├── 03.key
│  │  │  │  │  │  ├── 04.crt
│  │  │  │  │  │  ├── 04.key
│  │  │  │  │  │  ├── 05.crt
│  │  │  │  │  │  ├── 05.key
│  │  │  │  │  │  ├── 06.crt
│  │  │  │  │  │  ├── 06.key
│  │  │  │  │  │  ├── 07.crt
│  │  │  │  │  │  ├── 07.key
│  │  │  │  │  │  ├── 08.crt
│  │  │  │  │  │  ├── 08.key
│  │  │  │  │  │  ├── 09.crt
│  │  │  │  │  │  ├── 09.key
│  │  │  │  │  │  ├── 10.crt
│  │  │  │  │  │  ├── 10.key
│  │  │  │  │  │  ├── 11.crt
│  │  │  │  │  │  ├── 11.key
│  │  │  │  │  │  ├── 12.crt
│  │  │  │  │  │  ├── 12.key
│  │  │  │  │  │  ├── 13.crt
│  │  │  │  │  │  ├── 13.key
│  │  │  │  │  │  ├── 14.crt
│  │  │  │  │  │  ├── 14.key
│  │  │  │  │  │  ├── 15.crt
│  │  │  │  │  │  ├── 15.key
│  │  │  │  │  │  ├── 16.crt
│  │  │  │  │  │  ├── 16.key
│  │  │  │  │  │  ├── 17.crt
│  │  │  │  │  │  ├── 17.key
│  │  │  │  │  │  ├── 18.crt
│  │  │  │  │  │  ├── 18.key
│  │  │  │  │  │  ├── 19.crt
│  │  │  │  │  │  ├── 19.key
│  │  │  │  │  │  ├── 20.crt
│  │  │  │  │  │  ├── 20.key
│  │  │  │  │  │  ├── Readme.txt
│  │  │  │  │  │  ├── c00.pem
│  │  │  │  │  │  ├── c01.pem
│  │  │  │  │  │  ├── c02.pem
│  │  │  │  │  │  ├── c03.pem
│  │  │  │  │  │  ├── c04.pem
│  │  │  │  │  │  ├── c05.pem
│  │  │  │  │  │  ├── c06.pem
│  │  │  │  │  │  ├── c07.pem
│  │  │  │  │  │  ├── c08.pem
│  │  │  │  │  │  ├── c09.pem
│  │  │  │  │  │  ├── c10.pem
│  │  │  │  │  │  ├── c11.pem
│  │  │  │  │  │  ├── c12.pem
│  │  │  │  │  │  ├── c13.pem
│  │  │  │  │  │  ├── c14.pem
│  │  │  │  │  │  ├── c15.pem
│  │  │  │  │  │  ├── c16.pem
│  │  │  │  │  │  ├── c17.pem
│  │  │  │  │  │  ├── c18.pem
│  │  │  │  │  │  ├── c19.pem
│  │  │  │  │  │  ├── c20.pem
│  │  │  │  │  │  ├── int.opensslconf
│  │  │  │  │  │  │ long.sh
│  │  │  │  │  ├── dir1
│  │  │  │  │  │  │ test-ca.crt
│  │  │  │  │  ├── dir2
│  │  │  │  │  │  ├── test-ca.crt
│  │  │  │  │  │  │ test-ca2.crt
│  │  │  │  │  ├── dir3
│  │  │  │  │  │  ├── Readme
│  │  │  │  │  │  ├── test-ca.crt
│  │  │  │  │  │  │ test-ca2.crt
│  │  │  │  │  ├── dir4
│  │  │  │  │  │  ├── Readme
│  │  │  │  │  │  ├── cert11.crt
│  │  │  │  │  │  ├── cert12.crt
│  │  │  │  │  │  ├── cert13.crt
│  │  │  │  │  │  ├── cert14.crt
│  │  │  │  │  │  ├── cert21.crt
│  │  │  │  │  │  ├── cert22.crt
│  │  │  │  │  │  ├── cert23.crt
│  │  │  │  │  │  ├── cert31.crt
│  │  │  │  │  │  ├── cert32.crt
│  │  │  │  │  │  ├── cert33.crt
│  │  │  │  │  │  ├── cert34.crt
│  │  │  │  │  │  ├── cert41.crt
│  │  │  │  │  │  ├── cert42.crt
│  │  │  │  │  │  ├── cert43.crt
│  │  │  │  │  │  ├── cert44.crt
│  │  │  │  │  │  ├── cert45.crt
│  │  │  │  │  │  ├── cert51.crt
│  │  │  │  │  │  ├── cert52.crt
│  │  │  │  │  │  ├── cert53.crt
│  │  │  │  │  │  ├── cert54.crt
│  │  │  │  │  │  ├── cert61.crt
│  │  │  │  │  │  ├── cert62.crt
│  │  │  │  │  │  ├── cert63.crt
│  │  │  │  │  │  ├── cert71.crt
│  │  │  │  │  │  ├── cert72.crt
│  │  │  │  │  │  ├── cert73.crt
│  │  │  │  │  │  ├── cert74.crt
│  │  │  │  │  │  ├── cert81.crt
│  │  │  │  │  │  ├── cert82.crt
│  │  │  │  │  │  ├── cert83.crt
│  │  │  │  │  │  ├── cert91.crt
│  │  │  │  │  │  │ cert92.crt
│  │  │  │  │  ├── ec_224_prv.comp.pem
│  │  │  │  │  ├── ec_224_prv.pem
│  │  │  │  │  ├── ec_224_pub.comp.pem
│  │  │  │  │  ├── ec_224_pub.pem
│  │  │  │  │  ├── ec_256_long_prv.der
│  │  │  │  │  ├── ec_256_long_prv.pem
│  │  │  │  │  ├── ec_256_prv.comp.pem
│  │  │  │  │  ├── ec_256_prv.pem
│  │  │  │  │  ├── ec_256_pub.comp.pem
│  │  │  │  │  ├── ec_256_pub.pem
│  │  │  │  │  ├── ec_384_prv.comp.pem
│  │  │  │  │  ├── ec_384_prv.pem
│  │  │  │  │  ├── ec_384_pub.comp.pem
│  │  │  │  │  ├── ec_384_pub.pem
│  │  │  │  │  ├── ec_521_prv.comp.pem
│  │  │  │  │  ├── ec_521_prv.der
│  │  │  │  │  ├── ec_521_prv.pem
│  │  │  │  │  ├── ec_521_pub.comp.pem
│  │  │  │  │  ├── ec_521_pub.der
│  │  │  │  │  ├── ec_521_pub.pem
│  │  │  │  │  ├── ec_521_short_prv.der
│  │  │  │  │  ├── ec_521_short_prv.pem
│  │  │  │  │  ├── ec_bp256_prv.comp.pem
│  │  │  │  │  ├── ec_bp256_prv.pem
│  │  │  │  │  ├── ec_bp256_pub.comp.pem
│  │  │  │  │  ├── ec_bp256_pub.pem
│  │  │  │  │  ├── ec_bp384_prv.comp.pem
│  │  │  │  │  ├── ec_bp384_prv.pem
│  │  │  │  │  ├── ec_bp384_pub.comp.pem
│  │  │  │  │  ├── ec_bp384_pub.pem
│  │  │  │  │  ├── ec_bp512_prv.comp.pem
│  │  │  │  │  ├── ec_bp512_prv.der
│  │  │  │  │  ├── ec_bp512_prv.pem
│  │  │  │  │  ├── ec_bp512_pub.comp.pem
│  │  │  │  │  ├── ec_bp512_pub.der
│  │  │  │  │  ├── ec_bp512_pub.pem
│  │  │  │  │  ├── ec_prv.pk8.der
│  │  │  │  │  ├── ec_prv.pk8.pem
│  │  │  │  │  ├── ec_prv.pk8.pw.der
│  │  │  │  │  ├── ec_prv.pk8.pw.pem
│  │  │  │  │  ├── ec_prv.pk8nopub.der
│  │  │  │  │  ├── ec_prv.pk8nopub.pem
│  │  │  │  │  ├── ec_prv.pk8nopubparam.der
│  │  │  │  │  ├── ec_prv.pk8nopubparam.pem
│  │  │  │  │  ├── ec_prv.pk8param.der
│  │  │  │  │  ├── ec_prv.pk8param.pem
│  │  │  │  │  ├── ec_prv.sec1.comp.pem
│  │  │  │  │  ├── ec_prv.sec1.der
│  │  │  │  │  ├── ec_prv.sec1.pem
│  │  │  │  │  ├── ec_prv.sec1.pw.pem
│  │  │  │  │  ├── ec_prv.specdom.der
│  │  │  │  │  ├── ec_pub.comp.pem
│  │  │  │  │  ├── ec_pub.der
│  │  │  │  │  ├── ec_pub.pem
│  │  │  │  │  ├── ec_x25519_prv.der
│  │  │  │  │  ├── ec_x25519_prv.pem
│  │  │  │  │  ├── ec_x25519_pub.der
│  │  │  │  │  ├── ec_x25519_pub.pem
│  │  │  │  │  ├── ec_x448_prv.der
│  │  │  │  │  ├── ec_x448_prv.pem
│  │  │  │  │  ├── ec_x448_pub.der
│  │  │  │  │  ├── ec_x448_pub.pem
│  │  │  │  │  ├── ecdsa_secp256r1.crt
│  │  │  │  │  ├── ecdsa_secp256r1.key
│  │  │  │  │  ├── ecdsa_secp384r1.crt
│  │  │  │  │  ├── ecdsa_secp384r1.key
│  │  │  │  │  ├── ecdsa_secp521r1.crt
│  │  │  │  │  ├── ecdsa_secp521r1.key
│  │  │  │  │  ├── enco-ca-prstr.pem
│  │  │  │  │  ├── enco-cert-utf8str.pem
│  │  │  │  │  ├── format_gen.key
│  │  │  │  │  ├── format_gen.pub
│  │  │  │  │  ├── format_pkcs12.fmt
│  │  │  │  │  ├── format_rsa.key
│  │  │  │  │  ├── hash_file_1
│  │  │  │  │  ├── hash_file_2
│  │  │  │  │  ├── hash_file_3
│  │  │  │  │  ├── hash_file_4
│  │  │  │  │  ├── hash_file_5
│  │  │  │  │  ├── keyUsage.decipherOnly.crt
│  │  │  │  │  ├── lms_hash-sigs_sha256_m32_h5_lmots_sha256_n32_w8_aux
│  │  │  │  │  ├── lms_hash-sigs_sha256_m32_h5_lmots_sha256_n32_w8_prv
│  │  │  │  │  ├── lms_hash-sigs_sha256_m32_h5_lmots_sha256_n32_w8_pub
│  │  │  │  │  ├── lms_hsslms_sha256_m32_h5_lmots_sha256_n32_w8_prv
│  │  │  │  │  ├── lms_pyhsslms_sha256_m32_h5_lmots_sha256_n32_w8_prv
│  │  │  │  │  ├── lms_pyhsslms_sha256_m32_h5_lmots_sha256_n32_w8_pub
│  │  │  │  │  ├── mpi_16
│  │  │  │  │  ├── mpi_too_big
│  │  │  │  │  ├── opensslcnf
│  │  │  │  │  │  │ server9.crt.v3_ext
│  │  │  │  │  ├── parse_input
│  │  │  │  │  │  ├── bitstring-in-dn.pem
│  │  │  │  │  │  ├── cert_example_multi.crt
│  │  │  │  │  │  ├── cert_example_multi_nocn.crt
│  │  │  │  │  │  ├── cert_md5.crt
│  │  │  │  │  │  ├── cert_sha1.crt
│  │  │  │  │  │  ├── cert_sha224.crt
│  │  │  │  │  │  ├── cert_sha256.crt
│  │  │  │  │  │  ├── cert_sha384.crt
│  │  │  │  │  │  ├── cert_sha512.crt
│  │  │  │  │  │  ├── cli-rsa-sha256-badalg.crt.der
│  │  │  │  │  │  ├── crl-ec-sha1.pem
│  │  │  │  │  │  ├── crl-ec-sha224.pem
│  │  │  │  │  │  ├── crl-ec-sha256.pem
│  │  │  │  │  │  ├── crl-ec-sha384.pem
│  │  │  │  │  │  ├── crl-ec-sha512.pem
│  │  │  │  │  │  ├── crl-idp.pem
│  │  │  │  │  │  ├── crl-idpnc.pem
│  │  │  │  │  │  ├── crl-malformed-trailing-spaces.pem
│  │  │  │  │  │  ├── crl-rsa-pss-sha1.pem
│  │  │  │  │  │  ├── crl-rsa-pss-sha224.pem
│  │  │  │  │  │  ├── crl-rsa-pss-sha256.pem
│  │  │  │  │  │  ├── crl-rsa-pss-sha384.pem
│  │  │  │  │  │  ├── crl-rsa-pss-sha512.pem
│  │  │  │  │  │  ├── crl_expired.pem
│  │  │  │  │  │  ├── crl_md5.pem
│  │  │  │  │  │  ├── crl_sha1.pem
│  │  │  │  │  │  ├── crl_sha224.pem
│  │  │  │  │  │  ├── crl_sha256.pem
│  │  │  │  │  │  ├── crl_sha384.pem
│  │  │  │  │  │  ├── crl_sha512.pem
│  │  │  │  │  │  ├── keyUsage.decipherOnly.crt
│  │  │  │  │  │  ├── multiple_san.crt
│  │  │  │  │  │  ├── non-ascii-string-in-issuer.crt
│  │  │  │  │  │  ├── rsa_multiple_san_uri.crt.der
│  │  │  │  │  │  ├── rsa_single_san_uri.crt.der
│  │  │  │  │  │  ├── server1-ms.req.sha256
│  │  │  │  │  │  ├── server1.cert_type.crt
│  │  │  │  │  │  ├── server1.crt
│  │  │  │  │  │  ├── server1.crt.der
│  │  │  │  │  │  ├── server1.ext_ku.crt
│  │  │  │  │  │  ├── server1.key_usage.crt
│  │  │  │  │  │  ├── server1.req.commas.sha256
│  │  │  │  │  │  ├── server1.req.md5
│  │  │  │  │  │  ├── server1.req.sha1
│  │  │  │  │  │  ├── server1.req.sha224
│  │  │  │  │  │  ├── server1.req.sha256
│  │  │  │  │  │  ├── server1.req.sha384
│  │  │  │  │  │  ├── server1.req.sha512
│  │  │  │  │  │  ├── server1_pathlen_int_max-1.crt
│  │  │  │  │  │  ├── server1_pathlen_int_max.crt
│  │  │  │  │  │  ├── server2.crt
│  │  │  │  │  │  ├── server2.crt.der
│  │  │  │  │  │  ├── server3.crt
│  │  │  │  │  │  ├── server4.crt
│  │  │  │  │  │  ├── server5-directoryname-seq-malformed.crt.der
│  │  │  │  │  │  ├── server5-directoryname.crt.der
│  │  │  │  │  │  ├── server5-fan.crt.der
│  │  │  │  │  │  ├── server5-non-compliant.crt
│  │  │  │  │  │  ├── server5-nonprintable_othername.crt.der
│  │  │  │  │  │  ├── server5-othername.crt.der
│  │  │  │  │  │  ├── server5-second-directoryname-oid-malformed.crt.der
│  │  │  │  │  │  ├── server5-sha1.crt
│  │  │  │  │  │  ├── server5-sha224.crt
│  │  │  │  │  │  ├── server5-sha384.crt
│  │  │  │  │  │  ├── server5-sha512.crt
│  │  │  │  │  │  ├── server5-two-directorynames.crt.der
│  │  │  │  │  │  ├── server5-unsupported_othername.crt.der
│  │  │  │  │  │  ├── server5.crt
│  │  │  │  │  │  ├── server5.req.sha1
│  │  │  │  │  │  ├── server5.req.sha224
│  │  │  │  │  │  ├── server5.req.sha256
│  │  │  │  │  │  ├── server5.req.sha384
│  │  │  │  │  │  ├── server5.req.sha512
│  │  │  │  │  │  ├── server7_all_space.crt
│  │  │  │  │  │  ├── server7_int-ca.crt
│  │  │  │  │  │  ├── server7_pem_space.crt
│  │  │  │  │  │  ├── server7_trailing_space.crt
│  │  │  │  │  │  ├── server9-sha224.crt
│  │  │  │  │  │  ├── server9-sha256.crt
│  │  │  │  │  │  ├── server9-sha384.crt
│  │  │  │  │  │  ├── server9-sha512.crt
│  │  │  │  │  │  ├── server9.crt
│  │  │  │  │  │  ├── server9.req.sha1
│  │  │  │  │  │  ├── server9.req.sha224
│  │  │  │  │  │  ├── server9.req.sha256
│  │  │  │  │  │  ├── server9.req.sha384
│  │  │  │  │  │  ├── server9.req.sha512
│  │  │  │  │  │  ├── test-ca-any_policy.crt
│  │  │  │  │  │  ├── test-ca-any_policy_ec.crt
│  │  │  │  │  │  ├── test-ca-any_policy_with_qualifier.crt
│  │  │  │  │  │  ├── test-ca-any_policy_with_qualifier_ec.crt
│  │  │  │  │  │  ├── test-ca-multi_policy.crt
│  │  │  │  │  │  ├── test-ca-multi_policy_ec.crt
│  │  │  │  │  │  ├── test-ca-unsupported_policy.crt
│  │  │  │  │  │  ├── test-ca-unsupported_policy_ec.crt
│  │  │  │  │  │  ├── test-ca.crt
│  │  │  │  │  │  ├── test-ca.crt.der
│  │  │  │  │  │  ├── test_cert_rfc822name.crt.der
│  │  │  │  │  │  ├── test_csr_v3_all.csr.der
│  │  │  │  │  │  ├── test_csr_v3_all_malformed_attributes_extension_request.csr.der
│  │  │  │  │  │  ├── test_csr_v3_all_malformed_attributes_extension_request_sequence_len1.csr.der
│  │  │  │  │  │  ├── test_csr_v3_all_malformed_attributes_extension_request_sequence_len2.csr.der
│  │  │  │  │  │  ├── test_csr_v3_all_malformed_attributes_extension_request_sequence_tag.csr.der
│  │  │  │  │  │  ├── test_csr_v3_all_malformed_attributes_extension_request_set_tag.csr.der
│  │  │  │  │  │  ├── test_csr_v3_all_malformed_attributes_id_tag.csr.der
│  │  │  │  │  │  ├── test_csr_v3_all_malformed_attributes_len1.csr.der
│  │  │  │  │  │  ├── test_csr_v3_all_malformed_attributes_len2.csr.der
│  │  │  │  │  │  ├── test_csr_v3_all_malformed_attributes_sequence_tag.csr.der
│  │  │  │  │  │  ├── test_csr_v3_all_malformed_duplicated_extension.csr.der
│  │  │  │  │  │  ├── test_csr_v3_all_malformed_extension_data_len1.csr.der
│  │  │  │  │  │  ├── test_csr_v3_all_malformed_extension_data_len2.csr.der
│  │  │  │  │  │  ├── test_csr_v3_all_malformed_extension_data_tag.csr.der
│  │  │  │  │  │  ├── test_csr_v3_all_malformed_extension_id_tag.csr.der
│  │  │  │  │  │  ├── test_csr_v3_all_malformed_extension_key_usage_bitstream_tag.csr.der
│  │  │  │  │  │  ├── test_csr_v3_all_malformed_extension_ns_cert_bitstream_tag.csr.der
│  │  │  │  │  │  ├── test_csr_v3_all_malformed_extension_subject_alt_name_sequence_tag.csr.der
│  │  │  │  │  │  ├── test_csr_v3_all_malformed_extension_type_oid.csr.der
│  │  │  │  │  │  ├── test_csr_v3_all_malformed_extensions_sequence_tag.csr.der
│  │  │  │  │  │  ├── test_csr_v3_keyUsage.csr.der
│  │  │  │  │  │  ├── test_csr_v3_nsCertType.csr.der
│  │  │  │  │  │  │ test_csr_v3_subjectAltName.csr.der
│  │  │  │  │  ├── passwd.psk
│  │  │  │  │  ├── pkcs7-rsa-expired.crt
│  │  │  │  │  ├── pkcs7-rsa-expired.der
│  │  │  │  │  ├── pkcs7-rsa-expired.key
│  │  │  │  │  ├── pkcs7-rsa-sha256-1.crt
│  │  │  │  │  ├── pkcs7-rsa-sha256-1.der
│  │  │  │  │  ├── pkcs7-rsa-sha256-1.key
│  │  │  │  │  ├── pkcs7-rsa-sha256-1.pem
│  │  │  │  │  ├── pkcs7-rsa-sha256-2.crt
│  │  │  │  │  ├── pkcs7-rsa-sha256-2.der
│  │  │  │  │  ├── pkcs7-rsa-sha256-2.key
│  │  │  │  │  ├── pkcs7-rsa-sha256-2.pem
│  │  │  │  │  ├── pkcs7-rsa-sha256-3.crt
│  │  │  │  │  ├── pkcs7-rsa-sha256-3.key
│  │  │  │  │  ├── pkcs7-rsa-sha256-3.pem
│  │  │  │  │  ├── pkcs7_data.bin
│  │  │  │  │  ├── pkcs7_data_1.bin
│  │  │  │  │  ├── pkcs7_data_3_signed.der
│  │  │  │  │  ├── pkcs7_data_cert_encrypted.der
│  │  │  │  │  ├── pkcs7_data_cert_signed_sha1.der
│  │  │  │  │  ├── pkcs7_data_cert_signed_sha256.der
│  │  │  │  │  ├── pkcs7_data_cert_signed_sha512.der
│  │  │  │  │  ├── pkcs7_data_cert_signed_v2.der
│  │  │  │  │  ├── pkcs7_data_cert_signeddata_sha256.der
│  │  │  │  │  ├── pkcs7_data_multiple_certs_signed.der
│  │  │  │  │  ├── pkcs7_data_multiple_signed.der
│  │  │  │  │  ├── pkcs7_data_no_signers.der
│  │  │  │  │  ├── pkcs7_data_rsa_expired.der
│  │  │  │  │  ├── pkcs7_data_signed_badcert.der
│  │  │  │  │  ├── pkcs7_data_signed_badsigner.der
│  │  │  │  │  ├── pkcs7_data_signed_badsigner1_badsize.der
│  │  │  │  │  ├── pkcs7_data_signed_badsigner1_badtag.der
│  │  │  │  │  ├── pkcs7_data_signed_badsigner1_fuzzbad.der
│  │  │  │  │  ├── pkcs7_data_signed_badsigner2_badsize.der
│  │  │  │  │  ├── pkcs7_data_signed_badsigner2_badtag.der
│  │  │  │  │  ├── pkcs7_data_signed_badsigner2_fuzzbad.der
│  │  │  │  │  ├── pkcs7_data_with_signature.der
│  │  │  │  │  ├── pkcs7_data_without_cert_signed.der
│  │  │  │  │  ├── pkcs7_signerInfo_1_serial_invalid_tag_after_long_name.der
│  │  │  │  │  ├── pkcs7_signerInfo_2_invalid_tag.der
│  │  │  │  │  ├── pkcs7_signerInfo_issuer_invalid_size.der
│  │  │  │  │  ├── pkcs7_signerInfo_serial_invalid_size.der
│  │  │  │  │  ├── pkcs7_zerolendata.bin
│  │  │  │  │  ├── pkcs7_zerolendata_detached.der
│  │  │  │  │  ├── print_c.pl
│  │  │  │  │  ├── rsa4096_prv.der
│  │  │  │  │  ├── rsa4096_prv.pem
│  │  │  │  │  ├── rsa4096_pub.der
│  │  │  │  │  ├── rsa4096_pub.pem
│  │  │  │  │  ├── rsa512.key
│  │  │  │  │  ├── rsa521.key
│  │  │  │  │  ├── rsa522.key
│  │  │  │  │  ├── rsa528.key
│  │  │  │  │  ├── rsa_multiple_san_uri.key
│  │  │  │  │  ├── rsa_pkcs1_1024_3des.pem
│  │  │  │  │  ├── rsa_pkcs1_1024_aes128.pem
│  │  │  │  │  ├── rsa_pkcs1_1024_aes192.pem
│  │  │  │  │  ├── rsa_pkcs1_1024_aes256.pem
│  │  │  │  │  ├── rsa_pkcs1_1024_clear.pem
│  │  │  │  │  ├── rsa_pkcs1_1024_des.pem
│  │  │  │  │  ├── rsa_pkcs1_2048_3des.pem
│  │  │  │  │  ├── rsa_pkcs1_2048_aes128.pem
│  │  │  │  │  ├── rsa_pkcs1_2048_aes192.pem
│  │  │  │  │  ├── rsa_pkcs1_2048_aes256.pem
│  │  │  │  │  ├── rsa_pkcs1_2048_clear.pem
│  │  │  │  │  ├── rsa_pkcs1_2048_des.pem
│  │  │  │  │  ├── rsa_pkcs1_2048_public.der
│  │  │  │  │  ├── rsa_pkcs1_2048_public.pem
│  │  │  │  │  ├── rsa_pkcs1_4096_3des.pem
│  │  │  │  │  ├── rsa_pkcs1_4096_aes128.pem
│  │  │  │  │  ├── rsa_pkcs1_4096_aes192.pem
│  │  │  │  │  ├── rsa_pkcs1_4096_aes256.pem
│  │  │  │  │  ├── rsa_pkcs1_4096_clear.pem
│  │  │  │  │  ├── rsa_pkcs1_4096_des.pem
│  │  │  │  │  ├── rsa_pkcs8_1024_public.der
│  │  │  │  │  ├── rsa_pkcs8_2048_public.der
│  │  │  │  │  ├── rsa_pkcs8_2048_public.pem
│  │  │  │  │  ├── rsa_pkcs8_pbe_sha1_1024_2des.der
│  │  │  │  │  ├── rsa_pkcs8_pbe_sha1_1024_2des.pem
│  │  │  │  │  ├── rsa_pkcs8_pbe_sha1_1024_3des.der
│  │  │  │  │  ├── rsa_pkcs8_pbe_sha1_1024_3des.pem
│  │  │  │  │  ├── rsa_pkcs8_pbe_sha1_2048_2des.der
│  │  │  │  │  ├── rsa_pkcs8_pbe_sha1_2048_2des.pem
│  │  │  │  │  ├── rsa_pkcs8_pbe_sha1_2048_3des.der
│  │  │  │  │  ├── rsa_pkcs8_pbe_sha1_2048_3des.pem
│  │  │  │  │  ├── rsa_pkcs8_pbe_sha1_4096_2des.der
│  │  │  │  │  ├── rsa_pkcs8_pbe_sha1_4096_2des.pem
│  │  │  │  │  ├── rsa_pkcs8_pbe_sha1_4096_3des.der
│  │  │  │  │  ├── rsa_pkcs8_pbe_sha1_4096_3des.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha224.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha224.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha256.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha256.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha384.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha384.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha512.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_1024_3des_sha512.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_1024_des.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_1024_des.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha224.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha224.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha256.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha256.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha384.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha384.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha512.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_1024_des_sha512.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha224.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha224.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha256.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha256.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha384.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha384.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha512.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_2048_3des_sha512.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_2048_aes128cbc_sha384.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_2048_aes128cbc_sha384.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_2048_aes192cbc_sha384.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_2048_aes192cbc_sha384.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_2048_aes256cbc_sha384.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_2048_aes256cbc_sha384.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_2048_des.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_2048_des.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha224.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha224.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha256.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha256.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha384.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha384.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha512.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_2048_des_sha512.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha224.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha224.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha256.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha256.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha384.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha384.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha512.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_4096_3des_sha512.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_4096_des.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_4096_des.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha224.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha224.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha256.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha256.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha384.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha384.pem
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha512.der
│  │  │  │  │  ├── rsa_pkcs8_pbes2_pbkdf2_4096_des_sha512.pem
│  │  │  │  │  ├── rsa_single_san_uri.crt.der
│  │  │  │  │  ├── rsa_single_san_uri.key
│  │  │  │  │  ├── server1-nospace.crt
│  │  │  │  │  ├── server1-v1.crt
│  │  │  │  │  ├── server1.80serial.crt
│  │  │  │  │  ├── server1.allSubjectAltNames.crt
│  │  │  │  │  ├── server1.asciichars.crt
│  │  │  │  │  ├── server1.ca.crt
│  │  │  │  │  ├── server1.ca.der
│  │  │  │  │  ├── server1.ca_noauthid.crt
│  │  │  │  │  ├── server1.cert_type.crt
│  │  │  │  │  ├── server1.cert_type.crt.openssl.v3_ext
│  │  │  │  │  ├── server1.cert_type_noauthid.crt
│  │  │  │  │  ├── server1.commas.crt
│  │  │  │  │  ├── server1.crt
│  │  │  │  │  ├── server1.crt.openssl.v3_ext
│  │  │  │  │  ├── server1.csr
│  │  │  │  │  ├── server1.der
│  │  │  │  │  ├── server1.hashsymbol.crt
│  │  │  │  │  ├── server1.key
│  │  │  │  │  ├── server1.key.der
│  │  │  │  │  ├── server1.key_ext_usage.crt
│  │  │  │  │  ├── server1.key_ext_usages.crt
│  │  │  │  │  ├── server1.key_usage.crt
│  │  │  │  │  ├── server1.key_usage.crt.openssl.v3_ext
│  │  │  │  │  ├── server1.key_usage_noauthid.crt
│  │  │  │  │  ├── server1.long_serial.crt
│  │  │  │  │  ├── server1.long_serial_FF.crt
│  │  │  │  │  ├── server1.noauthid.crt
│  │  │  │  │  ├── server1.pubkey
│  │  │  │  │  ├── server1.pubkey.der
│  │  │  │  │  ├── server1.req.cert_type
│  │  │  │  │  ├── server1.req.cert_type_empty
│  │  │  │  │  ├── server1.req.key_usage
│  │  │  │  │  ├── server1.req.key_usage_empty
│  │  │  │  │  ├── server1.req.ku-ct
│  │  │  │  │  ├── server1.req.md5
│  │  │  │  │  ├── server1.req.sha1
│  │  │  │  │  ├── server1.req.sha224
│  │  │  │  │  ├── server1.req.sha256
│  │  │  │  │  ├── server1.req.sha256.conf
│  │  │  │  │  ├── server1.req.sha256.ext
│  │  │  │  │  ├── server1.req.sha384
│  │  │  │  │  ├── server1.req.sha512
│  │  │  │  │  ├── server1.spaces.crt
│  │  │  │  │  ├── server1.v1.crt
│  │  │  │  │  ├── server10-badsign.crt
│  │  │  │  │  ├── server10-bs_int3.pem
│  │  │  │  │  ├── server10.crt
│  │  │  │  │  ├── server10.key
│  │  │  │  │  ├── server10_int3-bs.pem
│  │  │  │  │  ├── server10_int3_int-ca2.crt
│  │  │  │  │  ├── server10_int3_int-ca2_ca.crt
│  │  │  │  │  ├── server10_int3_spurious_int-ca2.crt
│  │  │  │  │  ├── server1_ca.crt
│  │  │  │  │  ├── server1_csr.opensslconf
│  │  │  │  │  ├── server2-badsign.crt
│  │  │  │  │  ├── server2-sha256.crt
│  │  │  │  │  ├── server2-sha256.crt.der
│  │  │  │  │  ├── server2-v1-chain.crt
│  │  │  │  │  ├── server2-v1.crt
│  │  │  │  │  ├── server2.crt
│  │  │  │  │  ├── server2.crt.der
│  │  │  │  │  ├── server2.der
│  │  │  │  │  ├── server2.key
│  │  │  │  │  ├── server2.key.der
│  │  │  │  │  ├── server2.key.enc
│  │  │  │  │  ├── server2.ku-ds.crt
│  │  │  │  │  ├── server2.ku-ds_ke.crt
│  │  │  │  │  ├── server2.ku-ka.crt
│  │  │  │  │  ├── server2.ku-ke.crt
│  │  │  │  │  ├── server3.crt
│  │  │  │  │  ├── server3.key
│  │  │  │  │  ├── server4.crt
│  │  │  │  │  ├── server4.key
│  │  │  │  │  ├── server5-badsign.crt
│  │  │  │  │  ├── server5-der0.crt
│  │  │  │  │  ├── server5-der1a.crt
│  │  │  │  │  ├── server5-der1b.crt
│  │  │  │  │  ├── server5-der2.crt
│  │  │  │  │  ├── server5-der4.crt
│  │  │  │  │  ├── server5-der8.crt
│  │  │  │  │  ├── server5-der9.crt
│  │  │  │  │  ├── server5-expired.crt
│  │  │  │  │  ├── server5-future.crt
│  │  │  │  │  ├── server5-selfsigned.crt
│  │  │  │  │  ├── server5-sha1.crt
│  │  │  │  │  ├── server5-sha224.crt
│  │  │  │  │  ├── server5-sha384.crt
│  │  │  │  │  ├── server5-sha512.crt
│  │  │  │  │  ├── server5-ss-expired.crt
│  │  │  │  │  ├── server5-ss-forgeca.crt
│  │  │  │  │  ├── server5-tricky-ip-san-malformed-len.crt.der
│  │  │  │  │  ├── server5-tricky-ip-san.crt.der
│  │  │  │  │  ├── server5.crt
│  │  │  │  │  ├── server5.crt.der
│  │  │  │  │  ├── server5.crt.openssl.v3_ext
│  │  │  │  │  ├── server5.eku-cli.crt
│  │  │  │  │  ├── server5.eku-cs.crt
│  │  │  │  │  ├── server5.eku-cs_any.crt
│  │  │  │  │  ├── server5.eku-srv.crt
│  │  │  │  │  ├── server5.eku-srv_cli.crt
│  │  │  │  │  ├── server5.key
│  │  │  │  │  ├── server5.key.der
│  │  │  │  │  ├── server5.key.enc
│  │  │  │  │  ├── server5.ku-ds.crt
│  │  │  │  │  ├── server5.ku-ka.crt
│  │  │  │  │  ├── server5.ku-ke.crt
│  │  │  │  │  ├── server5.req.ku.sha1
│  │  │  │  │  ├── server6-ss-child.crt
│  │  │  │  │  ├── server6-ss-child.crt.openssl.v3_ext
│  │  │  │  │  ├── server6.crt
│  │  │  │  │  ├── server6.key
│  │  │  │  │  ├── server7-badsign.crt
│  │  │  │  │  ├── server7-expired.crt
│  │  │  │  │  ├── server7-future.crt
│  │  │  │  │  ├── server7.crt
│  │  │  │  │  ├── server7.key
│  │  │  │  │  ├── server7_int-ca-exp.crt
│  │  │  │  │  ├── server7_int-ca.crt
│  │  │  │  │  ├── server7_int-ca_ca2.crt
│  │  │  │  │  ├── server7_spurious_int-ca.crt
│  │  │  │  │  ├── server8.crt
│  │  │  │  │  ├── server8.key
│  │  │  │  │  ├── server8_int-ca2.crt
│  │  │  │  │  ├── server9-bad-mgfhash.crt
│  │  │  │  │  ├── server9-bad-saltlen.crt

Outputs:

Toolchain

Version: 87afe3f0d0
Build docker image: docker-dtr.nordicsemi.no/sw-production/ncs-build:87afe3f0d0_81ed5a52d6

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

  • ◻️ Toolchain - Skipped: existing toolchain is used
  • ✅ Build twister
  • 🟡 Integration tests
    • ❌ test-sdk-audio
    • ✅ desktop52_verification
    • ✅ test-fw-nrfconnect-boot
    • ✅ test-fw-nrfconnect-apps
    • ❌ test_ble_nrf_config
    • ❌ test-fw-nrfconnect-ble_mesh
    • 🟡 test-fw-nrfconnect-ble_samples
    • ✅ test-fw-nrfconnect-chip
    • ✅ test-fw-nrfconnect-nfc
    • ✅ test-fw-nrfconnect-nrf-iot_cloud
    • ❌ test-fw-nrfconnect-nrf-iot_libmodem-nrf
    • ❌ test-fw-nrfconnect-nrf-iot_serial_lte_modem
    • ✅ test-fw-nrfconnect-nrf-iot_zephyr_lwm2m
    • ✅ test-fw-nrfconnect-nrf-iot_samples
    • ❌ test-fw-nrfconnect-nrf-iot_lwm2m
    • ✅ doc-internal
    • ❌ test-fw-nrfconnect-nrf-iot_thingy91
    • 🟡 test-fw-nrfconnect-nrf_crypto
    • ❌ test-fw-nrfconnect-proprietary_esb
    • 🟡 test-fw-nrfconnect-rpc
    • ❌ test-fw-nrfconnect-rs
    • ❌ test-fw-nrfconnect-fem
    • ❌ test-fw-nrfconnect-tfm
    • ✅ test-fw-nrfconnect-thread
    • ✅ test-fw-nrfconnect-zigbee
    • ✅ test-sdk-find-my
    • ✅ test-fw-nrfconnect-nrf-iot_mosh
    • ✅ test-fw-nrfconnect-nrf-iot_positioning
    • 🟡 test-sdk-sidewalk
    • ❌ test-sdk-wifi
    • 🟡 test-low-level
    • ✅ test-fw-nrfconnect-nrf-iot_nrf_provisioning
    • ✅ test-sdk-pmic-samples
    • ✅ test-sdk-mcuboot
    • 🟡 test-sdk-dfu
    • ✅ test-fw-nrfconnect-ps
    • ❌ test-secdom-samples-public

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

@NordicBuilder
Copy link
Contributor Author

You can find the documentation preview for this PR at this link. It will be updated about 10 minutes after the documentation build succeeds.

Note: This comment is automatically posted by the Documentation Publishing GitHub Action.

@NordicBuilder NordicBuilder force-pushed the auto-manifest-sdk-zephyr-2041 branch 5 times, most recently from 16064e8 to 2e41fd1 Compare October 9, 2024 10:07
@NordicBuilder
Copy link
Contributor Author

NordicBuilder commented Oct 9, 2024

Memory footprint analysis revealed the following potential issues

applications.nrf_desktop.zdebug[nrf52833dk/nrf52820]: RAM size increased by 620[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug[nrf52833dk/nrf52820]: ROM size increased by 1580[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug[nrf52dmouse/nrf52832]: ROM size increased by 1504[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
sample.matter.template.debug[nrf7002dk/nrf5340/cpuapp]: RAM size increased by 19448[B] in comparison to the main[132c5e5] branch. - link (cc: @kkasperczyk-no @ArekBalysNordic @markaj-nordic)
sample.matter.template.debug[nrf7002dk/nrf5340/cpuapp]: ROM size increased by 9396[B] in comparison to the main[132c5e5] branch. - link (cc: @kkasperczyk-no @ArekBalysNordic @markaj-nordic)
applications.nrf_desktop.zdebug.usb_next[nrf52840dongle/nrf52840]: ROM size increased by 752[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_4llpmconn[nrf52840dongle/nrf52840]: ROM size increased by 572[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug.uart[nrf54h20dk/nrf54h20/cpuapp]: RAM size increased by 1189[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug.uart[nrf54h20dk/nrf54h20/cpuapp]: ROM size increased by 8544[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug[nrf52820dongle/nrf52820]: RAM size increased by 620[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug[nrf52820dongle/nrf52820]: ROM size increased by 1580[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug[nrf52833dk/nrf52833]: ROM size increased by 544[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_nrf21540ek_multicore[nrf5340dk/nrf5340/cpuapp]: ROM size increased by 1900[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
sample.matter.template.release[nrf7002dk/nrf5340/cpuapp]: RAM size increased by 19520[B] in comparison to the main[132c5e5] branch. - link (cc: @kkasperczyk-no @ArekBalysNordic @markaj-nordic)
sample.matter.template.release[nrf7002dk/nrf5340/cpuapp]: ROM size increased by 8604[B] in comparison to the main[132c5e5] branch. - link (cc: @kkasperczyk-no @ArekBalysNordic @markaj-nordic)
applications.nrf_desktop.zdebug.usb_next[nrf52840gmouse/nrf52840]: ROM size increased by 728[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug[nrf52833dongle/nrf52833]: ROM size increased by 544[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_dongle[nrf52840dk/nrf52840]: ROM size increased by 764[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zrelease[nrf52820dongle/nrf52820]: RAM size increased by 620[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zrelease[nrf52820dongle/nrf52820]: ROM size increased by 1124[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug[nrf5340dk/nrf5340/cpuapp]: ROM size increased by 1900[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_mcuboot_smp[nrf52840dk/nrf52840]: ROM size increased by 700[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zrelease[nrf5340dk/nrf5340/cpuapp]: RAM size increased by 300[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zrelease[nrf5340dk/nrf5340/cpuapp]: ROM size increased by 1464[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zrelease_fast_pair.keyboard[nrf52kbd/nrf52832]: ROM size increased by 2156[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug.usb_next[nrf52840dk/nrf52840]: ROM size increased by 692[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zrelease[nrf52833dk/nrf52820]: RAM size increased by 620[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zrelease[nrf52833dk/nrf52820]: ROM size increased by 1124[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_fast_pair.gmouse[nrf52840gmouse/nrf52840]: ROM size increased by 5048[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_keyboard.usb_next[nrf52840dk/nrf52840]: ROM size increased by 932[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zrelease[nrf54h20dk/nrf54h20/cpuapp]: RAM size increased by 1173[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zrelease[nrf54h20dk/nrf54h20/cpuapp]: ROM size increased by 6240[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug[nrf52840dongle/nrf52840]: ROM size increased by 568[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug[nrf52810dmouse/nrf52810]: RAM size increased by 640[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug[nrf52810dmouse/nrf52810]: ROM size increased by 1356[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_dongle.usb_next[nrf52840dk/nrf52840]: ROM size increased by 960[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_keyboard[nrf52840dk/nrf52840]: ROM size increased by 700[B] in comparison to the main[132c5e5] branch. - link (cc: @MarekPieta)

Note: This message is automatically posted and updated by the CI (latest/sdk-nrf/PR-17453/12)

@nordic-krch nordic-krch force-pushed the auto-manifest-sdk-zephyr-2041 branch from 2e41fd1 to d86b4e7 Compare October 11, 2024 05:19
@NordicBuilder NordicBuilder force-pushed the auto-manifest-sdk-zephyr-2041 branch from d86b4e7 to 8e4f722 Compare October 11, 2024 05:19
@nordic-krch nordic-krch added this to the 2.8.0 milestone Oct 15, 2024
@NordicBuilder NordicBuilder force-pushed the auto-manifest-sdk-zephyr-2041 branch from 8e4f722 to 4482804 Compare October 22, 2024 06:44
@nordic-krch nordic-krch force-pushed the auto-manifest-sdk-zephyr-2041 branch from 4482804 to 200a036 Compare October 22, 2024 06:44
@NordicBuilder NordicBuilder force-pushed the auto-manifest-sdk-zephyr-2041 branch from 200a036 to ae93ce0 Compare October 22, 2024 06:45
Automatically created by Github Action

Signed-off-by: Nordic Builder <[email protected]>
@NordicBuilder NordicBuilder force-pushed the auto-manifest-sdk-zephyr-2041 branch from ae93ce0 to 4bb6ca2 Compare October 22, 2024 09:12
@NordicBuilder
Copy link
Contributor Author

Automatically closed by action-manifest-pr GH action

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.

2 participants