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

Test branch psa #20256

Draft
wants to merge 123 commits into
base: main
Choose a base branch
from
Draft

Conversation

sean-madigan
Copy link
Contributor

No description provided.

anangl and others added 30 commits February 7, 2025 15:59
Add corrections for a bunch of sdk-zephyr revert commits that were
cherry-picked after rebase without updating their references to
reverted commits.
Remove a no longer needed correction for one sdk-trusted-firmware-m
commit.

The added corrections can be removed after the next sdk-zephyr rebase.

Signed-off-by: Andrzej Głąbek <[email protected]>
Pull in upmerged revisions of zephyr and mcuboot.

Update other modules with related adjustments.

Signed-off-by: Andrzej Głąbek <[email protected]>
Adapt to the latest changes applied to Zephyr.

Signed-off-by: Andrzej Głąbek <[email protected]>
The bluetooth shell has been refactored (see
bf897cf941a514e7ea7a5f837d2287e360281f24), so the sourced file no longer
exists. Note that it was actually a bad use of sourcing, as the upstream
options are already part of the Kconfig tree (unless I missed
something).

Signed-off-by: Gerard Marull-Paretas <[email protected]>
- Upgrade to latest Sphinx
- Fix some references
- Fix Zephyr docset required env vars

Signed-off-by: Gerard Marull-Paretas <[email protected]>
Align with list of inputs in upstream Zephyr.

Signed-off-by: Gerard Marull-Paretas <[email protected]>
According to the new extension parameters.

Signed-off-by: Gerard Marull-Paretas <[email protected]>
Now the output will be $name/html|xml, so that we can generate
other outputs other than HTML only, e.g. XML.

Signed-off-by: Gerard Marull-Paretas <[email protected]>
Instead of the removed CONFIG_NRF_REGTOOL_GENERATE_BICR.

Signed-off-by: Gerard Marull-Paretas <[email protected]>
`bt-hci-bus` property values are now specified in lowercase and without
the `BT_HCI_BUS_` prefix.

Signed-off-by: Andrzej Głąbek <[email protected]>
The ESB_DYNAMIC_INTERRUPTS option enables code that uses direct dynamic
interrupts mechanism, so it should select the DYNAMIC_DIRECT_INTERRUPTS
option together with its dependency DIRECT_INTERRUPTS, not depend on
those, otherwise some unobvious dependency loops may appear (like one
with MBOX; through NRF_RPC, MPSL_CX_SOFTWARE_RPC, NRF_FEM_ONLY, and
MBOX_ANDES_PLIC_SW).

Signed-off-by: Andrzej Głąbek <[email protected]>
This dependency introduced as a fix for cmake warnings doesn't
seem to be needed anymore but it leads to a dependency loop with
BT_CTLR_ADV_EXT_SUPPORT.
This commit basically reverts 43c4519.

Signed-off-by: Andrzej Głąbek <[email protected]>
After the latest update of the "nordic,npm1300-charger" binding,
1000 mA is the maximum value for the dischg-limit-microamp property.

Signed-off-by: Andrzej Głąbek <[email protected]>
Remove entries for the following files that were recently deleted
from the hostap module:
- crypto_mbedtls-bignum.c
- crypto_mbedtls-ec.c
- crypto_mbedtls.c
- tls_mbedtls.c

Signed-off-by: Andrzej Głąbek <[email protected]>
As the BT_LL_CHOICE choice was removed upstream, BT_LL_SOFTDEVICE
needs to be a regular option now (and not depending on BT_CTLR
anymore). Also it should select HAS_BT_CTLR as it is supposed for
all LL implemenations. See Zephyr PR 82157.

Also adjust dragoon revision accordingly.

Signed-off-by: Andrzej Głąbek <[email protected]>
- the BT_CTLR option was replaced with HAS_BT_CTLR which is selected
  by the LL implementations
- the BT_LL_CHOICE choice option was removed

See Zephyr PR 82157.

Signed-off-by: Andrzej Głąbek <[email protected]>
Bluetooth LL is now selected via devicetree so remove the obsolete
Kconfig stuff. See Zephyr PR 82157.

Signed-off-by: Andrzej Głąbek <[email protected]>
net_pkt_set_txtime() was deprecated for two Zephyr releases and has been
finally removed. net_pkt_set_timestamp_ns() is to be used instead.

Signed-off-by: Andrzej Głąbek <[email protected]>
Such configuration would lead to a recursive logging loop and a special
check catching it was introduced, so now it generates a build warning.
See Zephyr PR 78449.

Signed-off-by: Andrzej Głąbek <[email protected]>
Follow the renaming applied in upstream Zephyr when common CDC ACM UART
configuration was introduced. See Zephyr PR 81308.

Signed-off-by: Andrzej Głąbek <[email protected]>
The BT_LL_SW_SPLIT option is now automatically enabled based on
the corresponding node ("zephyr,bt-hci-ll-sw-split" compatible)
being enabled in devicetree (and this is done by the bt-ll-sw-split
snippet).
The BT_CTLR option is deprecated in favor of HAS_BT_CTLR which is
selected accordingly by LL implementations.

Signed-off-by: Andrzej Głąbek <[email protected]>
Add an option that will make NRF_SECURITY enabled when this is required
for builds involving BT.
This is a temporary solution, just to unblock building of many samples
and tests. It is supposed to be eventually replaced with something more
suitable.

Signed-off-by: Andrzej Głąbek <[email protected]>
zephyr commit 8cfad44852845cd30336d40f61dade69ab4357db
removed the auto adv resume and deprecated the options that
were using this.

So this commit updates all uses of the deprecated options
in nrf.

Also update accordingly find-my and sidewalk modules.

Signed-off-by: Sean Madigan <[email protected]>
Signed-off-by: Andrzej Głąbek <[email protected]>
These macros are now provided by Zephyr (in sys_clock.h).

As these macros for mesh were defined with `unsigned long long` type
and now they are `unsigned long`, casting was added where needed to
avoid overflows.

Signed-off-by: Andrzej Głąbek <[email protected]>
Wi-Fi credentials lib has been moved to upstream. And Wi-Fi management
extension library is merged with Wi-Fi management in upstream.

Signed-off-by: Ravi Dondaputi <[email protected]>
Add default file system configuration depending on flash driver.

Signed-off-by: Maciej Baczmanski <[email protected]>
This region region is no longer enabled by default.
It must be enabled explicitly when actually used.

Signed-off-by: Andrzej Głąbek <[email protected]>
LE legacy pairing is no longer enabled by default. Samples that
use it, need to disable the BT_SMP_SC_PAIR_ONLY Kconfig option.
See Zephyr PR 73217.

Signed-off-by: Andrzej Głąbek <[email protected]>
SUIT unit tests rely on the automatically assigned volatile key IDs.
Since the key IDs changes with the amount of allowed keys, we should not
change it without regenerating all test payloads.
The new Zephyr brings a Kconfig to control this variable and changes the
default amount from 32 to 16, so the SUIT test platform needs to
override it back to the previous default value.

Ref: NCSDK-31359

Signed-off-by: Tomasz Chyrowicz <[email protected]>
Commit adapts configuration ble mesh, trusted storage and
mbedtls psa parameters to be able to run mesh samples
and tests.

Signed-off-by: Aleksandr Khromykh <[email protected]>
anangl and others added 16 commits February 7, 2025 16:20
`nanopb_BUILD_RUNTIME` is not an option to be passed to nanopb,
but rather a cmake one, so set it to off in the proper way.

The previous invalid form was not working as intended and only by
chance not causing any problems. With a correction that was applied
in the nanopb module (removal of leading space before the first -I
directive passed to nanopb), this behavior changed and because of
that the generation could not be performed correctly.

Signed-off-by: Andrzej Głąbek <[email protected]>
Use zsock_addrinfo to avoid dependency on the POSIX subsystem.

Remove CONFIG_POSIX_API from provisioning tests.

Signed-off-by: Juha Ylinen <[email protected]>
... because this causes conflicting types compilation errors in library
files it uses.

Signed-off-by: Andrzej Głąbek <[email protected]>
Test scenarios `shell.device_filter` and
`init.check_init_priorities` should be fixed in
Zephyr first.

Signed-off-by: Katarzyna Giądła <[email protected]>
-This added SYS_INIT will ensure that psa_crypto_init is called
 in kernel *after* Hw_CC3XX is executed to ensure that mutexes are
 ready to be used.

Signed-off-by: Frank Audun Kvamtrø <[email protected]>
-Changing default y for nrf_security to use
 DT_HAS_ZEPHYR_PSA_CRYPTO_RNG_ENABLED instead of depending
 on ENTROPY_PSA_CRYPTO_RNG. Doing this avoids a dependency
 loop on ENTROPY_GENERATOR

Signed-off-by: Frank Audun Kvamtrø <[email protected]>
-This commit is only used to enact testing. The dependency for
 PR nrfconnect#2464 to the previous commit is inherent, but we would like
 to have a commit that is pickable in the upmerge

Signed-off-by: Frank Audun Kvamtrø <[email protected]>
This is required by PSA in NCS, so make sure it is selected
NRF_SECURITY_ENABLER.

Signed-off-by: Sean Madigan <[email protected]>
-Enabling ENTROPY_GENERATOR for BT_HOST_CRYPTO_PRNG and BT_ECC
 as a workaround of having ENTROPY_GENERATOR in sample/tests

Also the heap size required for bsim is larger than on
actual target, reason unknown.

Signed-off-by: Sean Madigan <[email protected]>
Signed-off-by: Frank Audun Kvamtrø <[email protected]>
The NRF_RNG_ENTROPY_DRIVER provides entropy though the PSA APIs.

This is used to seed/reseed the Oberon PSA random drivers
(CTR_DRBG/HMAC_DRBG). Before this was only used to allow enabling
this PSA driver with the devices which use the DT label 'rng'.

We extend that now to allow this driver to be used with the fake
entropy node which uses the DT label 'prng'.

This is needed to unblock development until real RNG is enabled
for all the needed applications/samples.

In practice this means that when 'prng' is enabled a device can
generate random numbers with the psa_generate_random call.

Signed-off-by: Georgios Vasilakis <[email protected]>
-Adding CONFIG_MBEDTLS_FORCE_LEGACY_MD for cc3xx/oberon legacy
 psa_tls to avoid that MBEDTLS_MD_SOME_PSA is getting set

Signed-off-by: Frank Audun Kvamtrø <[email protected]>
-Fixes issues with nRF54H20 and nRF5340dk in upmerge. This can be
 seen as a workaround
-Adjusting board-files for central_uart and peripheral_uart
 for nRF5340 and nRFH20 cpuapp

Signed-off-by: Frank Audun Kvamtrø <[email protected]>
-HKDF reports errors when MBEDTLS_MD_SOME_PSA is set. Setting this
 configuration to avoid trying to resolve with PSA APIs.
 This configurations and these tests to be removed with more
 standardization on PSA crypto

Signed-off-by: Frank Audun Kvamtrø <[email protected]>
Increased stack sizes to prevent the stack overflows.

Jira: NCSDK-31374

Signed-off-by: Mateusz Kapala <[email protected]>
This was overflowing after upmerge.

Signed-off-by: Sean Madigan <[email protected]>
@github-actions github-actions bot added doc-required PR must not be merged without tech writer approval. manifest ble mesh Label for ble mesh PRbot. Add this if PR is related to ble mesh and you need to get review. labels Feb 7, 2025
@NordicBuilder
Copy link
Contributor

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

Name Old Revision New Revision Diff
dragoon d85f37138db71ea6376260fb3ed5819faa4b97ee develop/DRGN-23817_adapt_for_upmerge_20241220 N/A
find-my https://github.com/nrfconnect/sdk-find-my/commit/733daa3d3a31cf98e0378551bd454a0c566deae6 (main) https://github.com/nrfconnect/sdk-find-my/pull/260 nrfconnect/sdk-find-my#260/files
mcuboot nrfconnect/sdk-mcuboot@3a25855 (main) nrfconnect/sdk-mcuboot#393 nrfconnect/sdk-mcuboot#393/files
nrfxlib nrfconnect/sdk-nrfxlib@1cdbd26 nrfconnect/sdk-nrfxlib#1648 nrfconnect/sdk-nrfxlib#1648/files
sidewalk nrfconnect/sdk-sidewalk@f274ce8 nrfconnect/sdk-sidewalk#673 nrfconnect/sdk-sidewalk#673/files
zephyr nrfconnect/sdk-zephyr@693769a (main) nrfconnect/sdk-zephyr#2458 nrfconnect/sdk-zephyr#2458/files

DNM label due to: 5 projects with PR revision and 1 unreachable repo

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

@NordicBuilder
Copy link
Contributor

You can find the documentation preview for this PR at this link.

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

@NordicBuilder
Copy link
Contributor

Memory footprint analysis revealed the following potential issues

applications.nrf_desktop.zdebug[nrf52840gmouse/nrf52840]: RAM size increased by 5884[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug[nrf52840gmouse/nrf52840]: ROM size increased by 23092[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_fast_pair.gmouse.uart.kmu_provision[nrf54l15dk/nrf54l15/cpuapp]: RAM size increased by 6780[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_fast_pair.gmouse.uart.kmu_provision[nrf54l15dk/nrf54l15/cpuapp]: ROM size increased by 31136[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zrelease[nrf52840dongle/nrf52840]: RAM size increased by 6420[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zrelease[nrf52840dongle/nrf52840]: ROM size increased by 20460[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug[nrf5340dk/nrf5340/cpuapp]: RAM size increased by 6052[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug[nrf5340dk/nrf5340/cpuapp]: ROM size increased by 23104[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_keyboard.uart.kmu_provision[nrf54l15dk/nrf54l15/cpuapp]: RAM size increased by 6836[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_keyboard.uart.kmu_provision[nrf54l15dk/nrf54l15/cpuapp]: ROM size increased by 30792[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_wwcb[nrf52840dk/nrf52840]: RAM size increased by 5968[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_wwcb[nrf52840dk/nrf52840]: ROM size increased by 23108[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zrelease_keyboard[nrf54l15dk/nrf54l05/cpuapp]: RAM size increased by 4600[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug[nrf52833dk/nrf52833]: RAM size increased by 4540[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug[nrf52833dk/nrf52833]: ROM size increased by 11712[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug[nrf54l15dk/nrf54l05/cpuapp]: RAM size increased by 4572[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_4llpmconn[nrf52840dongle/nrf52840]: RAM size increased by 6408[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_4llpmconn[nrf52840dongle/nrf52840]: ROM size increased by 21312[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_mcuboot_smp[nrf52840dk/nrf52840]: RAM size increased by 4944[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_mcuboot_smp[nrf52840dk/nrf52840]: ROM size increased by 23716[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zrelease[nrf52kbd/nrf52832]: RAM size increased by 3504[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zrelease[nrf52kbd/nrf52832]: ROM size increased by 12560[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zrelease[nrf54l15dk/nrf54l15/cpuapp]: RAM size increased by 6836[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zrelease[nrf54l15dk/nrf54l15/cpuapp]: ROM size increased by 27588[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_fast_pair.gmouse[nrf52840gmouse/nrf52840]: RAM size increased by 5884[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_fast_pair.gmouse[nrf52840gmouse/nrf52840]: ROM size increased by 19416[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_keyboard.usb_next[nrf52840dk/nrf52840]: RAM size increased by 5984[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_keyboard.usb_next[nrf52840dk/nrf52840]: ROM size increased by 23940[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_nrf21540ek[nrf52840dk/nrf52840]: RAM size increased by 5968[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_nrf21540ek[nrf52840dk/nrf52840]: ROM size increased by 23104[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug.uart.kmu_provision[nrf54l15dk/nrf54l15/cpuapp]: RAM size increased by 6836[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug.uart.kmu_provision[nrf54l15dk/nrf54l15/cpuapp]: ROM size increased by 30804[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug[nrf52kbd/nrf52832]: RAM size increased by 3484[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug[nrf52kbd/nrf52832]: ROM size increased by 13620[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zrelease[nrf52840gmouse/nrf52840]: RAM size increased by 5888[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zrelease[nrf52840gmouse/nrf52840]: ROM size increased by 22032[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
sample.matter.template.release[nrf52840dk/nrf52840]: ROM size increased by 1744[B] in comparison to the main[a3b7e57] branch. - link (cc: @kkasperczyk-no @ArekBalysNordic @markaj-nordic)
sample.matter.template.release[nrf7002dk/nrf5340/cpuapp]: ROM size increased by 24584[B] in comparison to the main[a3b7e57] branch. - link (cc: @kkasperczyk-no @ArekBalysNordic @markaj-nordic)
applications.nrf_desktop.zdebug.uart.kmu_provision[nrf54l15dk/nrf54l10/cpuapp]: RAM size increased by 6836[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug.uart.kmu_provision[nrf54l15dk/nrf54l10/cpuapp]: ROM size increased by 30804[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug[nrf52840dongle/nrf52840]: RAM size increased by 6520[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug[nrf52840dongle/nrf52840]: ROM size increased by 21300[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_keyboard[nrf52840dk/nrf52840]: RAM size increased by 5968[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_keyboard[nrf52840dk/nrf52840]: ROM size increased by 23300[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zrelease.usb_next[nrf52840dk/nrf52840]: RAM size increased by 5988[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zrelease.usb_next[nrf52840dk/nrf52840]: ROM size increased by 22416[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
sample.matter.template.debug[nrf7002dk/nrf5340/cpuapp]: ROM size increased by 22972[B] in comparison to the main[a3b7e57] branch. - link (cc: @kkasperczyk-no @ArekBalysNordic @markaj-nordic)
applications.nrf_desktop.zdebug[nrf52833dongle/nrf52833]: RAM size increased by 4540[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug[nrf52833dongle/nrf52833]: ROM size increased by 11712[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug[nrf52840dk/nrf52840]: RAM size increased by 5968[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug[nrf52840dk/nrf52840]: ROM size increased by 23104[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_dongle.usb_next[nrf52840dk/nrf52840]: RAM size increased by 6536[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_dongle.usb_next[nrf52840dk/nrf52840]: ROM size increased by 21996[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_dongle[nrf52840dk/nrf52840]: RAM size increased by 6520[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_dongle[nrf52840dk/nrf52840]: ROM size increased by 21296[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_nrf21540ek_multicore[nrf5340dk/nrf5340/cpuapp]: RAM size increased by 6052[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_nrf21540ek_multicore[nrf5340dk/nrf5340/cpuapp]: ROM size increased by 23104[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebugwithshell[nrf52840dk/nrf52840]: RAM size increased by 5968[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebugwithshell[nrf52840dk/nrf52840]: ROM size increased by 27992[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zrelease[nrf5340dk/nrf5340/cpuapp]: RAM size increased by 6100[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zrelease[nrf5340dk/nrf5340/cpuapp]: ROM size increased by 23432[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug.usb_next[nrf52840dk/nrf52840]: RAM size increased by 5984[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug.usb_next[nrf52840dk/nrf52840]: ROM size increased by 23804[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug.usb_next[nrf52840dongle/nrf52840]: RAM size increased by 6536[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug.usb_next[nrf52840dongle/nrf52840]: ROM size increased by 22000[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug.usb_next[nrf52840gmouse/nrf52840]: RAM size increased by 5900[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug.usb_next[nrf52840gmouse/nrf52840]: ROM size increased by 23792[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug[nrf52dmouse/nrf52832]: RAM size increased by 3988[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug[nrf52dmouse/nrf52832]: ROM size increased by 13920[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_mcuboot_qspi[nrf52840dk/nrf52840]: RAM size increased by 5968[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zdebug_mcuboot_qspi[nrf52840dk/nrf52840]: ROM size increased by 23264[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zrelease_fast_pair.keyboard[nrf52kbd/nrf52832]: RAM size increased by 2912[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)
applications.nrf_desktop.zrelease_fast_pair.keyboard[nrf52kbd/nrf52832]: ROM size increased by 8516[B] in comparison to the main[a3b7e57] branch. - link (cc: @MarekPieta)

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

@NordicBuilder
Copy link
Contributor

NordicBuilder commented Feb 7, 2025

CI Information

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

Inputs:

Sources:

sidewalk: PR head: 8d39cc8eaaa3a58005259a4d6b02dbcec8755adb
trusted-firmware-m: PR head: fa020a8b001843bb5a115bc4692eaf6787e3d1de
sdk-nrf: PR head: 4fc806ba7ec4c7235a0d524d047a96c453e7cc59
mcuboot: PR head: 3897a7b0f645f3c79829bd6840fc3502ea1bdacb
nrfxlib: PR head: 070c02314dd5a4d44b3569330c21ba9239cd32f3
find-my: PR head: d147638c5fc9d07906134e87fa18e397376d3c04
mbedtls: PR head: 4952e1328529ee549d412b498ea71c54f30aa3b1
zcbor: PR head: 9b07780aca6fb21f82a241ba386ad9b379809337
hostap: PR head: 8a6e3cd73e10d93b66e380d82565c5fb24f5d044
zephyr: PR head: b8dc0f6b2f75a6a6e07984885e105571d6c4d043

more details

sidewalk:

PR head: 8d39cc8eaaa3a58005259a4d6b02dbcec8755adb
merge base: f274ce8ab97d1504de4c6b372bb98d4dc41bacc5
target head (main): 458b434027056acc84e0fe9d6781ee580edb4c4b
Diff

trusted-firmware-m:

PR head: fa020a8b001843bb5a115bc4692eaf6787e3d1de
merge base: a11cd27905aecc4416cfc85552bfc3b997375056
Diff

sdk-nrf:

PR head: 4fc806ba7ec4c7235a0d524d047a96c453e7cc59
merge base: 782aa0d7a4b16d288feb3c1972417a1d8b37425f
target head (main): 61b8072c1b78777887ec73e640dc694d53b9eab1
Diff

mcuboot:

PR head: 3897a7b0f645f3c79829bd6840fc3502ea1bdacb
merge base: 3a25855215a2cfc64c3f0e2dba3ada3f11df7816
target head (main): 3a25855215a2cfc64c3f0e2dba3ada3f11df7816
Diff

nrfxlib:

PR head: 070c02314dd5a4d44b3569330c21ba9239cd32f3
merge base: 1cdbd26200df91ae3500daf6f5e15fae686ffdf8
target head (main): 06a7a5d557f6c5d17b7d2e5ce3427d53efbb1c0d
Diff

find-my:

PR head: d147638c5fc9d07906134e87fa18e397376d3c04
merge base: 719d36b15db3f228b0d83c52f13b97145d971ea4
target head (main): 733daa3d3a31cf98e0378551bd454a0c566deae6
Diff

mbedtls:

PR head: 4952e1328529ee549d412b498ea71c54f30aa3b1
merge base: fb36f3fe20f9f62e67b1a20c0cfe0a6788ec2bf6
Diff

zcbor:

PR head: 9b07780aca6fb21f82a241ba386ad9b379809337
merge base: 47f34dd7f5284e8750b5a715dee7f77c6c5bdc3f
Diff

hostap:

PR head: 8a6e3cd73e10d93b66e380d82565c5fb24f5d044
merge base: 44285310338f423021cc7df2c1056256882a00cc
target head (main): 4957416a01c86579aebb333b43f1c23da0375835
Diff

zephyr:

PR head: b8dc0f6b2f75a6a6e07984885e105571d6c4d043
merge base: 693769a5c7354efce42af62b6c7f68f77c6678b7
target head (main): 693769a5c7354efce42af62b6c7f68f77c6678b7
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 (12820)
.checkpatch.conf
zephyr
│  ├── drivers
│  │  ├── wifi
│  │  │  ├── esp32
│  │  │  │  ├── Kconfig.esp32
│  │  │  │  ├── src
│  │  │  │  │  │ esp_wifi_drv.c
│  │  │  ├── esp_at
│  │  │  │  ├── esp.c
│  │  │  │  │ esp_offload.c
│  │  │  ├── eswifi
│  │  │  │  ├── Kconfig.eswifi
│  │  │  │  ├── eswifi_core.c
│  │  │  │  │ eswifi_socket_offload.c
│  │  │  ├── infineon
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig.airoc
│  │  │  │  ├── airoc_whd_hal.c
│  │  │  │  ├── airoc_whd_hal_common.c
│  │  │  │  ├── airoc_whd_hal_common.h
│  │  │  │  ├── airoc_whd_hal_sdio.c
│  │  │  │  ├── airoc_whd_hal_spi.c
│  │  │  │  ├── airoc_wifi.c
│  │  │  │  ├── airoc_wifi.h
│  │  │  │  │ cybsp.h
│  │  │  ├── nrf_wifi
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig.nrfwifi
│  │  │  │  ├── inc
│  │  │  │  │  │ fmac_main.h
│  │  │  │  ├── src
│  │  │  │  │  ├── wifi_mgmt.c
│  │  │  │  │  │ wpa_supp_if.c
│  │  │  ├── nxp
│  │  │  │  ├── Kconfig.nxp
│  │  │  │  │ nxp_wifi_drv.c
│  │  │  ├── winc1500
│  │  │  │  ├── wifi_winc1500.c
│  │  │  │  │ wifi_winc1500_nm_bsp.c
│  ├── modules
│  │  ├── hal_silabs
│  │  │  ├── CMakeLists.txt
│  │  │  ├── Kconfig
│  │  │  ├── gecko
│  │  │  │  │ CMakeLists.txt
│  │  │  ├── si32
│  │  │  │  │ CMakeLists.txt
│  │  │  ├── simplicity_sdk
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── config
│  │  │  │  │  ├── sl_clock_manager_oscillator_config.h
│  │  │  │  │  ├── sl_clock_manager_tree_config.h
│  │  │  │  │  │ sl_device_init_dcdc_config.h
│  │  │  │  ├── src
│  │  │  │  │  ├── blob_stubs.c
│  │  │  │  │  │ sl_memory_manager_shim.c
│  │  ├── hal_st
│  │  │  │ Kconfig
│  │  ├── hal_tdk
│  │  │  │ Kconfig
│  │  ├── hal_wch
│  │  │  ├── CMakeLists.txt
│  │  │  ├── Kconfig
│  │  │  ├── ch32fun.h
│  │  │  │ funconfig.h
│  │  ├── hostap
│  │  │  ├── CMakeLists.txt
│  │  │  ├── Kconfig
│  │  │  ├── src
│  │  │  │  ├── supp_api.c
│  │  │  │  ├── supp_api.h
│  │  │  │  ├── supp_events.c
│  │  │  │  │ supp_main.c
│  │  ├── liblc3
│  │  │  ├── CMakeLists.txt
│  │  │  │ Kconfig
│  │  ├── littlefs
│  │  │  │ zephyr_lfs_config.h
│  │  ├── lvgl
│  │  │  ├── CMakeLists.txt
│  │  │  ├── Kconfig
│  │  │  ├── Kconfig.memory
│  │  │  ├── include
│  │  │  │  ├── lv_conf.h
│  │  │  │  ├── lvgl_common_input.h
│  │  │  │  ├── lvgl_display.h
│  │  │  │  ├── lvgl_mem.h
│  │  │  │  ├── lvgl_support.h
│  │  │  │  ├── lvgl_zephyr.h
│  │  │  │  │ lvgl_zephyr_osal.h
│  │  │  ├── input
│  │  │  │  ├── lvgl_button_input.c
│  │  │  │  ├── lvgl_common_input.c
│  │  │  │  ├── lvgl_encoder_input.c
│  │  │  │  ├── lvgl_keypad_input.c
│  │  │  │  │ lvgl_pointer_input.c
│  │  │  ├── lvgl.c
│  │  │  ├── lvgl_display.c
│  │  │  ├── lvgl_display_16bit.c
│  │  │  ├── lvgl_display_24bit.c
│  │  │  ├── lvgl_display_32bit.c
│  │  │  ├── lvgl_display_mono.c
│  │  │  ├── lvgl_fs.c
│  │  │  ├── lvgl_mem.c
│  │  │  ├── lvgl_shell.c
│  │  │  │ lvgl_zephyr_osal.c
│  │  ├── lz4
│  │  │  ├── CMakeLists.txt
│  │  │  │ Kconfig
│  │  ├── mbedtls
│  │  │  ├── CMakeLists.txt
│  │  │  ├── Kconfig
│  │  │  ├── Kconfig.psa
│  │  │  ├── Kconfig.psa.auto
│  │  │  ├── Kconfig.psa.logic
│  │  │  ├── Kconfig.tls-generic
│  │  │  ├── configs
│  │  │  │  │ config-tls-generic.h
│  │  │  │ create_psa_files.py
│  │  ├── nrf_wifi
│  │  │  ├── os
│  │  │  │  │ CMakeLists.txt
│  │  ├── openthread
│  │  │  ├── CMakeLists.txt
│  │  │  ├── Kconfig.features
│  │  │  ├── Kconfig.thread
│  │  │  ├── platform
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── alarm.c
│  │  │  │  ├── ble.c
│  │  │  │  ├── hdlc_interface.cpp
│  │  │  │  ├── hdlc_interface.hpp
│  │  │  │  ├── openthread-core-zephyr-config.h
│  │  │  │  ├── radio.c
│  │  │  │  │ radio_spinel.cpp
│  │  ├── segger
│  │  │  ├── Kconfig
│  │  │  │ SEGGER_RTT_zephyr.c
│  │  ├── thrift
│  │  │  ├── CMakeLists.txt
│  │  │  ├── cmake
│  │  │  │  │ thrift.cmake
│  │  ├── trusted-firmware-m
│  │  │  ├── CMakeLists.txt
│  │  │  ├── Kconfig.tfm
│  │  │  ├── interface
│  │  │  │  │ interface.c
│  │  ├── zcbor
│  │  │  │ Kconfig
│  ├── soc
│  │  ├── espressif
│  │  │  ├── esp32c3
│  │  │  │  ├── Kconfig.soc
│  │  │  │  ├── default.ld
│  │  │  │  ├── hw_init.c
│  │  │  │  ├── mcuboot.ld
│  │  │  │  │ memory.h
│  │  │  ├── esp32c6
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig
│  │  │  │  ├── default.ld
│  │  │  │  ├── hw_init.c
│  │  │  │  ├── mcuboot.ld
│  │  │  │  ├── memory.h
│  │  │  │  │ pinctrl_soc.h
│  │  │  ├── esp32s2
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── default.ld
│  │  │  │  ├── hw_init.c
│  │  │  │  ├── mcuboot.ld
│  │  │  │  ├── memory.h
│  │  │  │  │ soc_cache.c
│  │  │  ├── esp32s3
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── default.ld
│  │  │  │  ├── default_appcpu.ld
│  │  │  │  ├── esp32s3-mp.c
│  │  │  │  ├── hw_init.c
│  │  │  │  ├── mcuboot.ld
│  │  │  │  ├── memory.h
│  │  │  │  ├── soc.c
│  │  │  │  ├── soc.h
│  │  │  │  ├── soc_appcpu.c
│  │  │  │  │ soc_cache.c
│  │  ├── gaisler
│  │  │  ├── gr716a
│  │  │  │  │ Kconfig.defconfig
│  │  ├── gd
│  │  │  ├── gd32
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── gd32a50x
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── Kconfig.defconfig.series
│  │  │  │  │  │ soc.c
│  │  │  │  ├── gd32e10x
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── Kconfig.defconfig.series
│  │  │  │  │  │ soc.c
│  │  │  │  ├── gd32e50x
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── Kconfig.defconfig.series
│  │  │  │  │  │ soc.c
│  │  │  │  ├── gd32f3x0
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── Kconfig.defconfig.series
│  │  │  │  │  │ soc.c
│  │  │  │  ├── gd32f403
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  │ soc.c
│  │  │  │  ├── gd32f4xx
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── Kconfig.defconfig.series
│  │  │  │  │  │ soc.c
│  │  │  │  ├── gd32l23x
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── Kconfig.defconfig.series
│  │  │  │  │  │ soc.c
│  │  │  │  ├── gd32vf103
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── Kconfig.defconfig.gd32vf103
│  │  │  │  │  │ soc.c
│  │  ├── infineon
│  │  │  ├── cat1a
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.soc
│  │  │  │  ├── common
│  │  │  │  │  ├── soc.c
│  │  │  │  │  │ soc.h
│  │  │  │  ├── psoc6_01
│  │  │  │  │  ├── Kconfig.defconfig
│  │  │  │  │  │ Kconfig.soc
│  │  │  │  ├── psoc6_02
│  │  │  │  │  ├── Kconfig.defconfig
│  │  │  │  │  │ Kconfig.soc
│  │  │  │  ├── psoc6_03
│  │  │  │  │  ├── Kconfig.defconfig
│  │  │  │  │  │ Kconfig.soc
│  │  │  │  ├── psoc6_04
│  │  │  │  │  ├── Kconfig.defconfig
│  │  │  │  │  │ Kconfig.soc
│  │  │  │  ├── psoc6_legacy
│  │  │  │  │  ├── Kconfig.defconfig
│  │  │  │  │  ├── Kconfig.soc
│  │  │  │  │  ├── cypress_psoc6_dt.h
│  │  │  │  │  │ soc.c
│  │  │  ├── cat1b
│  │  │  │  ├── cyw20829
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── Kconfig.defconfig
│  │  │  │  │  ├── linker.ld
│  │  │  │  │  ├── power.c
│  │  │  │  │  │ soc.c
│  │  │  ├── cat3
│  │  │  │  │ Kconfig.defconfig
│  │  ├── intel
│  │  │  ├── intel_adsp
│  │  │  │  ├── ace
│  │  │  │  │  ├── ace-link.ld
│  │  │  │  │  ├── asm_memory_management.h
│  │  │  │  │  ├── include
│  │  │  │  │  │  ├── ace30
│  │  │  │  │  │  │  ├── adsp_boot.h
│  │  │  │  │  │  │  ├── adsp_interrupt.h
│  │  │  │  │  │  │  ├── adsp_ipc_regs.h
│  │  │  │  │  │  │  ├── adsp_power.h
│  │  │  │  │  │  │  ├── adsp_shim.h
│  │  │  │  │  │  │  │ dmic_regs_ace3x.h
│  │  │  │  │  │  │ adsp_memory.h
│  │  │  │  │  ├── mmu_ace30.c
│  │  │  │  │  ├── power.c
│  │  │  │  │  │ power_down.S
│  │  │  │  ├── common
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── boot.c
│  │  │  │  │  │ rimage_modules.c
│  │  │  │  ├── tools
│  │  │  │  │  ├── acetool.py
│  │  │  │  │  │ cavstool.py
│  │  │  ├── intel_ish
│  │  │  │  ├── Kconfig
│  │  │  │  ├── intel_ish5
│  │  │  │  │  ├── pm
│  │  │  │  │  │  │ power.c
│  │  │  │  │  │ soc.c
│  │  │  ├── intel_niosv
│  │  │  │  ├── niosv
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  │ Kconfig.defconfig.series
│  │  │  ├── intel_socfpga
│  │  │  │  ├── agilex
│  │  │  │  │  │ Kconfig.defconfig.agilex
│  │  │  │  ├── agilex5
│  │  │  │  │  ├── Kconfig.defconfig.agilex5
│  │  │  │  │  │ mmu_regions.c
│  │  │  ├── intel_socfpga_std
│  │  │  │  ├── cyclonev
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── Kconfig.defconfig.cyclonev
│  │  │  │  │  │ soc.c
│  │  ├── ite
│  │  │  ├── ec
│  │  │  │  ├── common
│  │  │  │  │  │ chip_chipregs.h
│  │  │  │  ├── it8xxx2
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── Kconfig.defconfig.series
│  │  │  │  │  │ soc.c
│  │  ├── lowrisc
│  │  │  ├── opentitan
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  │ soc.c
│  │  ├── mediatek
│  │  │  ├── mt8xxx
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── Kconfig.soc
│  │  │  │  ├── cpuclk.c
│  │  │  │  ├── gen_img.py
│  │  │  │  ├── irq.c
│  │  │  │  ├── linker.ld
│  │  │  │  ├── mbox.c
│  │  │  │  ├── mt8186
│  │  │  │  │  ├── Kconfig.defconfig
│  │  │  │  │  ├── linker.ld
│  │  │  │  │  │ soc.h
│  │  │  │  ├── mt8188
│  │  │  │  │  ├── Kconfig.defconfig
│  │  │  │  │  ├── linker.ld
│  │  │  │  │  │ soc.h
│  │  │  │  ├── mt8195
│  │  │  │  │  ├── Kconfig.defconfig
│  │  │  │  │  ├── linker.ld
│  │  │  │  │  │ soc.h
│  │  │  │  ├── mt8196
│  │  │  │  │  ├── Kconfig.defconfig
│  │  │  │  │  ├── linker.ld
│  │  │  │  │  │ soc.h
│  │  │  │  ├── mtk_adsp_load.py
│  │  │  │  ├── soc.c
│  │  │  │  ├── soc.h
│  │  │  │  │ soc.yml
│  │  │  ├── mtk_adsp
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── Kconfig.soc
│  │  │  │  ├── gen_img.py
│  │  │  │  ├── mbox.c
│  │  │  │  ├── mt8195_adsp
│  │  │  │  │  ├── Kconfig.defconfig
│  │  │  │  │  ├── linker.ld
│  │  │  │  │  │ soc.h
│  │  │  │  ├── mtk_adsp_load.py
│  │  │  │  ├── soc.c
│  │  │  │  ├── soc.h
│  │  │  │  │ soc.yml
│  │  ├── microchip
│  │  │  ├── mec
│  │  │  │  ├── common
│  │  │  │  │  ├── pinctrl_soc.h
│  │  │  │  │  ├── reg
│  │  │  │  │  │  │ mec_adc.h
│  │  │  │  ├── mec15xx
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  │ soc.c
│  │  │  │  ├── mec172x
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  │ soc.c
│  │  │  │  ├── mec174x
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── Kconfig.defconfig.mec1743qlj
│  │  │  │  │  ├── Kconfig.defconfig.mec1743qsz
│  │  │  │  │  ├── Kconfig.defconfig.series
│  │  │  │  │  │ soc.c
│  │  │  │  ├── mec175x
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── Kconfig.defconfig.mec1753qlj
│  │  │  │  │  ├── Kconfig.defconfig.mec1753qsz
│  │  │  │  │  ├── Kconfig.defconfig.series
│  │  │  │  │  │ soc.c
│  │  │  │  ├── mech172x
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── Kconfig.defconfig.mech1723nlj
│  │  │  │  │  ├── Kconfig.defconfig.mech1723nsz
│  │  │  │  │  ├── Kconfig.defconfig.series
│  │  │  │  │  │ soc.c
│  │  │  ├── miv
│  │  │  │  ├── miv
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  │ Kconfig.defconfig
│  │  │  │  ├── polarfire
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  │ Kconfig.defconfig
│  │  ├── neorv32
│  │  │  ├── Kconfig
│  │  │  │ Kconfig.defconfig
│  │  ├── nordic
│  │  │  ├── CMakeLists.txt
│  │  │  ├── Kconfig
│  │  │  ├── common
│  │  │  │  ├── Kconfig
│  │  │  │  ├── poweroff.c
│  │  │  │  ├── soc_secure.h
│  │  │  │  ├── vpr
│  │  │  │  │  │ Kconfig
│  │  │  ├── nrf52
│  │  │  │  ├── Kconfig.defconfig.nrf52820_QDAA
│  │  │  │  ├── Kconfig.defconfig.nrf52833_QDAA
│  │  │  │  │ Kconfig.defconfig.nrf52833_QIAA
│  │  │  ├── nrf53
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.sync_rtc
│  │  │  │  │ soc.c
│  │  │  ├── nrf54h
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.defconfig.nrf54h20_cpuapp
│  │  │  │  ├── Kconfig.defconfig.nrf54h20_cpurad
│  │  │  │  ├── bicr
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── bicr-schema.json
│  │  │  │  │  │ bicrgen.py
│  │  │  │  ├── gpd
│  │  │  │  │  │ gpd.c
│  │  │  ├── nrf54l
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.defconfig.nrf54l09_enga_cpuapp
│  │  │  │  │ Kconfig.soc
│  │  │  ├── nrf92
│  │  │  │  │ Kconfig
│  │  │  ├── soc.yml
│  │  │  │ validate_base_addresses.c
│  │  ├── nuvoton
│  │  │  ├── npcm
│  │  │  │  ├── npcm4
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  │ soc.c
│  │  │  ├── npcx
│  │  │  │  ├── common
│  │  │  │  │  ├── reg
│  │  │  │  │  │  │ reg_def.h
│  │  │  │  │  ├── registers.c
│  │  │  │  │  ├── scfg.c
│  │  │  │  │  ├── soc_espi_taf.h
│  │  │  │  │  │ soc_pins.h
│  │  │  │  ├── npcx4
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  │ soc.c
│  │  │  │  ├── npcx7
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  │ soc.c
│  │  │  │  ├── npcx9
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  │ soc.c
│  │  │  ├── numaker
│  │  │  │  ├── m2l31x
│  │  │  │  │  │ soc.c
│  │  ├── nxp
│  │  │  ├── common
│  │  │  │  ├── Kconfig.nbu
│  │  │  │  │ nxp_nbu.c
│  │  │  ├── imx
│  │  │  │  ├── imx6sx
│  │  │  │  │  │ Kconfig.defconfig
│  │  │  │  ├── imx7d
│  │  │  │  │  │ Kconfig.defconfig
│  │  │  │  ├── imx8
│  │  │  │  │  ├── adsp
│  │  │  │  │  │  │ linker.ld
│  │  │  │  ├── imx8m
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── Kconfig.defconfig.mimx8ml8_a53
│  │  │  │  │  ├── Kconfig.defconfig.mimx8ml8_m7
│  │  │  │  │  ├── Kconfig.defconfig.mimx8mm6_a53
│  │  │  │  │  ├── Kconfig.defconfig.mimx8mm6_m4
│  │  │  │  │  ├── Kconfig.defconfig.mimx8mn6_a53
│  │  │  │  │  ├── Kconfig.defconfig.mimx8mq6_m4
│  │  │  │  │  ├── adsp
│  │  │  │  │  │  │ linker.ld
│  │  │  │  │  ├── m4_mini
│  │  │  │  │  │  │ soc.c
│  │  │  │  ├── imx8ulp
│  │  │  │  │  ├── adsp
│  │  │  │  │  │  │ linker.ld
│  │  │  │  ├── imx8x
│  │  │  │  │  ├── adsp
│  │  │  │  │  │  │ linker.ld
│  │  │  │  ├── imx9
│  │  │  │  │  ├── imx93
│  │  │  │  │  │  ├── Kconfig.defconfig.mimx93.a55
│  │  │  │  │  │  ├── Kconfig.defconfig.mimx93.m33
│  │  │  │  │  │  ├── a55
│  │  │  │  │  │  │  │ mmu_regions.c
│  │  │  │  │  ├── imx95
│  │  │  │  │  │  ├── Kconfig
│  │  │  │  │  │  ├── Kconfig.defconfig.mimx95.a55
│  │  │  │  │  │  ├── Kconfig.defconfig.mimx95.m7
│  │  │  │  │  │  ├── a55
│  │  │  │  │  │  │  │ mmu_regions.c
│  │  │  │  │  │  ├── m7
│  │  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  │  │ soc.c
│  │  │  │  │ soc.yml
│  │  │  ├── imxrt
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  ├── imxrt118x
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── flexspi.c
│  │  │  │  │  ├── m33
│  │  │  │  │  │  ├── dtcm.ld
│  │  │  │  │  │  │ mpu_regions.c
│  │  │  │  │  ├── pinctrl_soc.h
│  │  │  │  │  ├── soc.c
│  │  │  │  │  │ soc.h
│  │  │  │  ├── imxrt11xx
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── pinctrl_soc.h
│  │  │  │  │  ├── soc.c
│  │  │  │  │  ├── soc.h
│  │  │  │  │  │ sysbuild.cmake
│  │  │  │  ├── imxrt5xx
│  │  │  │  │  ├── Kconfig.defconfig
│  │  │  │  │  ├── cm33
│  │  │  │  │  │  │ soc.c
│  │  │  │  │  ├── f1
│  │  │  │  │  │  │ linker.ld
│  │  │  │  ├── imxrt6xx
│  │  │  │  │  ├── Kconfig.defconfig
│  │  │  │  │  ├── cm33
│  │  │  │  │  │  │ soc.c
│  │  │  │  │ sysbuild.cmake
│  │  │  ├── kinetis
│  │  │  │  ├── common
│  │  │  │  │  │ pinctrl_soc.h
│  │  │  │  ├── k2x
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  │ Kconfig.defconfig
│  │  │  │  ├── k6x
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  │ Kconfig.defconfig
│  │  │  │  ├── k8x
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  │ Kconfig.defconfig
│  │  │  │  ├── ke1xf
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  │ Kconfig.defconfig
│  │  │  │  ├── ke1xz
│  │  │  │  │  │ Kconfig.defconfig
│  │  │  │  ├── kl2x
│  │  │  │  │  │ Kconfig.defconfig
│  │  │  │  ├── kv5x
│  │  │  │  │  │ Kconfig.defconfig
│  │  │  │  ├── kwx
│  │  │  │  │  │ Kconfig.defconfig
│  ├── tests
│  │  ├── subsys
│  │  │  ├── llext
│  │  │  │  ├── boards
│  │  │  │  │  ├── qemu_arc_qemu_arc_em.conf
│  │  │  │  │  ├── qemu_arc_qemu_arc_em.overlay
│  │  │  │  │  ├── qemu_cortex_a9.conf
│  │  │  │  │  ├── qemu_cortex_a9.overlay
│  │  │  │  │  ├── qemu_cortex_r5.conf
│  │  │  │  │  │ qemu_cortex_r5.overlay
│  │  │  │  ├── no_mem_protection.conf
│  │  │  │  ├── prj.conf
│  │  │  │  ├── simple
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  ├── test_llext_simple.c
│  │  │  │  │  │  │ threads_kernel_objects_ext.c
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── src
│  │  │  │  │  ├── detached_fn_ext.c
│  │  │  │  │  ├── 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
│  │  │  │  │  ├── multi_file_ext2.c
│  │  │  │  │  ├── object_ext.c
│  │  │  │  │  ├── pre_located_ext.c
│  │  │  │  │  ├── relative_jump_ext.c
│  │  │  │  │  ├── syscalls_ext.c
│  │  │  │  │  ├── syscalls_ext.h
│  │  │  │  │  ├── test_llext.c
│  │  │  │  │  ├── threads_kernel_objects_ext.c
│  │  │  │  │  │ threads_kernel_objects_ext.h
│  │  │  │  │ testcase.yaml
│  │  │  ├── logging
│  │  │  │  ├── dictionary
│  │  │  │  │  ├── pytest
│  │  │  │  │  │  ├── conftest.py
│  │  │  │  │  │  │ test_logging_dictionary.py
│  │  │  │  ├── log_api
│  │  │  │  │  ├── src
│  │  │  │  │  │  ├── mock_backend.c
│  │  │  │  │  │  │ mock_frontend.c
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── log_backend_fs
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ cyw920829m2evk_02.overlay
│  │  │  │  ├── log_backend_uart
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── log_benchmark
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ test_helpers.c
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── log_frontend_stmesp_demux
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── log_output
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ log_output_test.c
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── log_output_net
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ log_output_test.c
│  │  │  │  │  │ testcase.yaml
│  │  │  ├── lorawan
│  │  │  │  ├── channels_mask
│  │  │  │  │  │ prj.conf
│  │  │  │  ├── clock_sync
│  │  │  │  │  │ prj.conf
│  │  │  │  ├── frag_decoder
│  │  │  │  │  │ prj.conf
│  │  │  ├── mem_mgmt
│  │  │  │  ├── mem_attr
│  │  │  │  │  │ testcase.yaml
│  │  │  ├── mgmt
│  │  │  │  ├── ec_host_cmd
│  │  │  │  │  ├── simulator
│  │  │  │  │  │  │ testcase.yaml
│  │  │  │  │  ├── uart
│  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │ uart_mock.c
│  │  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── mcumgr
│  │  │  │  │  ├── cb_notifications
│  │  │  │  │  │  │ testcase.yaml
│  │  │  │  │  ├── handler_demo
│  │  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │  ├── img_mgmt_slot_info
│  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  ├── nrf52840dk_nrf52840_dual_slot.overlay
│  │  │  │  │  │  │  │ nrf5340dk_nrf5340_cpuapp_dual_slot.overlay
│  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  ├── prj_dual_slot.conf
│  │  │  │  │  │  ├── prj_too_large.conf
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  ├── smp_test_util.c
│  │  │  │  │  │  │  │ smp_test_util.h
│  │  │  │  │  │  ├── sysbuild_too_large.conf
│  │  │  │  │  │  │ testcase.yaml
│  │  │  │  │  ├── mcumgr_client
│  │  │  │  │  │  │ testcase.yaml
│  │  │  │  │  ├── os_mgmt_datetime
│  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  │ native_sim.overlay
│  │  │  │  │  │  │ testcase.yaml
│  │  │  │  │  ├── os_mgmt_info
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │ main.c
│  │  │  │  │  ├── settings_mgmt
│  │  │  │  │  │  │ testcase.yaml
│  │  │  │  │  ├── smp_client
│  │  │  │  │  │  │ testcase.yaml
│  │  │  │  │  ├── smp_reassembly
│  │  │  │  │  │  │ testcase.yaml
│  │  │  │  │  ├── transport_lorawan
│  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  ├── lorawan_all.conf
│  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │ main.c
│  │  │  │  │  │  │ testcase.yaml
│  │  │  │  │  ├── zcbor_bulk
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │ main.c
│  │  │  │  │  │  │ testcase.yaml
│  │  │  ├── modbus
│  │  │  │  ├── boards
│  │  │  │  │  │ arduino_opta_stm32h747xx_m7.overlay
│  │  │  │  ├── src
│  │  │  │  │  ├── test_modbus_client.c
│  │  │  │  │  │ test_modbus_server.c
│  │  │  ├── modem
│  │  │  │  ├── backends
│  │  │  │  │  ├── tty
│  │  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── modem_chat
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── modem_cmux
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── modem_ppp
│  │  │  │  │  │ testcase.yaml
│  │  │  ├── openthread
│  │  │  │  │ radio_stub.c
│  │  │  ├── pm
│  │  │  │  ├── device_driver_init
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── device_power_domains
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── policy_api
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── power_domain
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── power_mgmt
│  │  │  │  │  │ testcase.yaml
│  │  │  ├── portability
│  │  │  │  ├── cmsis_rtos_v1
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── cmsis_rtos_v2
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  │ testcase.yaml
│  │  │  ├── random
│  │  │  │  ├── rng
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  ├── rtio
│  │  │  │  ├── rtio_api
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── rtio_i2c
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.cpp
│  │  │  ├── sd
│  │  │  │  ├── sdio
│  │  │  │  │  │ testcase.yaml
│  │  │  ├── secure_storage
│  │  │  │  ├── psa
│  │  │  │  │  ├── crypto
│  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  ├── overlay-secure_storage.conf
│  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │ main.c
│  │  │  │  │  │  │ testcase.yaml
│  │  │  │  │  ├── its
│  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  ├── overlay-secure_storage.conf
│  │  │  │  │  │  ├── overlay-store_custom.conf
│  │  │  │  │  │  ├── overlay-store_default.conf
│  │  │  │  │  │  ├── overlay-tfm.conf
│  │  │  │  │  │  ├── overlay-transform_custom.conf
│  │  │  │  │  │  ├── overlay-transform_default.conf
│  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  ├── custom_store.c
│  │  │  │  │  │  │  ├── custom_transform.c
│  │  │  │  │  │  │  │ main.c
│  │  │  │  │  │  ├── testcase.yaml
│  │  │  │  │  │  │ zms.overlay
│  │  │  ├── settings
│  │  │  │  ├── file
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── functional
│  │  │  │  │  ├── fcb
│  │  │  │  │  │  │ testcase.yaml
│  │  │  │  │  ├── nvs
│  │  │  │  │  │  │ testcase.yaml
│  │  │  ├── settings_commit_prio
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── README.rst
│  │  │  │  ├── prj.conf
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  │  │ testcase.yaml
│  │  │  ├── shell
│  │  │  │  ├── shell
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── shell_flash
│  │  │  │  │  │ testcase.yaml
│  │  │  ├── sip_svc
│  │  │  │  │ testcase.yaml
│  │  │  ├── storage
│  │  │  │  ├── flash_map
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── overlay-mbedtls.conf
│  │  │  │  │  ├── overlay-psa.conf
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │ main_sha.c
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── stream
│  │  │  │  │  ├── stream_flash
│  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │ main.c
│  │  │  │  │  │  │ testcase.yaml
│  │  │  ├── testsuite
│  │  │  │  ├── fff_fake_contexts
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │ testcase.yaml
│  │  │  ├── usb
│  │  │  │  ├── os_desc
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── uac2
│  │  │  │  │  ├── app.overlay
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ uac2_desc.c
│  │  │  ├── zbus
│  │  │  │  ├── channel_id
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── dyn_channel
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── hlp_priority_boost
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── integration
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── publish_stats
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── unittests
│  │  │  │  │  │ testcase.yaml
│  │  │  │  ├── user_data
│  │  │  │  │  │ testcase.yaml
│  │  ├── unit
│  │  │  ├── crc
│  │  │  │  │ main.c
│  │  │  ├── pot
│  │  │  │  │ nhpot.cpp
│  │  │  ├── util
│  │  │  │  │ main.c
│  │  ├── ztest
│  │  │  ├── base
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  │ testcase.yaml
│  │  │  ├── error_hook
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── fail
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── core
│  │  │  │  │  │ CMakeLists.txt
│  │  │  │  │ testcase.yaml
│  │  │  ├── zexpect
│  │  │  │  │ CMakeLists.txt
│  │  │  ├── ztest_param
│  │  │  │  ├── prj.conf
│  │  │  │  │ testcase.yaml
│  ├── boards
│  │  ├── waveshare
│  │  │  ├── rp2040_zero
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  │  ├── rp2040_zero-pinctrl.dtsi
│  │  │  │  ├── rp2040_zero.dts
│  │  │  │  ├── rp2040_zero.yaml
│  │  │  │  │ rp2040_zero_defconfig
│  │  ├── wch
│  │  │  ├── ch32v003evt
│  │  │  │  ├── Kconfig.ch32v003evt
│  │  │  │  ├── board.cmake
│  │  │  │  ├── board.yml
│  │  │  │  ├── ch32v003evt-pinctrl.dtsi
│  │  │  │  ├── ch32v003evt.dts
│  │  │  │  ├── ch32v003evt.yaml
│  │  │  │  ├── ch32v003evt_defconfig
│  │  │  │  ├── doc
│  │  │  │  │  ├── img
│  │  │  │  │  │  │ ch32v003evt.webp
│  │  │  │  │  │ index.rst
│  │  │  │  ├── support
│  │  │  │  │  │ openocd.cfg
│  │  │  │ index.rst
│  │  ├── we
│  │  │  ├── ophelia1ev
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  ├── orthosie1ev
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  ├── Kconfig.we_orthosie1ev
│  │  │  │  ├── board.cmake
│  │  │  │  ├── board.yml
│  │  │  │  ├── doc
│  │  │  │  │  ├── img
│  │  │  │  │  │  │ we_orthosie1ev.webp
│  │  │  │  │  │ index.rst
│  │  │  │  ├── support
│  │  │  │  │  │ openocd.cfg
│  │  │  │  ├── we_orthosie1ev-pinctrl.dtsi
│  │  │  │  ├── we_orthosie1ev.dts
│  │  │  │  ├── we_orthosie1ev.yaml
│  │  │  │  │ we_orthosie1ev_defconfig
│  │  │  ├── proteus2ev
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  ├── proteus3ev
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  ├── weact
│  │  │  ├── blackpill_f401cc
│  │  │  │  ├── blackpill_f401cc.dts
│  │  │  │  ├── blackpill_f401cc.yaml
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  ├── blackpill_f401ce
│  │  │  │  ├── blackpill_f401ce.dts
│  │  │  │  ├── blackpill_f401ce.yaml
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  ├── blackpill_f411ce
│  │  │  │  ├── blackpill_f411ce.dts
│  │  │  │  ├── blackpill_f411ce.yaml
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  ├── mini_stm32h743
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── doc
│  │  │  │  │  ├── img
│  │  │  │  │  │  │ mini_stm32h743.webp
│  │  │  │  │  │ index.rst
│  │  │  │  ├── mini_stm32h743.dts
│  │  │  │  ├── mini_stm32h743.yaml
│  │  │  │  │ mini_stm32h743_defconfig
│  │  │  ├── mini_stm32h7b0
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── Kconfig.mini_stm32h7b0
│  │  │  │  ├── board.cmake
│  │  │  │  ├── board.yml
│  │  │  │  ├── doc
│  │  │  │  │  ├── img
│  │  │  │  │  │  │ mini_stm32h7b0.webp
│  │  │  │  │  │ index.rst
│  │  │  │  ├── mini_stm32h7b0.dts
│  │  │  │  ├── mini_stm32h7b0.yaml
│  │  │  │  │ mini_stm32h7b0_defconfig
│  │  │  ├── stm32f405_core
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  │  │ weact_stm32f405_core.yaml
│  │  │  ├── stm32g431_core
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  │  │ weact_stm32g431_core.dts
│  │  │  ├── usb2canfdv1
│  │  │  │  ├── Kconfig.usb2canfdv1
│  │  │  │  ├── board.cmake
│  │  │  │  ├── board.yml
│  │  │  │  ├── doc
│  │  │  │  │  ├── index.rst
│  │  │  │  │  │ usb2canfdv1.webp
│  │  │  │  ├── usb2canfdv1.dts
│  │  │  │  ├── usb2canfdv1.yaml
│  │  │  │  │ usb2canfdv1_defconfig
│  │  ├── wemos
│  │  │  ├── esp32s2_lolin_mini
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  │  ├── esp32s2_lolin_mini.dts
│  │  │  │  │ esp32s2_lolin_mini.yaml
│  │  ├── witte
│  │  │  ├── linum
│  │  │  │  ├── doc
│  │  │  │  │  │ index.rst
│  │  │  │  │ linum.dts
│  │  ├── wiznet
│  │  │  ├── w5500_evb_pico
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  ├── board.cmake
│  │  │  │  ├── w5500_evb_pico-pinctrl.dtsi
│  │  │  │  │ w5500_evb_pico.dts
│  │  ├── xen
│  │  │  ├── xenvm
│  │  │  │  ├── Kconfig.defconfig
│  │  │  │  │ xenvm_xenvm_gicv3_defconfig
│  ├── dts
│  │  ├── arm
│  │  │  ├── renesas
│  │  │  │  ├── ra
│  │  │  │  │  ├── ra6
│  │  │  │  │  │  ├── r7fa6m4ax.dtsi
│  │  │  │  │  │  ├── r7fa6m5bh3cfc.dtsi
│  │  │  │  │  │  ├── r7fa6m5xh.dtsi
│  │  │  │  │  │  ├── ra6-cm33-common.dtsi
│  │  │  │  │  │  ├── ra6-cm4-common.dtsi
│  │  │  │  │  │  ├── r7fa6e10f2cfp.dtsi
│  │  │  │  │  │  ├── r7fa6e10x.dtsi
│  │  │  │  │  │  ├── r7fa6e2bb3cfm.dtsi
│  │  │  │  │  │  ├── r7fa6e2bx.dtsi
│  │  │  │  │  │  ├── r7fa6m1ad3cfp.dtsi
│  │  │  │  │  │  ├── r7fa6m2af3cfb.dtsi
│  │  │  │  │  │  ├── r7fa6m2ax.dtsi
│  │  │  │  │  │  ├── r7fa6m3ah3cfc.dtsi
│  │  │  │  │  │  ├── r7fa6m3ax.dtsi
│  │  │  │  │  │  │ r7fa6m4af3cfb.dtsi
│  │  │  │  │  ├── ra8
│  │  │  │  │  │  ├── r7fa8d1bhecbd.dtsi
│  │  │  │  │  │  ├── r7fa8d1xh.dtsi
│  │  │  │  │  │  ├── r7fa8m1xh.dtsi
│  │  │  │  │  │  ├── r7fa8t1xh.dtsi
│  │  │  │  │  │  │ ra8x1.dtsi
│  │  │  │  │  ├── r7fa4m1ab3cfm.dtsi
│  │  │  │  │  ├── ra-cm4-common.dtsi
│  │  │  │  │  ├── ra2
│  │  │  │  │  │  ├── r7fa2a1xh.dtsi
│  │  │  │  │  │  │ ra2xx.dtsi
│  │  │  │  │  ├── ra4-cm4-common.dtsi
│  │  │  │  │  ├── ra4
│  │  │  │  │  │  ├── r7fa4e2b93cfm.dtsi
│  │  │  │  │  │  ├── r7fa4m2ad3cfp.dtsi
│  │  │  │  │  │  ├── r7fa4m2ax.dtsi
│  │  │  │  │  │  ├── r7fa4m3af3cfb.dtsi
│  │  │  │  │  │  ├── r7fa4m3ax.dtsi
│  │  │  │  │  │  ├── r7fa4w1ad2cng.dtsi
│  │  │  │  │  │  ├── ra4-cm33-common.dtsi
│  │  │  │  │  │  │ ra4-cm4-common.dtsi
│  │  │  │  ├── rz
│  │  │  │  │  ├── rzg
│  │  │  │  │  │  │ r9a08g045.dtsi
│  │  │  │  │  │ rzt2m.dtsi
│  │  │  │  ├── smartbond
│  │  │  │  │  │ da1469x.dtsi
│  │  │  ├── rpi_pico
│  │  │  │  │ rpi_pico_common.dtsi
│  │  │  ├── silabs
│  │  │  │  ├── efr32bg22.dtsi
│  │  │  │  ├── efr32bg27.dtsi
│  │  │  │  ├── efr32bg2x-pinctrl.dtsi
│  │  │  │  ├── efr32bg2x.dtsi
│  │  │  │  ├── efr32mg.dtsi
│  │  │  │  ├── efr32mg21.dtsi
│  │  │  │  ├── efr32mg24-pinctrl.dtsi
│  │  │  │  ├── efr32mg24.dtsi
│  │  │  │  ├── efr32mg24b020f1536im40.dtsi
│  │  │  │  ├── efr32mg24b210f1536im48.dtsi
│  │  │  │  ├── efr32mg24b220f1536im48.dtsi
│  │  │  │  ├── efr32mg24b310f1536im48.dtsi
│  │  │  │  ├── efr32xg13p.dtsi
│  │  │  │  ├── efr32xg23.dtsi
│  │  │  │  ├── efr32zg23b020f512im48.dtsi
│  │  │  │  │ sim3u.dtsi
│  │  │  ├── adi
│  │  │  │  ├── max32
│  │  │  │  │  ├── max32655.dtsi
│  │  │  │  │  ├── max32662-pinctrl.dtsi
│  │  │  │  │  ├── max32666.dtsi
│  │  │  │  │  ├── max32680.dtsi
│  │  │  │  │  ├── max32690.dtsi
│  │  │  │  │  ├── max32xxx.dtsi
│  │  │  │  │  ├── max78002-pinctrl.dtsi
│  │  │  │  │  │ max78002.dtsi
│  │  │  ├── st
│  │  │  │  ├── c0
│  │  │  │  │  ├── stm32c0.dtsi
│  │  │  │  │  ├── stm32c031.dtsi
│  │  │  │  │  ├── stm32c071.dtsi
│  │  │  │  │  ├── stm32c071X8.dtsi
│  │  │  │  │  │ stm32c071Xb.dtsi
│  │  │  │  ├── f0
│  │  │  │  │  ├── stm32f0.dtsi
│  │  │  │  │  ├── stm32f030.dtsi
│  │  │  │  │  ├── stm32f030X8.dtsi
│  │  │  │  │  ├── stm32f030Xc.dtsi
│  │  │  │  │  ├── stm32f031.dtsi
│  │  │  │  │  ├── stm32f042.dtsi
│  │  │  │  │  ├── stm32f051.dtsi
│  │  │  │  │  ├── stm32f070.dtsi
│  │  │  │  │  ├── stm32f070Xb.dtsi
│  │  │  │  │  ├── stm32f071.dtsi
│  │  │  │  │  ├── stm32f072.dtsi
│  │  │  │  │  │ stm32f091.dtsi
│  │  │  │  ├── f1
│  │  │  │  │  ├── stm32f1.dtsi
│  │  │  │  │  ├── stm32f100Xb.dtsi
│  │  │  │  │  ├── stm32f100Xe.dtsi
│  │  │  │  │  ├── stm32f103X8.dtsi
│  │  │  │  │  ├── stm32f103Xc.dtsi
│  │  │  │  │  ├── stm32f103Xg.dtsi
│  │  │  │  │  ├── stm32f105.dtsi
│  │  │  │  │  │ stm32f107.dtsi
│  │  │  │  ├── f2
│  │  │  │  │  ├── stm32f2.dtsi
│  │  │  │  │  │ stm32f207.dtsi
│  │  │  │  ├── f3
│  │  │  │  │  ├── stm32f3.dtsi
│  │  │  │  │  ├── stm32f302.dtsi
│  │  │  │  │  ├── stm32f302Xc.dtsi
│  │  │  │  │  ├── stm32f303.dtsi
│  │  │  │  │  ├── stm32f303X8.dtsi
│  │  │  │  │  ├── stm32f303Xb.dtsi
│  │  │  │  │  ├── stm32f303Xe.dtsi
│  │  │  │  │  ├── stm32f334.dtsi
│  │  │  │  │  ├── stm32f334X8.dtsi
│  │  │  │  │  ├── stm32f373.dtsi
│  │  │  │  │  │ stm32f373Xc.dtsi
│  │  │  │  ├── f4
│  │  │  │  │  ├── stm32f4.dtsi
│  │  │  │  │  ├── stm32f401.dtsi
│  │  │  │  │  ├── stm32f405.dtsi
│  │  │  │  │  ├── stm32f407.dtsi
│  │  │  │  │  ├── stm32f410.dtsi
│  │  │  │  │  ├── stm32f411.dtsi
│  │  │  │  │  ├── stm32f412.dtsi
│  │  │  │  │  ├── stm32f413.dtsi
│  │  │  │  │  ├── stm32f415.dtsi
│  │  │  │  │  ├── stm32f417.dtsi
│  │  │  │  │  ├── stm32f423.dtsi
│  │  │  │  │  ├── stm32f427.dtsi
│  │  │  │  │  ├── stm32f429.dtsi
│  │  │  │  │  ├── stm32f437.dtsi
│  │  │  │  │  ├── stm32f446.dtsi
│  │  │  │  │  │ stm32f469.dtsi
│  │  │  │  ├── f7
│  │  │  │  │  ├── stm32f7.dtsi
│  │  │  │  │  ├── stm32f722.dtsi
│  │  │  │  │  ├── stm32f745.dtsi
│  │  │  │  │  ├── stm32f746.dtsi
│  │  │  │  │  ├── stm32f765.dtsi
│  │  │  │  │  │ stm32f767.dtsi
│  │  │  │  ├── g0
│  │  │  │  │  ├── stm32g0.dtsi
│  │  │  │  │  ├── stm32g031.dtsi
│  │  │  │  │  ├── stm32g050.dtsi
│  │  │  │  │  ├── stm32g051.dtsi
│  │  │  │  │  ├── stm32g070.dtsi
│  │  │  │  │  ├── stm32g071.dtsi
│  │  │  │  │  ├── stm32g0_crypt.dtsi
│  │  │  │  │  ├── stm32g0b0.dtsi
│  │  │  │  │  │ stm32g0b1.dtsi
│  │  │  │  ├── g4
│  │  │  │  │  ├── stm32g4.dtsi
│  │  │  │  │  ├── stm32g473.dtsi
│  │  │  │  │  │ stm32g491.dtsi
│  │  │  │  ├── h5
│  │  │  │  │  ├── stm32h5.dtsi
│  │  │  │  │  ├── stm32h533.dtsi
│  │  │  │  │  ├── stm32h562.dtsi
│  │  │  │  │  ├── stm32h563.dtsi
│  │  │  │  │  ├── stm32h563Xi.dtsi
│  │  │  │  │  │ stm32h573Xi.dtsi
│  │  │  │  ├── h7
│  │  │  │  │  ├── stm32h7.dtsi
│  │  │  │  │  ├── stm32h723.dtsi
│  │  │  │  │  ├── stm32h723Xg.dtsi
│  │  │  │  │  ├── stm32h730.dtsi
│  │  │  │  │  ├── stm32h743.dtsi
│  │  │  │  │  ├── stm32h743Xg.dtsi
│  │  │  │  │  ├── stm32h745.dtsi
│  │  │  │  │  ├── stm32h745Xi_m4.dtsi
│  │  │  │  │  ├── stm32h745Xi_m7.dtsi
│  │  │  │  │  ├── stm32h747.dtsi
│  │  │  │  │  ├── stm32h755.dtsi
│  │  │  │  │  ├── stm32h757.dtsi
│  │  │  │  │  ├── stm32h757Xi_m4.dtsi
│  │  │  │  │  ├── stm32h757Xi_m7.dtsi
│  │  │  │  │  ├── stm32h7_dualcore.dtsi
│  │  │  │  │  ├── stm32h7a3.dtsi
│  │  │  │  │  │ stm32h7b0.dtsi
│  │  │  │  ├── h7rs
│  │  │  │  │  │ stm32h7rs.dtsi
│  │  │  │  ├── l0
│  │  │  │  │  ├── stm32l0.dtsi
│  │  │  │  │  ├── stm32l010Xb.dtsi
│  │  │  │  │  ├── stm32l031.dtsi
│  │  │  │  │  ├── stm32l051.dtsi
│  │  │  │  │  ├── stm32l053.dtsi
│  │  │  │  │  ├── stm32l071.dtsi
│  │  │  │  │  │ stm32l072.dtsi
│  │  │  │  ├── l1
│  │  │  │  │  ├── stm32l1.dtsi
│  │  │  │  │  ├── stm32l151Xc.dtsi
│  │  │  │  │  ├── stm32l152Xc.dtsi
│  │  │  │  │  │ stm32l152Xe.dtsi
│  │  │  │  ├── l4
│  │  │  │  │  ├── stm32l4.dtsi
│  │  │  │  │  ├── stm32l412.dtsi
│  │  │  │  │  ├── stm32l422.dtsi
│  │  │  │  │  ├── stm32l431.dtsi
│  │  │  │  │  ├── stm32l432.dtsi
│  │  │  │  │  ├── stm32l433.dtsi
│  │  │  │  │  ├── stm32l451.dtsi
│  │  │  │  │  ├── stm32l452.dtsi
│  │  │  │  │  ├── stm32l462.dtsi
│  │  │  │  │  ├── stm32l471.dtsi
│  │  │  │  │  ├── stm32l471Xg.dtsi
│  │  │  │  │  ├── stm32l475.dtsi
│  │  │  │  │  ├── stm32l475Xg.dtsi
│  │  │  │  │  ├── stm32l476Xg.dtsi
│  │  │  │  │  ├── stm32l486.dtsi
│  │  │  │  │  ├── stm32l486Xg.dtsi
│  │  │  │  │  ├── stm32l496.dtsi
│  │  │  │  │  ├── stm32l496Xe.dtsi
│  │  │  │  │  ├── stm32l496Xg.dtsi
│  │  │  │  │  ├── stm32l4a6.dtsi
│  │  │  │  │  ├── stm32l4a6Xg.dtsi
│  │  │  │  │  ├── stm32l4p5.dtsi
│  │  │  │  │  ├── stm32l4q5.dtsi
│  │  │  │  │  ├── stm32l4r5.dtsi
│  │  │  │  │  ├── stm32l4r9.dtsi
│  │  │  │  │  │ stm32l4s5.dtsi
│  │  │  │  ├── l5
│  │  │  │  │  ├── stm32l5.dtsi
│  │  │  │  │  │ stm32l562.dtsi
│  │  │  │  ├── mp1
│  │  │  │  │  │ stm32mp157.dtsi
│  │  │  │  ├── u0
│  │  │  │  │  ├── stm32u0.dtsi
│  │  │  │  │  ├── stm32u073.dtsi
│  │  │  │  │  │ stm32u083.dtsi
│  │  │  │  ├── u5
│  │  │  │  │  ├── stm32u5.dtsi
│  │  │  │  │  ├── stm32u545.dtsi
│  │  │  │  │  ├── stm32u545Xi.dtsi
│  │  │  │  │  ├── stm32u575.dtsi
│  │  │  │  │  │ stm32u595.dtsi
│  │  │  │  ├── wb
│  │  │  │  │  │ stm32wb.dtsi
│  │  │  │  ├── wb0
│  │  │  │  │  ├── stm32wb0.dtsi
│  │  │  │  │  │ stm32wb07.dtsi
│  │  │  │  ├── wba
│  │  │  │  │  │ stm32wba.dtsi
│  │  │  │  ├── wl
│  │  │  │  │  │ stm32wl.dtsi
│  │  │  ├── ambiq
│  │  │  │  ├── ambiq_apollo3_blue.dtsi
│  │  │  │  ├── ambiq_apollo3p_blue.dtsi
│  │  │  │  ├── ambiq_apollo4p.dtsi
│  │  │  │  │ ambiq_apollo4p_blue.dtsi
│  │  │  ├── atmel
│  │  │  │  ├── samc21.dtsi
│  │  │  │  ├── samc2x.dtsi
│  │  │  │  ├── samd20.dtsi
│  │  │  │  ├── samd21.dtsi
│  │  │  │  ├── samd2x.dtsi
│  │  │  │  ├── samd5x.dtsi
│  │  │  │  ├── same5x.dtsi
│  │  │  │  ├── same70.dtsi
│  │  │  │  ├── same70b.dtsi
│  │  │  │  ├── same70q19.dtsi
│  │  │  │  ├── same70q19b.dtsi
│  │  │  │  ├── same70q21.dtsi
│  │  │  │  ├── same70q21b.dtsi
│  │  │  │  ├── same70x19.dtsi
│  │  │  │  ├── same70x19b.dtsi
│  │  │  │  ├── same70x20.dtsi
│  │  │  │  ├── same70x20b.dtsi
│  │  │  │  ├── same70x21.dtsi
│  │  │  │  ├── same70x21b.dtsi
│  │  │  │  ├── saml21.dtsi
│  │  │  │  ├── saml2x.dtsi
│  │  │  │  ├── samr21.dtsi
│  │  │  │  ├── samr34.dtsi
│  │  │  │  ├── samv71.dtsi
│  │  │  │  ├── samv71b.dtsi
│  │  │  │  ├── samv71q21.dtsi
│  │  │  │  ├── samv71q21b.dtsi
│  │  │  │  ├── samv71x19.dtsi
│  │  │  │  ├── samv71x19b.dtsi
│  │  │  │  ├── samv71x20.dtsi
│  │  │  │  ├── samv71x20b.dtsi
│  │  │  │  ├── samv71x21.dtsi
│  │  │  │  ├── samv71x21b.dtsi
│  │  │  │  ├── samx7x.dtsi
│  │  │  │  ├── samx7xb.dtsi
│  │  │  │  ├── samx7xx19.dtsi
│  │  │  │  ├── samx7xx20.dtsi
│  │  │  │  │ samx7xx21.dtsi
│  │  │  ├── infineon
│  │  │  │  ├── cat1b
│  │  │  │  │  ├── cyw20829
│  │  │  │  │  │  ├── cyw20829.40-qfn.dtsi
│  │  │  │  │  │  ├── cyw20829.56-qfn.dtsi
│  │  │  │  │  │  ├── cyw20829.77-bga.dtsi
│  │  │  │  │  │  │ cyw20829.dtsi
│  │  │  ├── microchip
│  │  │  │  ├── mec1501hsz.dtsi
│  │  │  │  ├── mec172x_common.dtsi
│  │  │  │  ├── mec172xnsz.dtsi
│  │  │  │  │ mec5.dtsi
│  │  │  ├── nordic
│  │  │  │  ├── nrf5340_cpuapp_peripherals.dtsi
│  │  │  │  ├── nrf54l09_enga_cpuapp.dtsi
│  │  │  │  ├── nrf54l20_enga_cpuapp.dtsi
│  │  │  │  │ nrf54l_05_10_15_cpuapp.dtsi
│  │  │  ├── nuvoton
│  │  │  │  ├── m2l31x.dtsi
│  │  │  │  ├── npcm
│  │  │  │  │  ├── npcm.dtsi
│  │  │  │  │  │ npcm4.dtsi
│  │  │  │  ├── npcx
│  │  │  │  │  ├── npcx-espi-vws-ex-map.dtsi
│  │  │  │  │  ├── npcx-miwus-wui-map.dtsi
│  │  │  │  │  ├── npcx.dtsi
│  │  │  │  │  ├── npcx4.dtsi
│  │  │  │  │  ├── npcx7.dtsi
│  │  │  │  │  │ npcx9.dtsi
│  │  │  ├── nxp
│  │  │  │  ├── nxp_imx8m_m4.dtsi
│  │  │  │  ├── nxp_imx93_m33.dtsi
│  │  │  │  ├── nxp_imx95_m7.dtsi
│  │  │  │  ├── nxp_k2x.dtsi
│  │  │  │  ├── nxp_k66.dtsi
│  │  │  │  ├── nxp_k6x.dtsi
│  │  │  │  ├── nxp_k8x.dtsi
│  │  │  │  ├── nxp_ke1xf.dtsi
│  │  │  │  ├── nxp_ke1xz.dtsi
│  │  │  │  ├── nxp_kl25z.dtsi
│  │  │  │  ├── nxp_kv5x.dtsi
│  │  │  │  ├── nxp_kw2xd.dtsi
│  │  │  │  ├── nxp_kw40z.dtsi
│  │  │  │  ├── nxp_kw41z.dtsi
│  │  │  │  ├── nxp_mcxa156.dtsi
│  │  │  │  ├── nxp_mcxc141.dtsi
│  │  │  │  ├── nxp_mcxc142.dtsi
│  │  │  │  ├── nxp_mcxc242.dtsi
│  │  │  │  ├── nxp_mcxc444.dtsi
│  │  │  │  ├── nxp_mcxc_common.dtsi
│  │  │  │  ├── nxp_mcxn23x_common.dtsi
│  │  │  │  ├── nxp_mcxn94x_common.dtsi
│  │  │  │  ├── nxp_mcxn94x_ns.dtsi
│  │  │  │  ├── nxp_mcxw71.dtsi
│  │  │  │  ├── nxp_rt1010.dtsi
│  │  │  │  ├── nxp_rt10xx.dtsi
│  │  │  │  ├── nxp_rt118x.dtsi
│  │  │  │  ├── nxp_rt118x_cm33.dtsi
│  │  │  │  ├── nxp_rt118x_cm33_ns.dtsi
│  │  │  │  ├── nxp_rt118x_cm7.dtsi
│  │  │  │  ├── nxp_rt11xx.dtsi
│  │  │  │  ├── nxp_rt5xx_common.dtsi
│  │  │  │  ├── nxp_rt6xx_common.dtsi
│  │  │  │  ├── nxp_rw6xx_common.dtsi
│  │  │  │  ├── nxp_s32k1xx.dtsi
│  │  │  │  ├── nxp_s32k344_m7.dtsi
│  │  │  │  ├── nxp_s32z27x_r52.dtsi
│  │  │  │  ├── nxp_s32z27x_rtu0_r52.dtsi
│  │  │  │  │ nxp_s32z27x_rtu1_r52.dtsi
│  │  │  ├── rakwireless
│  │  │  │  │ rak3172.dtsi
│  │  │  ├── raspberrypi
│  │  │  │  ├── rpi_pico
│  │  │  │  │  ├── m33.dtsi
│  │  │  │  │  ├── override.dtsi
│  │  │  │  │  ├── rp2040.dtsi
│  │  │  │  │  ├── rp2350.dtsi
│  │  │  │  │  │ rp2350a.dtsi
│  │  │  ├── ti
│  │  │  │  │ j721e_main_r5.dtsi
│  │  ├── arm64
│  │  │  ├── broadcom
│  │  │  │  │ bcm2712.dtsi
│  │  │  ├── 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,ad559x-adc.yaml
│  │  │  │  ├── infineon,cat1-adc.yaml
│  │  │  │  ├── microchip,xec-adc.yaml
│  │  │  │  ├── nxp,adc12.yaml
│  │  │  │  ├── nxp,kinetis-adc12.yaml
│  │  │  │  ├── nxp,lpc-lpadc.yaml
│  │  │  │  ├── renesas,ra-adc.yaml
│  │  │  │  ├── st,stm32-adc.yaml
│  │  │  │  ├── st,stm32wb0-adc.yaml
│  │  │  │  ├── ti,ads131m02.yaml
│  │  │  │  ├── ti,tla2021.yaml
│  │  │  │  ├── ti,tla2022.yaml
│  │  │  │  ├── ti,tla2024.yaml
│  │  │  │  │ ti,tla202x-base.yaml
│  │  │  ├── arm
│  │  │  │  ├── nxp,kinetis-ftm.yaml
│  │  │  │  │ nxp,nbu.yaml
│  │  │  ├── auxdisplay
│  │  │  │  │ hit,hd44780.yaml
│  │  │  ├── base
│  │  │  │  ├── base.yaml
│  │  │  │  │ zephyr,memory-common.yaml
│  │  │  ├── bluetooth
│  │  │  │  ├── ambiq,bt-hci-spi.yaml
│  │  │  │  ├── bt-hci.yaml
│  │  │  │  ├── espressif,esp32-bt-hci.yaml
│  │  │  │  ├── infineon,cat1-bless-hci.yaml
│  │  │  │  ├── infineon,cyw208xx-hci.yaml
│  │  │  │  ├── nxp,hci-ble.yaml
│  │  │  │  ├── renesas,bt-hci-da1453x.yaml
│  │  │  │  ├── renesas,bt-hci-da1469x.yaml
│  │  │  │  ├── silabs,bt-hci-efr32.yaml
│  │  │  │  ├── silabs,bt-hci.yaml
│  │  │  │  ├── st,hci-spi-v1.yaml
│  │  │  │  ├── st,hci-spi-v2.yaml
│  │  │  │  ├── st,hci-stm32wb0.yaml
│  │  │  │  ├── st,hci-stm32wba.yaml
│  │  │  │  ├── st,stm32wb-ble-rf.yaml
│  │  │  │  ├── zephyr,bt-hci-3wire-uart.yaml
│  │  │  │  ├── zephyr,bt-hci-ipc.yaml
│  │  │  │  ├── zephyr,bt-hci-ll-sw-split.yaml
│  │  │  │  ├── zephyr,bt-hci-spi.yaml
│  │  │  │  ├── zephyr,bt-hci-uart.yaml
│  │  │  │  │ zephyr,bt-hci-userchan.yaml
│  │  │  ├── can
│  │  │  │  ├── renesas,ra-canfd-global.yaml
│  │  │  │  │ renesas,ra-canfd.yaml
│  │  │  ├── charger
│  │  │  │  │ ti,bq24190.yaml
│  │  │  ├── clock
│  │  │  │  ├── nordic,nrf-oscillators.yaml
│  │  │  │  ├── nordic,nrf53-hfxo.yaml
│  │  │  │  ├── nordic,nrf53-lfxo.yaml
│  │  │  │  ├── nordic,nrf53-oscillators.yaml
│  │  │  │  ├── nordic,nrf54h-hfxo.yaml
│  │  │  │  ├── nordic,nrf54h-lfxo.yaml
│  │  │  │  ├── nuvoton,npcm-pcc.yaml
│  │  │  │  ├── nxp,scg-k4.yaml
│  │  │  │  ├── raspberrypi,pico-xosc.yaml
│  │  │  │  ├── renesas,ra-cgc-pclk-block.yaml
│  │  │  │  ├── renesas,ra-cgc-pclk.yaml
│  │  │  │  ├── renesas,ra-cgc-pll-out.yaml
│  │  │  │  ├── renesas,ra-cgc-pll.yaml
│  │  │  │  ├── renesas,ra-clock-generation-circuit.yaml
│  │  │  │  ├── silabs,hfxo.yaml
│  │  │  │  ├── silabs,series-clock.yaml
│  │  │  │  ├── silabs,series2-hfrcodpll.yaml
│  │  │  │  ├── silabs,series2-hfrcoem23.yaml
│  │  │  │  ├── silabs,series2-lfrco.yaml
│  │  │  │  ├── silabs,series2-lfxo.yaml
│  │  │  │  ├── st,stm32-clock-mco.yaml
│  │  │  │  ├── st,stm32-rcc.yaml
│  │  │  │  ├── st,stm32f411-plli2s-clock.yaml
│  │  │  │  ├── st,stm32f412-plli2s-clock.yaml
│  │  │  │  ├── wch,ch32v00x-hse-clock.yaml
│  │  │  │  ├── wch,ch32v00x-hsi-clock.yaml
│  │  │  │  ├── wch,ch32v00x-pll-clock.yaml
│  │  │  │  │ wch,rcc.yaml
│  │  │  ├── comparator
│  │  │  │  ├── nordic,nrf-comp.yaml
│  │  │  │  │ nordic,nrf-lpcomp.yaml
│  │  │  ├── counter
│  │  │  │  ├── adi,max32-rtc-counter.yaml
│  │  │  │  ├── andestech,atcpit100.yaml
│  │  │  │  ├── arm,cmsdk-dtimer.yaml
│  │  │  │  ├── arm,cmsdk-timer.yaml
│  │  │  │  ├── atmel,sam-tc.yaml
│  │  │  │  ├── atmel,sam0-tc32.yaml
│  │  │  │  ├── gd,gd32-timer.yaml
│  │  │  │  ├── maxim,ds3231.yaml
│  │  │  │  ├── nordic,nrf-timer.yaml
│  │  │  │  ├── nxp,lpc-ctimer.yaml
│  │  │  │  ├── nxp,s32-sys-timer.yaml
│  │  │  │  ├── nxp,tpm-timer.yaml
│  │  │  │  ├── raspberrypi,pico-timer.yaml
│  │  │  │  ├── renesas,ra-agt-counter.yml
│  │  │  │  │ renesas,smartbond-timer.yaml
│  │  │  ├── cpu
│  │  │  │  │ wch,qingke-v2.yaml
│  │  │  ├── crypto
│  │  │  │  ├── silabs,si32-aes.yaml
│  │  │  │  │ st,stm32l4-aes.yaml
│  │  │  ├── dac
│  │  │  │  │ adi,ad559x-dac.yaml
│  │  │  ├── display
│  │  │  │  ├── galaxycore,gc9x01x.yaml
│  │  │  │  ├── ilitek,ili9806e.yaml
│  │  │  │  ├── renesas,ra-glcdc.yaml
│  │  │  │  │ solomon,ssd1322.yaml
│  │  │  ├── dma
│  │  │  │  ├── nxp,edma.yaml
│  │  │  │  ├── nxp,mcux-edma-v3.yaml
│  │  │  │  ├── nxp,mcux-edma-v4.yaml
│  │  │  │  ├── nxp,mcux-edma.yaml
│  │  │  │  ├── nxp,sdma.yaml
│  │  │  │  ├── raspberrypi,pico-dma.yaml
│  │  │  │  ├── silabs,ldma.yaml
│  │  │  │  ├── st,stm32-dma-v1.yaml
│  │  │  │  ├── st,stm32-dmamux.yaml
│  │  │  │  ├── xilinx,axi-dma-base.yaml
│  │  │  │  ├── xilinx,axi-dma.yaml
│  │  │  │  │ xilinx,eth-dma.yaml
│  │  │  ├── espi
│  │  │  │  ├── nuvoton,npcx-espi-taf.yaml
│  │  │  │  │ nuvoton,npcx-espi.yaml
│  │  │  ├── ethernet
│  │  │  │  ├── davicom,dm8806-phy.yaml
│  │  │  │  ├── microchip,lan9250.yaml
│  │  │  │  ├── nxp,enet-qos-mac.yaml
│  │  │  │  ├── nxp,imx-netc-psi.yaml
│  │  │  │  ├── renesas,ra-ethernet.yaml
│  │  │  │  ├── st,stm32-ethernet-common.yaml
│  │  │  │  ├── st,stm32-ethernet.yaml
│  │  │  │  ├── st,stm32h7-ethernet.yaml
│  │  │  │  ├── ti,dp83825.yaml
│  │  │  │  │ zephyr,cdc-ncm-ethernet.yaml
│  │  │  ├── flash_controller
│  │  │  │  ├── adi,max32-flash-controller.yaml
│  │  │  │  ├── nxp,iap-msf1.yaml
│  │  │  │  ├── nxp,msf1.yaml
│  │  │  │  ├── renesas,ra-flash-hp-controller.yaml
│  │  │  │  │ st,stm32-qspi-nor.yaml
│  │  │  ├── fpga
│  │  │  │  ├── lattice,ice40-fpga-base.yaml
│  │  │  │  ├── lattice,ice40-fpga-bitbang.yaml
│  │  │  │  │ lattice,ice40-fpga.yaml
│  │  │  ├── fs
│  │  │  │  │ zephyr,fstab,littlefs.yaml
│  │  │  ├── gpio
│  │  │  │  ├── adi,max14906-gpio.yaml
│  │  │  │  ├── adi,max14916-gpio.yaml
│  │  │  │  ├── adi,max22190-gpio.yaml
│  │  │  │  ├── awinic,aw9523b-gpio.yaml
│  │  │  │  ├── ite,it8801-gpio.yaml
│  │  │  │  ├── microchip,mec5-gpio.yaml
│  │  │  │  ├── nordic,npm2100-gpio.yaml
│  │  │  │  ├── nordic,nrf-gpio.yaml
│  │  │  │  ├── nordic,nrf-port-configs.yaml
│  │  │  │  ├── raspberrypi,rp1-gpio.yaml
│  │  │  │  ├── renesas,mipi-header.yaml
│  │  │  │  ├── renesas,ra-gpio-ioport.yaml
│  │  │  │  ├── renesas,rz-gpio-int.yaml
│  │  │  │  ├── renesas,rz-gpio.yaml
│  │  │  │  ├── stemma-qt-connector.yaml
│  │  │  │  ├── wch,gpio.yaml
│  │  │  │  │ weact,dcmi-camera-connector.yaml
│  │  │  ├── hdlc_rcp_if
│  │  │  │  ├── nxp,hdlc-rcp-if.yaml
│  │  │  │  │ uart,hdlc-rcp-if.yaml
│  │  │  ├── hwinfo
│  │  │  │  │ cypress,psoc6-uid.yaml
│  │  │  ├── i2c
│  │  │  │  ├── ambiq,i2c.yaml
│  │  │  │  ├── nordic,nrf-twis.yaml
│  │  │  │  ├── nxp,imx-lpi2c.yaml
│  │  │  │  ├── nxp,lpc-i2c.yaml
│  │  │  │  ├── nxp,lpi2c.yaml
│  │  │  │  ├── snps,designware-i2c.yaml
│  │  │  │  │ ti,tca9544a.yaml
│  │  │  ├── i2s
│  │  │  │  │ i2s-device.yaml
│  │  │  ├── i3c
│  │  │  │  ├── cdns,i3c.yaml
│  │  │  │  ├── nuvoton,npcx-i3c.yaml
│  │  │  │  │ st,stm32-i3c.yaml
│  │  │  ├── iio
│  │  │  │  ├── afe
│  │  │  │  │  ├── current-sense-amplifier.yaml
│  │  │  │  │  │ voltage-divider.yaml
│  │  │  ├── input
│  │  │  │  ├── gpio-keys.yaml
│  │  │  │  ├── ilitek,ili2132a.yaml
│  │  │  │  ├── ite,it8801-kbd.yaml
│  │  │  │  ├── ite,it8xxx2-kbd.yaml
│  │  │  │  ├── kbd-matrix-common.yaml
│  │  │  │  ├── microchip,cap1203.yaml
│  │  │  │  ├── microchip,cap12xx.yaml
│  │  │  │  │ nintendo,nunchuk.yaml
│  │  │  ├── interrupt-controller
│  │  │  │  ├── andestech,nceplic100.yaml
│  │  │  │  ├── cypress,psoc6-intmux.yaml
│  │  │  │  │ wch,pfic.yaml
│  │  │  ├── ipm
│  │  │  │  │ zephyr,mbox-ipm.yaml
│  │  │  ├── led_strip
│  │  │  │  │ worldsemi,ws2812-i2s.yaml
│  │  │  ├── mbox
│  │  │  │  ├── andestech,mbox-plic-sw.yaml
│  │  │  │  ├── andestech,plic-sw.yaml
│  │  │  │  │ linaro,ivshmem-mbox.yaml
│  │  │  ├── mdio
│  │  │  │  ├── nxp,imx-netc-emdio.yaml
│  │  │  │  │ renesas,ra-mdio.yaml
│  │  │  ├── memory-controllers
│  │  │  │  ├── renesas,ra-sdram.yaml
│  │  │  │  │ st,stm32-fmc-sdram.yaml
│  │  │  ├── mfd
│  │  │  │  ├── awinic,aw9523b.yaml
│  │  │  │  ├── infineon,tle9104.yaml
│  │  │  │  ├── ite,it8801-altctrl.yaml
│  │  │  │  ├── ite,it8801-mfd-map.yaml
│  │  │  │  ├── ite,it8801-mfd.yaml
│  │  │  │  ├── maxim,ds3231-mfd.yaml
│  │  │  │  │ nordic,npm2100.yaml
│  │  │  ├── mipi-dbi
│  │  │  │  ├── mipi-dbi-device.yaml
│  │  │  │  ├── mipi-dbi-spi-device.yaml
│  │  │  │  ├── nxp,lcdic.yaml
│  │  │  │  ├── zephyr,mipi-dbi-bitbang.yaml
│  │  │  │  │ zephyr,mipi-dbi-spi.yaml
│  │  │  ├── mipi-dsi
│  │  │  │  │ renesas,ra-mipi-dsi.yaml
│  │  │  ├── misc
│  │  │  │  ├── nordic,nrf-bicr.yaml
│  │  │  │  ├── renesas,ra-agt.yaml
│  │  │  │  │ renesas,ra-external-interrupt.yaml
│  │  │  ├── mmu_mpu
│  │  │  │  │ nxp,sysmpu.yaml
│  │  │  ├── modem
│  │  │  │  │ telit,me310g1.yaml
│  │  │  ├── mtd
│  │  │  │  ├── fujitsu,mb85rsxx.yaml
│  │  │  │  ├── jedec,mspi-nor.yaml
│  │  │  │  ├── jedec,spi-nor-common.yaml
│  │  │  │  │ nxp,imx-flexspi-aps6404l.yaml
│  │  │  ├── phy
│  │  │  │  ├── renesas,ra-usbphyc.yaml
│  │  │  │  │ st,stm32u5-otghs-phy.yaml
│  │  │  ├── pinctrl
│  │  │  │  ├── microchip,mec5-pinctrl.yaml
│  │  │  │  ├── nxp,kinetis-pinctrl.yaml
│  │  │  │  ├── nxp,kinetis-pinmux.yaml
│  │  │  │  ├── nxp,port-pinctrl.yaml
│  │  │  │  ├── nxp,port-pinmux.yaml
│  │  │  │  ├── nxp,s32ze-pinctrl.yaml
│  │  │  │  ├── raspberrypi,pico-pinctrl.yaml
│  │  │  │  ├── renesas,ra-pinctrl.yaml
│  │  │  │  ├── renesas,rzg-pinctrl.yaml
│  │  │  │  ├── silabs,dbus-pinctrl.yaml
│  │  │  │  │ wch,afio.yaml
│  │  │  ├── pwm
│  │  │  │  ├── adi,max32-pwm.yaml
│  │  │  │  ├── atmel,sam0-tc-pwm.yaml
│  │  │  │  ├── infineon,cat1-pwm.yaml
│  │  │  │  ├── ite,it8801-pwm.yaml
│  │  │  │  ├── nxp,ftm-pwm.yaml
│  │  │  │  ├── nxp,kinetis-ftm-pwm.yaml
│  │  │  │  ├── nxp,kinetis-tpm.yaml
│  │  │  │  ├── raspberrypi,pico-pwm.yaml
│  │  │  │  ├── renesas,ra-pwm.yaml
│  │  │  │  │ zephyr,fake-pwm.yaml
│  │  │  ├── regulator
│  │  │  │  ├── cirrus,cp9314.yaml
│  │  │  │  ├── nordic,npm2100-regulator.yaml
│  │  │  │  ├── nxp,vref.yaml
│  │  │  │  │ silabs,series2-dcdc.yaml
│  │  │  ├── rng
│  │  │  │  ├── renesas,ra-sce5-rng.yaml
│  │  │  │  ├── renesas,ra-sce7-rng.yaml
│  │  │  │  │ renesas,ra-trng.yaml
│  │  │  ├── rtc
│  │  │  │  ├── infineon,cat1-rtc.yaml
│  │  │  │  ├── maxim,ds3231-rtc.yaml
│  │  │  │  ├── nxp,irtc.yaml
│  │  │  │  ├── nxp,kinetis-rtc.yaml
│  │  │  │  │ nxp,rtc.yaml
│  │  │  ├── sd
│  │  │  │  ├── zephyr,mmc-disk.yaml
│  │  │  │  │ zephyr,sdmmc-disk.yaml
│  │  │  ├── sdhc
│  │  │  │  │ renesas,ra-sdhc.yaml
│  │  │  ├── sensor
│  │  │  │  ├── adi,adxl345-common.yaml
│  │  │  │  ├── adi,adxl345-i2c.yaml
│  │  │  │  ├── adi,adxl345-spi.yaml
│  │  │  │  ├── adi,adxl366-i2c.yaml
│  │  │  │  ├── adi,adxl366-spi.yaml
│  │  │  │  ├── avago,apds9306.yaml
│  │  │  │  ├── bosch,bmp390-i2c.yaml
│  │  │  │  ├── bosch,bmp390-spi.yaml
│  │  │  │  ├── bosch,bmp390.yaml
│  │  │  │  ├── hc-sr04.yaml
│  │  │  │  ├── invensense,icm42670-i2c.yaml
│  │  │  │  ├── invensense,icm42670-spi.yaml
│  │  │  │  ├── invensense,icm42670.yaml
│  │  │  │  ├── invensense,icm42670p-i2c.yaml
│  │  │  │  ├── invensense,icm42670p-spi.yaml
│  │  │  │  ├── invensense,icm42670s-i2c.yaml
│  │  │  │  ├── invensense,icm42670s-spi.yaml
│  │  │  │  ├── maxim,ds3231-sensor.yaml
│  │  │  │  ├── memsic,mmc56x3.yaml
│  │  │  │  ├── nordic,npm1300-charger.yaml
│  │  │  │  ├── nordic,npm2100-vbat.yaml
│  │  │  │  ├── ntc-thermistor.yaml
│  │  │  │  ├── nxp,p3t1755-common.yaml
│  │  │  │  ├── nxp,p3t1755-i2c.yaml
│  │  │  │  ├── nxp,p3t1755-i3c.yaml
│  │  │  │  ├── renesas,hs400x.yaml
│  │  │  │  ├── sensirion,scd40.yaml
│  │  │  │  ├── sensirion,scd41.yaml
│  │  │  │  ├── sensirion,sts4x.yaml
│  │  │  │  ├── st,ilps22qs-common.yaml
│  │  │  │  ├── st,ilps22qs-i2c.yaml
│  │  │  │  ├── st,ilps22qs-i3c.yaml
│  │  │  │  ├── st,ilps22qs-spi.yaml
│  │  │  │  ├── st,lis2duxs12-common.yaml
│  │  │  │  ├── st,lis2duxs12-i2c.yaml
│  │  │  │  ├── st,lis2duxs12-spi.yaml
│  │  │  │  ├── st,lis2dw12-common.yaml
│  │  │  │  ├── st,lsm6dsv16x-common.yaml
│  │  │  │  ├── st,lsm6dsv16x-i3c.yaml
│  │  │  │  ├── st,stm32-temp-cal-common.yaml
│  │  │  │  ├── st,stm32-temp-cal.yaml
│  │  │  │  ├── st,stm32-temp-common.yaml
│  │  │  │  ├── st,stm32-temp.yaml
│  │  │  │  ├── st,stm32-vref.yaml
│  │  │  │  ├── st,stm32c0-temp-cal.yaml
│  │  │  │  ├── ti,hdc20xx.yaml
│  │  │  │  ├── ti,ina230.yaml
│  │  │  │  ├── ti,ina236.yaml
│  │  │  │  ├── ti,tmag3001.yaml
│  │  │  │  ├── ti,tmag5273.yaml
│  │  │  │  ├── ti,tmp1075.yaml
│  │  │  │  ├── ti,tmp116.yaml
│  │  │  │  ├── vishay,vcnl36825t.yaml
│  │  │  │  ├── we,wsen-hids-2525020210002.yaml
│  │  │  │  ├── we,wsen-hids-common.yaml
│  │  │  │  ├── we,wsen-hids-i2c.yaml
│  │  │  │  ├── we,wsen-hids-spi.yaml
│  │  │  │  ├── we,wsen-itds.yaml
│  │  │  │  ├── we,wsen-pads-common.yaml
│  │  │  │  ├── we,wsen-pads-i2c.yaml
│  │  │  │  ├── we,wsen-pads-spi.yaml
│  │  │  │  ├── we,wsen-pdus.yaml
│  │  │  │  │ we,wsen-tids.yaml
│  ├── samples
│  │  ├── application_development
│  │  │  ├── code_relocation_nocopy
│  │  │  │  │ prj.conf
│  │  ├── basic
│  │  │  ├── blinky_pwm
│  │  │  │  ├── README.rst
│  │  │  │  ├── boards
│  │  │  │  │  ├── beagleconnect_freedom.overlay
│  │  │  │  │  ├── frdm_mcxc242.overlay
│  │  │  │  │  │ nucleo_l4r5zi.overlay
│  │  │  ├── button
│  │  │  │  ├── boards
│  │  │  │  │  │ rzg3s_smarc_r9a08g045s33gbg_cm33.overlay
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── fade_led
│  │  │  │  ├── boards
│  │  │  │  │  │ cyw920829m2evk_02.overlay
│  │  │  ├── minimal
│  │  │  │  │ sample.yaml
│  │  │  ├── servo_motor
│  │  │  │  │ README.rst
│  │  ├── bluetooth
│  │  │  ├── bap_broadcast_assistant
│  │  │  │  ├── README.rst
│  │  │  │  ├── prj.conf
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── bap_broadcast_sink
│  │  │  │  ├── README.rst
│  │  │  │  ├── prj.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── bap_broadcast_source
│  │  │  │  ├── Kconfig
│  │  │  │  ├── README.rst
│  │  │  │  ├── prj.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── bap_unicast_client
│  │  │  │  ├── README.rst
│  │  │  │  ├── boards
│  │  │  │  │  ├── native_sim.conf
│  │  │  │  │  ├── nrf5340_audio_dk_nrf5340_cpuapp.conf
│  │  │  │  │  ├── nrf5340bsim_nrf5340_cpuapp.conf
│  │  │  │  │  │ nrf5340dk_nrf5340_cpuapp.conf
│  │  │  │  ├── prj.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  ├── main.c
│  │  │  │  │  ├── stream_tx.c
│  │  │  │  │  │ stream_tx.h
│  │  │  ├── bap_unicast_server
│  │  │  │  ├── README.rst
│  │  │  │  ├── boards
│  │  │  │  │  ├── native_sim.conf
│  │  │  │  │  ├── nrf5340_audio_dk_nrf5340_cpuapp.conf
│  │  │  │  │  ├── nrf5340bsim_nrf5340_cpuapp.conf
│  │  │  │  │  │ nrf5340dk_nrf5340_cpuapp.conf
│  │  │  │  ├── prj.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── broadcaster_multiple
│  │  │  │  ├── src
│  │  │  │  │  ├── broadcaster_multiple.c
│  │  │  │  │  │ main.c
│  │  │  ├── cap_acceptor
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig
│  │  │  │  ├── README.rst
│  │  │  │  ├── boards
│  │  │  │  │  ├── nrf5340_audio_dk_nrf5340_cpuapp.conf
│  │  │  │  │  │ nrf5340dk_nrf5340_cpuapp.conf
│  │  │  │  ├── overlay-bt_ll_sw_split.conf
│  │  │  │  ├── prj.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  ├── cap_acceptor.h
│  │  │  │  │  ├── cap_acceptor_broadcast.c
│  │  │  │  │  ├── cap_acceptor_unicast.c
│  │  │  │  │  │ main.c
│  │  │  ├── cap_initiator
│  │  │  │  ├── Kconfig
│  │  │  │  ├── README.rst
│  │  │  │  ├── boards
│  │  │  │  │  ├── nrf5340_audio_dk_nrf5340_cpuapp.conf
│  │  │  │  │  │ nrf5340dk_nrf5340_cpuapp.conf
│  │  │  │  ├── prj.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  ├── cap_initiator_broadcast.c
│  │  │  │  │  ├── cap_initiator_tx.c
│  │  │  │  │  │ cap_initiator_unicast.c
│  │  │  ├── ccp_call_control_server
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  ├── README.rst
│  │  │  │  ├── boards
│  │  │  │  │  ├── nrf5340_audio_dk_nrf5340_cpuapp.conf
│  │  │  │  │  │ nrf5340dk_nrf5340_cpuapp.conf
│  │  │  │  ├── overlay-bt_ll_sw_split.conf
│  │  │  │  ├── prj.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  │  │ sysbuild.cmake
│  │  │  ├── central
│  │  │  │  │ sample.yaml
│  │  │  ├── central_hr
│  │  │  │  │ prj_minimal.conf
│  │  │  ├── central_ht
│  │  │  │  │ sample.yaml
│  │  │  ├── central_multilink
│  │  │  │  ├── src
│  │  │  │  │  ├── central_multilink.c
│  │  │  │  │  │ main.c
│  │  │  ├── central_otc
│  │  │  │  ├── prj.conf
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── central_past
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── channel_sounding
│  │  │  │  ├── README.rst
│  │  │  │  ├── connected_cs
│  │  │  │  │  ├── initiator
│  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │ sample.yaml
│  │  │  │  │  ├── reflector
│  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │ sample.yaml
│  │  │  │  ├── cs_test
│  │  │  │  │  ├── initiator
│  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │ sample.yaml
│  │  │  │  │  ├── reflector
│  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │ sample.yaml
│  │  │  │  ├── include
│  │  │  │  │  ├── common.h
│  │  │  │  │  ├── cs_test_params.h
│  │  │  │  │  │ distance_estimation.h
│  │  │  │  ├── src
│  │  │  │  │  ├── connected_cs_initiator.c
│  │  │  │  │  ├── connected_cs_reflector.c
│  │  │  │  │  ├── cs_test_initiator.c
│  │  │  │  │  ├── cs_test_reflector.c
│  │  │  │  │  │ distance_estimation.c
│  │  │  ├── direct_adv
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── direction_finding_central
│  │  │  │  ├── boards
│  │  │  │  │  ├── nrf52833dk_nrf52820.conf
│  │  │  │  │  │ nrf52833dk_nrf52833.conf
│  │  │  │  │ sample.yaml
│  │  │  ├── direction_finding_connectionless_rx
│  │  │  │  ├── boards
│  │  │  │  │  ├── nrf52833dk_nrf52820.conf
│  │  │  │  │  │ nrf52833dk_nrf52833.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── direction_finding_connectionless_tx
│  │  │  │  ├── boards
│  │  │  │  │  ├── nrf52833dk_nrf52820.conf
│  │  │  │  │  │ nrf52833dk_nrf52833.conf
│  │  │  │  │ sample.yaml
│  │  │  ├── direction_finding_peripheral
│  │  │  │  ├── boards
│  │  │  │  │  ├── nrf52833dk_nrf52820.conf
│  │  │  │  │  │ nrf52833dk_nrf52833.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── eddystone
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── encrypted_advertising
│  │  │  │  ├── peripheral
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ peripheral_ead.c
│  │  │  ├── extended_adv
│  │  │  │  ├── scanner
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  ├── handsfree_ag
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── hap_ha
│  │  │  │  ├── binaural.conf
│  │  │  │  ├── boards
│  │  │  │  │  ├── native_posix.conf
│  │  │  │  │  │ native_sim.conf
│  │  │  │  ├── prj.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ bap_unicast_sr.c
│  │  │  ├── hci_ipc
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── boards
│  │  │  │  │  │ nrf5340_audio_dk_nrf5340_cpunet_nrf21540_ek.overlay
│  │  │  │  ├── nrf5340_cpunet_bis-bt_ll_sw_split.conf
│  │  │  │  ├── nrf5340_cpunet_bt_mesh-bt_ll_sw_split.conf
│  │  │  │  ├── nrf5340_cpunet_cis-bt_ll_sw_split.conf
│  │  │  │  ├── nrf5340_cpunet_df-bt_ll_sw_split.conf
│  │  │  │  ├── nrf5340_cpunet_iso-bt_ll_sw_split.conf
│  │  │  │  ├── nrf5340_cpunet_iso_broadcast-bt_ll_sw_split.conf
│  │  │  │  ├── nrf5340_cpunet_iso_central-bt_ll_sw_split.conf
│  │  │  │  ├── nrf5340_cpunet_iso_peripheral-bt_ll_sw_split.conf
│  │  │  │  ├── nrf5340_cpunet_iso_receive-bt_ll_sw_split.conf
│  │  │  │  ├── overlay-nrf5340_cpunet_iso_nrf21540_ek-bt_ll_sw_split.conf
│  │  │  │  ├── prj.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── hci_pwr_ctrl
│  │  │  │  ├── boards
│  │  │  │  │  ├── qemu_cortex_m3.overlay
│  │  │  │  │  │ qemu_x86.overlay
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── hci_spi
│  │  │  │  ├── README.rst
│  │  │  │  │ prj.conf
│  │  │  ├── hci_uart
│  │  │  │  ├── README.rst
│  │  │  │  ├── boards
│  │  │  │  │  │ nrf5340_audio_dk_nrf5340_cpuapp_nrf21540_ek.overlay
│  │  │  │  ├── overlay-all-bt_ll_sw_split.conf
│  │  │  │  ├── prj.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── hci_uart_3wire
│  │  │  │  ├── README.rst
│  │  │  │  ├── boards
│  │  │  │  │  │ nrf52840dongle_nrf52840.conf
│  │  │  │  ├── overlay-all-bt_ll_sw_split.conf
│  │  │  │  ├── prj.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── hci_uart_async
│  │  │  │  ├── README.rst
│  │  │  │  ├── src
│  │  │  │  │  │ hci_uart_async.c
│  │  │  ├── hci_usb_h4
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── README.rst
│  │  │  │  ├── prj.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── hci_vs_scan_req
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── iso_broadcast
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── iso_broadcast_benchmark
│  │  │  │  ├── src
│  │  │  │  │  │ broadcaster.c
│  │  │  ├── iso_central
│  │  │  │  ├── prj.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── iso_connected_benchmark
│  │  │  │  ├── prj.conf
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── iso_peripheral
│  │  │  │  ├── prj.conf
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── iso_receive
│  │  │  │  ├── Kconfig
│  │  │  │  ├── prj.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── mesh
│  │  │  │  ├── boards
│  │  │  │  │  │ nrf5340dk_nrf5340_cpuapp_ns.conf
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── mesh_demo
│  │  │  │  ├── boards
│  │  │  │  │  ├── bbc_microbit.conf
│  │  │  │  │  │ nrf5340dk_nrf5340_cpuapp_ns.conf
│  │  │  │  ├── prj.conf
│  │  │  │  ├── src
│  │  │  │  │  │ microbit.c
│  │  │  ├── mesh_provisioner
│  │  │  │  ├── Kconfig
│  │  │  │  ├── boards
│  │  │  │  │  │ nrf5340dk_nrf5340_cpuapp_ns.conf
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── mtu_update
│  │  │  │  ├── peripheral
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ peripheral_mtu_update.c
│  │  │  ├── pbp_public_broadcast_sink
│  │  │  │  ├── README.rst
│  │  │  │  ├── prj.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── pbp_public_broadcast_source
│  │  │  │  ├── Kconfig
│  │  │  │  ├── README.rst
│  │  │  │  ├── prj.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── periodic_adv_rsp
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── periodic_sync
│  │  │  │  ├── Kconfig
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── periodic_sync_rsp
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── peripheral
│  │  │  │  ├── boards
│  │  │  │  │  │ nucleo_l4r5zi_stm32l4r5xx.overlay
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── peripheral_accept_list
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── peripheral_csc
│  │  │  │  ├── prj.conf
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── peripheral_dis
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── peripheral_esp
│  │  │  │  ├── prj.conf
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── peripheral_gatt_write
│  │  │  │  ├── src
│  │  │  │  │  │ peripheral_gatt_write.c
│  │  │  ├── peripheral_hids
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── peripheral_hr
│  │  │  │  ├── boards
│  │  │  │  │  │ nrf5340bsim_nrf5340_cpuapp.conf
│  │  │  │  ├── prj_minimal.conf
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── peripheral_ht
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── peripheral_identity
│  │  │  │  ├── src
│  │  │  │  │  ├── main.c
│  │  │  │  │  │ peripheral_identity.c
│  │  │  ├── peripheral_nus
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── peripheral_ots
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── peripheral_past
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── peripheral_sc_only
│  │  │  │  ├── boards
│  │  │  │  │  │ tlsr9518adk80d.conf
│  │  │  │  ├── prj.conf
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── st_ble_sensor
│  │  │  │  ├── prj.conf
│  │  │  │  ├── src
│  │  │  │  │  ├── button_svc.c
│  │  │  │  │  │ main.c
│  │  │  ├── tmap_bmr
│  │  │  │  ├── README.rst
│  │  │  │  ├── boards
│  │  │  │  │  ├── native_posix.conf
│  │  │  │  │  │ native_sim.conf
│  │  │  │  ├── prj.conf
│  │  │  │  ├── src
│  │  │  │  │  ├── bap_broadcast_sink.c
│  │  │  │  │  │ vcp_vol_renderer.c
│  │  │  ├── tmap_bms
│  │  │  │  ├── README.rst
│  │  │  │  ├── boards
│  │  │  │  │  ├── native_posix.conf
│  │  │  │  │  │ native_sim.conf
│  │  │  │  ├── prj.conf
│  │  │  │  ├── src
│  │  │  │  │  │ cap_initiator.c
│  │  │  ├── tmap_central
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── README.rst
│  │  │  │  ├── boards
│  │  │  │  │  ├── native_posix.conf
│  │  │  │  │  │ native_sim.conf
│  │  │  │  ├── prj.conf
│  │  │  │  ├── src
│  │  │  │  │  ├── cap_initiator.c
│  │  │  │  │  ├── ccp_call_control_server.c
│  │  │  │  │  ├── ccp_server.c
│  │  │  │  │  ├── main.c
│  │  │  │  │  ├── tmap_central.h
│  │  │  │  │  │ vcp_vol_ctlr.c
│  │  │  ├── tmap_peripheral
│  │  │  │  ├── README.rst
│  │  │  │  ├── boards
│  │  │  │  │  ├── native_posix.conf
│  │  │  │  │  │ native_sim.conf
│  │  │  │  ├── duo.conf
│  │  │  │  ├── prj.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  ├── bap_unicast_sr.c
│  │  │  │  │  ├── ccp_call_ctrl.c
│  │  │  │  │  ├── csip_set_member.c
│  │  │  │  │  ├── main.c
│  │  │  │  │  ├── mcp_ctlr.c
│  │  │  │  │  ├── tmap_peripheral.h
│  │  │  │  │  │ vcp_vol_renderer.c
│  │  ├── boards
│  │  │  ├── 96boards
│  │  │  │  ├── argonkey
│  │  │  │  │  ├── microphone
│  │  │  │  │  │  │ README.rst
│  │  │  │  │  ├── sensors
│  │  │  │  │  │  │ README.rst
│  │  │  ├── arc_secure_services
│  │  │  │  │ em_starterkit_em7d_normal_defconfig
│  │  │  ├── bbc
│  │  │  │  ├── microbit
│  │  │  │  │  ├── display
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │ main.c
│  │  │  │  │  ├── pong
│  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │ ble.c
│  │  │  ├── espressif
│  │  │  │  ├── deep_sleep
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  │ README.rst
│  │  │  │  ├── light_sleep
│  │  │  │  │  │ prj.conf
│  │  │  │  ├── wifi_apsta_mode
│  │  │  │  │  │ README.rst
│  │  │  ├── google
│  │  │  │  ├── twinkie_v2
│  │  │  │  │  ├── pda
│  │  │  │  │  │  │ README.rst
│  │  │  ├── nordic
│  │  │  │  ├── battery
│  │  │  │  │  │ prj.conf
│  │  │  │  ├── dynamic_pinctrl
│  │  │  │  │  │ prj.conf
│  │  │  │  ├── mesh
│  │  │  │  │  ├── onoff-app
│  │  │  │  │  │  │ prj.conf
│  │  │  │  │  ├── onoff_level_lighting_vnd_app
│  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  ├── mesh
│  │  │  │  │  │  │  │  ├── device_composition.c
│  │  │  │  │  │  │  │  ├── state_binding.c
│  │  │  │  │  │  │  │  │ transition.c
│  │  │  │  ├── nrf_led_matrix
│  │  │  │  │  │ README.rst
│  │  │  │  ├── nrfx_prs
│  │  │  │  │  │ prj.conf
│  │  │  │  ├── system_off
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp_comparator.overlay
│  │  │  │  │  │  │ nrf54l20pdk_nrf54l20_cpuapp.overlay
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  ├── nxp
│  │  │  │  ├── adsp
│  │  │  │  │  ├── number_crunching
│  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  ├── README.rst
│  │  │  │  │  │  ├── include
│  │  │  │  │  │  │  ├── input.h
│  │  │  │  │  │  │  │ math_ops.h
│  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  ├── sample.yaml
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  ├── cmsis_dsp_wrapper.c
│  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  ├── math_ops.c
│  │  │  │  │  │  │  │ nature_dsp_wrapper.c
│  │  │  │  ├── mimxrt1060_evk
│  │  │  │  │  ├── system_off
│  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │ sample.yaml
│  │  │  │  ├── mimxrt1170_evk_cm7
│  │  │  │  │  ├── magic_addr
│  │  │  │  │  │  ├── pytest
│  │  │  │  │  │  │  │ test_magic_addr.py
│  │  │  │  │  │  │ sample.yaml
│  │  │  │  ├── s32
│  │  │  │  │  ├── netc
│  │  │  │  │  │  │ README.rst
│  │  │  ├── phytec
│  │  │  │  ├── reel_board
│  │  │  │  │  ├── mesh_badge
│  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │  │ periphs.c
│  │  │  ├── raspberrypi
│  │  │  │  ├── rpi_pico
│  │  │  │  │  ├── uart_pio
│  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  │ rpi_pico2_rp2350a_m33.overlay
│  │  │  ├── st
│  │  │  │  ├── bluetooth
│  │  │  │  │  ├── interactive_gui
│  │  │  │  │  │  │ README.rst
│  │  │  │  ├── i2c_timing
│  │  │  │  │  │ sample.yaml
│  │  │  │  ├── mco
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── nucleo_f411re.overlay
│  │  │  │  │  │  ├── nucleo_f429zi.overlay
│  │  │  │  │  │  ├── nucleo_f446ze.overlay
│  │  │  │  │  │  ├── nucleo_u5a5zj_q.overlay
│  │  │  │  │  │  │ stm32f746g_disco.overlay
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── power_mgmt
│  │  │  │  │  ├── blinky
│  │  │  │  │  │  ├── boards
│  │  │  │  │  │  │  ├── nucleo_wb55rg.overlay
│  │  │  │  │  │  │  │ nucleo_wba55cg.overlay
│  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │ main.c
│  │  │  │  │  ├── standby_shutdown
│  │  │  │  │  │  │ prj.conf
│  │  │  │  │  ├── stm32wb_ble
│  │  │  │  │  │  │ prj.conf
│  │  │  │  │  ├── stop3
│  │  │  │  │  │  │ prj.conf
│  │  │  │  │  ├── suspend_to_ram
│  │  │  │  │  │  │ prj.conf
│  │  │  │  │  ├── wkup_pins
│  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  │ sample.yaml
│  │  │  │  ├── sensortile_box
│  │  │  │  │  │ README.rst
│  │  │  │  ├── sensortile_box_pro
│  │  │  │  │  ├── sensors-on-board
│  │  │  │  │  │  │ README.rst
│  │  │  │  ├── steval_stwinbx1
│  │  │  │  │  ├── sensors
│  │  │  │  │  │  ├── README.rst
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │ main.c
│  │  ├── drivers
│  │  │  ├── adc
│  │  │  │  ├── adc_dt
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── arduino_opta_stm32h747xx_m7.overlay
│  │  │  │  │  │  ├── beagleconnect_freedom.overlay
│  │  │  │  │  │  ├── frdm_mcxa156.conf
│  │  │  │  │  │  ├── frdm_mcxa156.overlay
│  │  │  │  │  │  ├── frdm_mcxc242.conf
│  │  │  │  │  │  ├── frdm_mcxc242.overlay
│  │  │  │  │  │  ├── frdm_mcxn236.overlay
│  │  │  │  │  │  ├── frdm_mcxw71.overlay
│  │  │  │  │  │  ├── mimxrt1050_evk_mimxrt1052_hyperflash.overlay
│  │  │  │  │  │  ├── mimxrt1060_evk_mimxrt1062_qspi.overlay
│  │  │  │  │  │  │ rpi_pico2_rp2350a_m33.overlay
│  │  │  │  │  │ sample.yaml
│  │  │  │  ├── adc_sequence
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── frdm_mcxc242.conf
│  │  │  │  │  │  │ frdm_mcxc242.overlay
│  │  │  │  │  │ sample.yaml
│  │  │  ├── can
│  │  │  │  ├── babbling
│  │  │  │  │  │ README.rst
│  │  │  ├── counter
│  │  │  │  ├── alarm
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── ek_ra2a1.overlay
│  │  │  │  │  │  ├── ek_ra4m2.overlay
│  │  │  │  │  │  ├── ek_ra4m3.overlay
│  │  │  │  │  │  ├── ek_ra4w1.overlay
│  │  │  │  │  │  ├── ek_ra6m1.overlay
│  │  │  │  │  │  ├── ek_ra6m2.overlay
│  │  │  │  │  │  ├── ek_ra6m3.overlay
│  │  │  │  │  │  ├── ek_ra6m4.overlay
│  │  │  │  │  │  ├── ek_ra6m5.overlay
│  │  │  │  │  │  ├── ek_ra8d1.overlay
│  │  │  │  │  │  ├── ek_ra8m1.overlay
│  │  │  │  │  │  ├── fpb_ra6e1.overlay
│  │  │  │  │  │  ├── max78002evkit_max78002_m4.overlay
│  │  │  │  │  │  ├── mck_ra8t1.overlay
│  │  │  │  │  │  │ nrf54l20pdk_nrf54l20_cpuapp.overlay
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  ├── crypto
│  │  │  │  ├── boards
│  │  │  │  │  │ sim3u1xx_dk.overlay
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── dac
│  │  │  │  ├── README.rst
│  │  │  │  ├── boards
│  │  │  │  │  ├── arduino_giga_r1_stm32h747xx_m7.overlay
│  │  │  │  │  │ frdm_mcxa156.overlay
│  │  │  ├── display
│  │  │  │  ├── boards
│  │  │  │  │  │ ek_ra8d1.conf
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── eeprom
│  │  │  │  │ README.rst
│  │  │  ├── espi
│  │  │  │  ├── Kconfig
│  │  │  │  ├── src
│  │  │  │  │  ├── espi_oob_handler.c
│  │  │  │  │  │ main.c
│  │  │  ├── ethernet
│  │  │  │  ├── eth_ivshmem
│  │  │  │  │  │ sample.yaml
│  │  │  ├── fpga
│  │  │  │  ├── fpga_controller
│  │  │  │  │  │ README.rst
│  │  │  ├── gnss
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── haptics
│  │  │  │  ├── drv2605
│  │  │  │  │  │ README.rst
│  │  │  ├── i2c
│  │  │  │  ├── custom_target
│  │  │  │  │  │ README.rst
│  │  │  │  ├── rtio_loopback
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── b_u585i_iot02a.conf
│  │  │  │  │  │  │ b_u585i_iot02a.overlay
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── target_eeprom
│  │  │  │  │  │ README.rst
│  │  │  ├── i2s
│  │  │  │  ├── echo
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── i2s_codec
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── output
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── mimxrt1060_evk_mimxrt1062_qspi_B.conf
│  │  │  │  │  │  │ mimxrt1060_evk_mimxrt1062_qspi_B.overlay
│  │  │  ├── ipm
│  │  │  │  ├── ipm_esp32
│  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  ├── Kconfig.sysbuild
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── boards
│  │  │  │  │  │  │ yd_esp32_procpu.overlay
│  │  │  │  │  ├── ipm_esp_appcpu
│  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │ main.c
│  │  │  │  │  ├── remote
│  │  │  │  │  │  ├── CMakeLists.txt
│  │  │  │  │  │  ├── prj.conf
│  │  │  │  │  │  ├── socs
│  │  │  │  │  │  │  │ esp32s3_appcpu.overlay
│  │  │  │  │  │  ├── src
│  │  │  │  │  │  │  │ main.c
│  │  │  │  │  ├── socs
│  │  │  │  │  │  ├── esp32_procpu.overlay
│  │  │  │  │  │  │ esp32s3_procpu.overlay
│  │  │  │  │  ├── src
│  │  │  │  │  │  ├── main.c
│  │  │  │  │  │  │ procpu_shell.c
│  │  │  │  │  │ sysbuild.cmake
│  │  │  │  ├── ipm_imx
│  │  │  │  │  │ README.rst
│  │  │  │  ├── ipm_mcux
│  │  │  │  │  │ README.rst
│  │  │  ├── jesd216
│  │  │  │  │ sample.yaml
│  │  │  ├── kscan
│  │  │  │  ├── src
│  │  │  │  │  │ main.c
│  │  │  ├── led
│  │  │  │  ├── is31fl3216a
│  │  │  │  │  │ README.rst
│  │  │  │  ├── is31fl3733
│  │  │  │  │  │ README.rst
│  │  │  │  ├── led_strip
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── adafruit_qt_py_esp32s3_procpu.conf
│  │  │  │  │  │  ├── bbc_microbit.conf
│  │  │  │  │  │  ├── esp32s3_devkitc_procpu.overlay
│  │  │  │  │  │  ├── mimxrt1050_evk_mimxrt1052_hyperflash.overlay
│  │  │  │  │  │  ├── nrf5340dk_nrf5340_cpuapp.overlay
│  │  │  │  │  │  │ thingy52_nrf52832.overlay
│  │  │  │  │  │ sample.yaml
│  │  │  │  ├── lp50xx
│  │  │  │  │  │ README.rst
│  │  │  │  ├── lp5569
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── pca9633
│  │  │  │  │  │ README.rst
│  │  │  │  ├── pwm
│  │  │  │  │  ├── Kconfig
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── boards
│  │  │  │  │  │  ├── frdm_mcxc242.overlay
│  │  │  │  │  │  ├── frdm_mcxc444.overlay
│  │  │  │  │  │  ├── nucleo_l4r5zi.overlay
│  │  │  │  │  │  ├── rpi_pico.conf
│  │  │  │  │  │  ├── rpi_pico.overlay
│  │  │  │  │  │  ├── rpi_pico2_rp2350a_m33.conf
│  │  │  │  │  │  ├── rpi_pico2_rp2350a_m33.overlay
│  │  │  │  │  │  │ stm32f4_disco.overlay
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── sx1509b_intensity
│  │  │  │  │  │ prj.conf
│  │  │  ├── lora
│  │  │  │  ├── receive
│  │  │  │  │  ├── README.rst
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  ├── send
│  │  │  │  │  ├── prj.conf
│  │  │  │  │  │ sample.yaml
│  │  │  ├── mbox
│  │  │  │  ├── boards
│  │  │  │  │  ├── adp_xc7k_ae350.conf
│  │  │  │  │  │ adp_xc7k_ae350.overlay
│  ├── cmake
│  │  ├── compiler
│  │  │  ├── arcmwdt
│  │  │  │  │ compiler_flags.cmake
│  │  │  ├── compiler_flags_template.cmake
│  │  │  ├── gcc
│  │  │  │  ├── compiler_flags.cmake
│  │  │  │  ├── target_arc.cmake
│  │  │  │  ├── target_riscv.cmake
│  │  │  │  │ target_xtensa.cmake
│  │  │  ├── xcc
│  │  │  │  ├── compiler_flags.cmake
│  │  │  │  ├── generic.cmake
│  │  │  │  │ target.cmake
│  │  │  ├── xt-clang
│  │  │  │  │ target.cmake
│  │  ├── emu
│  │  │  ├── qemu.cmake
│  │  │  │ simics.cmake
│  │  ├── flash
│  │  │  │ CMakeLists.txt
│  │  ├── hex.cmake
│  │  ├── linker
│  │  │  ├── arcmwdt
│  │  │  │  │ target.cmake
│  │  │  ├── armlink
│  │  │  │  │ target.cmake
│  │  │  ├── ld
│  │  │  │  ├── linker_flags.cmake
│  │  │  │  ├── linker_libraries.cmake
│  │  │  │  ├── target.cmake
│  │  │  │  │ target_relocation.cmake
│  │  │  ├── linker_libraries_native.cmake
│  │  │  ├── linker_script_common.cmake
│  │  │  ├── lld
│  │  │  │  ├── linker_flags.cmake
│  │  │  │  │ linker_libraries.cmake
│  │  │  ├── xt-ld
│  │  │  │  ├── linker_flags.cmake
│  │  │  │  ├── linker_libraries.cmake
│  │  │  │  │ target.cmake
│  │  ├── linker_script
│  │  │  ├── arm
│  │  │  │  │ linker.cmake
│  │  │  ├── common
│  │  │  │  │ common-ram.cmake
│  │  ├── mcuboot.cmake
│  │  ├── modules
│  │  │  ├── FindHostTools.cmake
│  │  │  ├── FindZephyr-sdk.cmake
│  │  │  ├── dts.cmake
│  │  │  ├── extensions.cmake
│  │  │  ├── kconfig.cmake
│  │  │  ├── pre_dt.cmake
│  │  │  ├── python.cmake
│  │  │  ├── root.cmake
│  │  │  ├── snippets.cmake
│  │  │  ├── unittest.cmake
│  │  │  │ yaml.cmake
│  │  ├── reports
│  │  │  │ CMakeLists.txt
│  │  ├── sca
│  │  │  ├── eclair
│  │  │  │  ├── ECL
│  │  │  │  │  ├── adopted_code.ecl
│  │  │  │  │  ├── adopted_deviations.ecl
│  │  │  │  │  ├── analysis.ecl
│  │  │  │  │  ├── analysis_HIS.ecl
│  │  │  │  │  ├── analysis_STU.ecl
│  │  │  │  │  ├── analysis_WP.ecl
│  │  │  │  │  ├── analysis_first_analysis.ecl
│  │  │  │  │  ├── analysis_heavy_STU.ecl
│  │  │  │  │  ├── analysis_std_lib.ecl
│  │  │  │  │  ├── call_properties.ecl
│  │  │  │  │  ├── db_generation.ecl
│  │  │  │  │  ├── extra.ecl
│  │  │  │  │  ├── language_extensions.ecl
│  │  │  │  │  ├── out_of_initial_scope.ecl
│  │  │  │  │  ├── toolchain.ecl
│  │  │  │  │  │ zephyr_common_config.ecl
│  │  │  │  ├── eclair.template
│  │  │  │  ├── sca.cmake
│  │  │  │  │ sca_options.cmake
│  │  │  ├── polyspace
│  │  │  │  ├── polyspace-print-console.py
│  │  │  │  ├── sca.cmake
│  │  │  │  │ zephyr.psopts
│  │  ├── target_toolchain_flags.cmake
│  │  ├── toolchain
│  │  │  ├── xcc
│  │  │  │  ├── common.cmake
│  │  │  │  │ generic.cmake
│  │  │  ├── xt-clang
│  │  │  │  │ generic.cmake
│  ├── doc
│  │  ├── CMakeLists.txt
│  │  ├── LICENSING.rst
│  │  ├── _extensions
│  │  │  ├── zephyr
│  │  │  │  ├── api_overview.py
│  │  │  │  ├── application.py
│  │  │  │  ├── domain
│  │  │  │  │  ├── __init__.py
│  │  │  │  │  ├── static
│  │  │  │  │  │  ├── css
│  │  │  │  │  │  │  │ board-catalog.css
│  │  │  │  │  │  ├── js
│  │  │  │  │  │  │  │ board-catalog.js
│  │  │  │  │  ├── templates
│  │  │  │  │  │  ├── board-card.html
│  │  │  │  │  │  │ board-catalog.html
│  │  │  │  ├── doxybridge.py
│  │  │  │  ├── doxyrunner.py
│  │  │  │  ├── doxytooltip
│  │  │  │  │  │ __init__.py
│  │  │  │  ├── external_content.py
│  │  │  │  ├── gh_utils.py
│  │  │  │  ├── kconfig
│  │  │  │  │  │ __init__.py
│  │  │  │  ├── link-roles.py
│  │  │  │  │ manifest_projects_table.py
│  │  ├── _scripts
│  │  │  ├── gen_boards_catalog.py
│  │  │  ├── gen_devicetree_rest.py
│  │  │  ├── gen_helpers.py
│  │  │  │ redirects.py
│  │  ├── _static
│  │  │  ├── css
│  │  │  │  │ custom.css
│  │  │  ├── js
│  │  │  │  ├── custom.js
│  │  │  │  ├── dark-mode-toggle-stylesheets-loader.min.js
│  │  │  │  │ dark-mode-toggle.min.mjs
│  │  ├── _templates
│  │  │  ├── breadcrumbs.html
│  │  │  │ layout.html
│  │  ├── build
│  │  │  ├── dts
│  │  │  │  ├── api-usage.rst
│  │  │  │  ├── api
│  │  │  │  │  │ api.rst
│  │  │  │  ├── bindings-syntax.rst
│  │  │  │  ├── bindings-upstream.rst
│  │  │  │  ├── howtos.rst
│  │  │  │  │ intro-syntax-structure.rst
│  │  │  ├── index.rst
│  │  │  ├── kconfig
│  │  │  │  ├── preprocessor-functions.rst
│  │  │  │  │ setting.rst
│  │  │  ├── signing
│  │  │  │  │ index.rst
│  │  │  ├── snippets
│  │  │  │  │ writing.rst
│  │  │  ├── sysbuild
│  │  │  │  │ index.rst
│  │  ├── conf.py
│  │  ├── connectivity
│  │  │  ├── bluetooth
│  │  │  │  ├── api
│  │  │  │  │  ├── audio
│  │  │  │  │  │  ├── bluetooth-le-audio-arch.rst
│  │  │  │  │  │  ├── coordinated_sets.rst
│  │  │  │  │  │  ├── media.rst
│  │  │  │  │  │  ├── microphone.rst
│  │  │  │  │  │  ├── shell
│  │  │  │  │  │  │  │ ccp.rst
│  │  │  │  │  │  │ volume.rst
│  │  │  │  │  ├── hci_drivers.rst
│  │  │  │  │  ├── index.rst
│  │  │  │  │  ├── mesh
│  │  │  │  │  │  ├── brg_cfg.rst
│  │  │  │  │  │  │ shell.rst
│  │  │  │  ├── autopts
│  │  │  │  │  ├── autopts-linux.rst
│  │  │  │  │  ├── pts_automation_window.png
│  │  │  │  │  ├── virtualbox_nat_1.png
│  │  │  │  │  ├── virtualbox_nat_2.png
│  │  │  │  │  ├── virtualbox_static_ip_1.png
│  │  │  │  │  │ virtualbox_static_ip_2.png
│  │  │  │  ├── bluetooth-arch.rst
│  │  │  │  ├── bluetooth-ctlr-arch.rst
│  │  │  │  ├── bluetooth-le-host.rst
│  │  │  │  ├── bluetooth-shell.rst
│  │  │  │  ├── shell
│  │  │  │  │  ├── audio
│  │  │  │  │  │  ├── bap.rst
│  │  │  │  │  │  ├── bap_broadcast_assistant.rst
│  │  │  │  │  │  ├── bap_scan_delegator.rst
│  │  │  │  │  │  ├── cap.rst
│  │  │  │  │  │  ├── ccp.rst
│  │  │  │  │  │  ├── csip.rst
│  │  │  │  │  │  ├── gmap.rst
│  │  │  │  │  │  ├── mcp.rst
│  │  │  │  │  │  ├── pbp.rst
│  │  │  │  │  │  ├── tbs.rst
│  │  │  │  │  │  │ tmap.rst
│  │  │  │  │  ├── classic
│  │  │  │  │  │  │ a2dp.rst
│  │  │  │  │  ├── host
│  │  │  │  │  │  ├── gap.rst
│  │  │  │  │  │  ├── gatt.rst
│  │  │  │  │  │  ├── iso.rst
│  │  │  │  │  │  │ l2cap.rst
│  │  │  ├── networking
│  │  │  │  ├── api
│  │  │  │  │  ├── coap_server.rst
│  │  │  │  │  ├── gptp.rst
│  │  │  │  │  ├── http_server.rst
│  │  │  │  │  ├── mqtt_sn.rst
│  │  │  │  │  ├── thread.rst
│  │  │  │  │  │ wifi.rst
│  │  │  │  ├── net_config_guide.rst
│  │  │  │  │ network_tracing.rst
│  │  │  ├── usb
│  │  │  │  ├── device
│  │  │  │  │  │ usb_device.rst
│  │  ├── contribute
│  │  │  ├── bin_blobs.rst
│  │  │  ├── contributor_expectations.rst
│  │  │  ├── documentation
│  │  │  │  ├── generation.rst
│  │  │  │  │ guidelines.rst
│  │  │  │ guidelines.rst
│  │  ├── develop
│  │  │  ├── flash_debug
│  │  │  │  ├── host-tools.rst
│  │  │  │  │ probes.rst
│  │  │  ├── getting_started
│  │  │  │  │ index.rst
│  │  │  ├── modules.rst
│  │  │  ├── sca
│  │  │  │  ├── eclair.rst
│  │  │  │  ├── index.rst
│  │  │  │  │ polyspace.rst
│  │  │  ├── test
│  │  │  │  ├── figures
│  │  │  │  │  │ twister_test_project.svg
│  │  │  │  ├── index.rst
│  │  │  │  ├── pytest.rst
│  │  │  │  ├── twister.rst
│  │  │  │  ├── twister
│  │  │  │  │  │ sample_blackbox_test.py
│  │  │  │  ├── twister_statuses.rst
│  │  │  │  ├── ztest.rst
│  │  │  │  │ ztest_deprecated.rst
│  │  │  ├── toolchains
│  │  │  │  │ cadence_xcc.rst
│  │  │  ├── tools
│  │  │  │  ├── clion.rst
│  │  │  │  ├── img
│  │  │  │  │  ├── stm32cube_add_include.webp
│  │  │  │  │  ├── stm32cube_autoconf_h.webp
│  │  │  │  │  ├── stm32cube_new_cmake.webp
│  │  │  │  │  ├── stm32cube_preprocessor_include.webp
│  │  │  │  │  │ stm32cube_project_properties.webp
│  │  │  │  ├── index.rst
│  │  │  │  │ stm32cubeide.rst
│  │  │  ├── west
│  │  │  │  ├── alias.rst
│  │  │  │  ├── build-flash-debug.rst
│  │  │  │  ├── config.rst
│  │  │  │  ├── extensions.rst
│  │  │  │  ├── index.rst
│  │  │  │  ├── sign.rst
│  │  │  │  │ zephyr-cmds.rst
│  │  ├── hardware
│  │  │  ├── arch
│  │  │  │  ├── arc-support-status.rst
│  │  │  │  ├── arm-scmi.rst
│  │  │  │  │ arm_cortex_m.rst
│  │  │  ├── cache
│  │  │  │  ├── guide.rst
│  │  │  │  │ index.rst
│  │  │  ├── emulator
│  │  │  │  │ bus_emulators.rst
│  │  │  ├── index.rst
│  │  │  ├── peripherals
│  │  │  │  ├── can
│  │  │  │  │  │ shell.rst
│  │  │  │  ├── comparator.rst
│  │  │  │  ├── dma.rst
│  │  │  │  ├── mipi_dbi.rst
│  │  │  │  ├── stepper.rst
│  │  │  │  │ w1.rst
│  │  │  ├── porting
│  │  │  │  ├── board_porting.rst
│  │  │  │  ├── shields.rst
│  │  │  │  │ soc_porting.rst
│  │  ├── index.rst
│  │  ├── kernel
│  │  │  ├── data_structures
│  │  │  │  │ index.rst
│  │  │  ├── drivers
│  │  │  │  │ index.rst
│  │  │  ├── iterable_sections
│  │  │  │  │ index.rst
│  │  │  ├── memory_management
│  │  │  │  ├── demand_paging.rst
│  │  │  │  │ heap.rst
│  │  │  ├── services
│  │  │  │  ├── data_passing
│  │  │  │  │  │ message_queues.rst
│  │  │  │  ├── other
│  │  │  │  │  │ thread_local_storage.rst
│  │  │  ├── usermode
│  │  │  │  │ memory_domain.rst
│  │  ├── project
│  │  │  ├── project_roles.rst
│  │  │  ├── release_process.rst
│  │  │  │ working_groups.rst
│  │  ├── releases
│  │  │  ├── eol_releases.rst
│  │  │  ├── index.rst
│  │  │  ├── migration-guide-4.0.rst
│  │  │  ├── migration-guide-4.1.rst
│  │  │  ├── release-notes-3.4.rst
│  │  │  ├── release-notes-3.7.rst
│  │  │  ├── release-notes-4.0.rst
│  │  │  │ release-notes-4.1.rst
│  │  ├── requirements.txt
│  │  ├── safety
│  │  │  ├── images
│  │  │  │  │ IEC-61508-basis.svg
│  │  │  │ safety_overview.rst
│  │  ├── security
│  │  │  │ vulnerabilities.rst
│  │  ├── services
│  │  │  ├── binary_descriptors
│  │  │  │  │ index.rst
│  │  │  ├── debugging
│  │  │  │  ├── coredump.rst
│  │  │  │  ├── cs_trace_defmt.rst
│  │  │  │  │ thread-analyzer.rst
│  │  │  ├── device_mgmt
│  │  │  │  ├── mcumgr.rst
│  │  │  │  ├── smp_groups
│  │  │  │  │  │ smp_group_1.rst
│  │  │  │  │ smp_transport.rst
│  │  │  ├── index.rst
│  │  │  ├── llext
│  │  │  │  │ index.rst
│  │  │  ├── logging
│  │  │  │  │ cs_stm.rst
│  │  │  ├── mem_mgmt
│  │  │  │  │ index.rst
│  │  │  ├── portability
│  │  │  │  ├── posix
│  │  │  │  │  ├── aep
│  │  │  │  │  │  │ index.rst
│  │  │  │  │  ├── conformance
│  │  │  │  │  │  │ index.rst
│  │  │  │  │  ├── kconfig
│  │  │  │  │  │  │ index.rst
│  │  │  │  │  ├── option_groups
│  │  │  │  │  │  │ index.rst
│  │  │  ├── retention
│  │  │  │  │ blinfo.rst
│  │  │  ├── secure_storage.rst
│  │  │  ├── serialization
│  │  │  │  │ nanopb.rst
│  │  │  ├── settings
│  │  │  │  │ index.rst
│  │  │  ├── shell
│  │  │  │  ├── images
│  │  │  │  │  │ putty_rtt.png
│  │  │  │  │ index.rst
│  │  │  ├── smf
│  │  │  │  │ index.rst
│  │  │  ├── storage
│  │  │  │  ├── disk
│  │  │  │  │  │ access.rst
│  │  │  │  ├── zms
│  │  │  │  │  │ zms.rst
│  │  │  ├── tfm
│  │  │  │  ├── build.rst
│  │  │  │  ├── index.rst
│  │  │  │  ├── integration.rst
│  │  │  │  ├── overview.rst
│  │  │  │  │ requirements.rst
│  │  │  ├── tracing
│  │  │  │  │ index.rst
│  │  │  ├── zbus
│  │  │  │  │ index.rst
│  │  ├── templates
│  │  │  │ board.tmpl
│  │  │ zephyr.doxyfile.in
│  │ west.yml
.github
│  ├── workflows
│  │  │ docbuild.yml
CODEOWNERS
Kconfig.nrf
applications
│  ├── asset_tracker_v2
│  │  │ overlay-lwm2m.conf
│  ├── connectivity_bridge
│  │  ├── boards
│  │  │  ├── thingy91_nrf52840.conf
│  │  │  │ thingy91x_nrf5340_cpuapp.conf
│  │  ├── src
│  │  │  ├── modules
│  │  │  │  │ ble_handler.c
│  ├── machine_learning
│  │  ├── sysbuild
│  │  │  ├── mcuboot
│  │  │  │  ├── boards
│  │  │  │  │  │ thingy53_nrf5340_cpuapp.conf
│  ├── matter_bridge
│  │  ├── boards
│  │  │  │ nrf5340dk_nrf5340_cpuapp.overlay
│  ├── matter_weather_station
│  │  │ app.overlay
│  ├── nrf5340_audio
│  │  ├── Kconfig
│  │  ├── broadcast_sink
│  │  │  ├── Kconfig.defaults
│  │  │  │ overlay-broadcast_sink.conf
│  │  ├── broadcast_source
│  │  │  │ overlay-broadcast_source.conf
│  │  ├── prj.conf
│  │  ├── sample.yaml
│  │  ├── src
│  │  │  ├── bluetooth
│  │  │  │  ├── bt_management
│  │  │  │  │  ├── bt_mgmt.h
│  │  │  │  │  ├── dfu
│  │  │  │  │  │  │ bt_mgmt_dfu.c
│  │  │  │  │  ├── scanning
│  │  │  │  │  │  │ bt_mgmt_scan_for_broadcast.c
│  │  │  │  ├── bt_stream
│  │  │  │  │  ├── broadcast
│  │  │  │  │  │  │ broadcast_source.c
│  │  │  │  │  ├── le_audio.h
│  │  │  │  │  ├── unicast
│  │  │  │  │  │  ├── Kconfig.defaults
│  │  │  │  │  │  ├── unicast_client.c
│  │  │  │  │  │  │ unicast_server.c
│  │  ├── tools
│  │  │  ├── buildprog
│  │  │  │  ├── buildprog.py
│  │  │  │  │ nrf5340_audio_dk_devices.py
│  │  ├── unicast_client
│  │  │  ├── Kconfig.defaults
│  │  │  │ overlay-unicast_client.conf
│  │  ├── unicast_server
│  │  │  ├── Kconfig.defaults
│  │  │  │ overlay-unicast_server.conf
│  ├── nrf_desktop
│  │  ├── Kconfig.ble
│  │  ├── configuration
│  │  │  ├── nrf52840dk_nrf52840
│  │  │  │  ├── prj.conf
│  │  │  │  ├── prj_fast_pair.conf
│  │  │  │  ├── prj_keyboard.conf
│  │  │  │  ├── prj_mcuboot_qspi.conf
│  │  │  │  ├── prj_release.conf
│  │  │  │  │ prj_wwcb.conf
│  │  │  ├── nrf52840dongle_nrf52840
│  │  │  │  │ app.overlay
│  │  │  ├── nrf52840gmouse_nrf52840
│  │  │  │  ├── prj.conf
│  │  │  │  ├── prj_fast_pair.conf
│  │  │  │  ├── prj_release.conf
│  │  │  │  │ prj_release_fast_pair.conf
│  │  │  ├── nrf52dmouse_nrf52832
│  │  │  │  ├── prj.conf
│  │  │  │  │ prj_release.conf
│  │  │  ├── nrf52kbd_nrf52832
│  │  │  │  ├── prj.conf
│  │  │  │  │ prj_release.conf
│  │  │  ├── nrf54h20dk_nrf54h20_cpuapp
│  │  │  │  │ prj.conf
│  │  │  ├── nrf54l15dk_nrf54l05_cpuapp
│  │  │  │  ├── prj.conf
│  │  │  │  ├── prj_release.conf
│  │  │  │  ├── prj_release_fast_pair.conf
│  │  │  │  │ prj_release_keyboard.conf
│  │  │  ├── nrf54l15dk_nrf54l10_cpuapp
│  │  │  │  ├── prj.conf
│  │  │  │  ├── prj_fast_pair.conf
│  │  │  │  ├── prj_keyboard.conf
│  │  │  │  │ prj_release.conf
│  │  │  ├── nrf54l15dk_nrf54l15_cpuapp
│  │  │  │  ├── prj.conf
│  │  │  │  ├── prj_fast_pair.conf
│  │  │  │  ├── prj_keyboard.conf
│  │  │  │  │ prj_release.conf
│  ├── serial_lte_modem
│  │  ├── boards
│  │  │  ├── nrf9131ek_nrf9131_ns.conf
│  │  │  ├── nrf9151dk_nrf9151_ns.conf
│  │  │  ├── nrf9160dk_nrf9160_ns.conf
│  │  │  ├── nrf9161dk_nrf9161_ns.conf
│  │  │  ├── thingy91_nrf9160_ns.conf
│  │  │  │ thingy91x_nrf9151_ns.conf
│  │  ├── doc
│  │  │  ├── SOCKET_AT_commands.rst
│  │  │  │ slm_description.rst
│  │  ├── overlay-full_fota.conf
│  │  ├── src
│  │  │  ├── gnss
│  │  │  │  │ slm_at_gnss.c
│  │  │  ├── http_c
│  │  │  │  │ slm_at_httpc.c
│  │  │  ├── mqtt_c
│  │  │  │  │ slm_at_mqtt.c
│  │  │  ├── slm_at_fota.c
│  │  │  ├── slm_at_icmp.c
│  │  │  ├── slm_at_socket.c
│  │  │  ├── slm_at_tcp_proxy.c
│  │  │  ├── slm_at_udp_proxy.c
│  │  │  ├── slm_ppp.c
│  │  │  ├── slm_util.c
│  │  │  │ slm_util.h
boards
│  ├── nordic
│  │  ├── nrf52810dmouse
│  │  │  │ Kconfig.defconfig
│  │  ├── nrf52820dongle
│  │  │  │ Kconfig.defconfig
│  │  ├── nrf52833dongle
│  │  │  │ Kconfig.defconfig
│  │  ├── nrf52840gmouse
│  │  │  │ Kconfig.defconfig
│  │  ├── nrf52dmouse
│  │  │  │ Kconfig.defconfig
│  │  ├── nrf52kbd
│  │  │  │ Kconfig.defconfig
│  │  ├── thingy91x
│  │  │  ├── Kconfig
│  │  │  ├── Kconfig.defconfig.nrf5340
│  │  │  ├── nrf5340_shared_sram_planning_conf.dts
│  │  │  ├── thingy91x_common.dtsi
│  │  │  ├── thingy91x_nrf5340_cpuapp_common.dts
│  │  │  ├── thingy91x_nrf5340_cpuapp_ns.dts
│  │  │  ├── thingy91x_nrf5340_cpunet.dts
│  │  │  ├── thingy91x_nrf9151_common.dts
│  │  │  │ thingy91x_nrf9151_ns.dts
bootloader
│  ├── mcuboot
│  │  ├── .github
│  │  │  ├── workflows
│  │  │  │  ├── imgtool.yaml
│  │  │  │  ├── issue.yml
│  │  │  │  ├── issue_closed.yml
│  │  │  │  ├── mynewt.yaml
│  │  │  │  │ zephyr_build.yaml
│  │  ├── CODEOWNERS
│  │  ├── boot
│  │  │  ├── boot_serial
│  │  │  │  ├── src
│  │  │  │  │  ├── boot_serial.c
│  │  │  │  │  │ boot_serial_encryption.c
│  │  │  ├── bootutil
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── include
│  │  │  │  │  ├── bootutil
│  │  │  │  │  │  ├── boot_status.h
│  │  │  │  │  │  ├── crypto
│  │  │  │  │  │  │  │ sha.h
│  │  │  │  │  │  ├── enc_key.h
│  │  │  │  │  │  │ image.h
│  │  │  │  ├── pkg.yml
│  │  │  │  ├── src
│  │  │  │  │  ├── boot_record.c
│  │  │  │  │  ├── bootutil_misc.c
│  │  │  │  │  ├── bootutil_priv.h
│  │  │  │  │  ├── bootutil_public.c
│  │  │  │  │  ├── encrypted.c
│  │  │  │  │  ├── image_ed25519.c
│  │  │  │  │  ├── image_validate.c
│  │  │  │  │  ├── loader.c
│  │  │  │  │  ├── ram_load.c
│  │  │  │  │  ├── swap_move.c
│  │  │  │  │  ├── swap_priv.h
│  │  │  │  │  │ swap_scratch.c
│  │  │  ├── espressif
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── hal
│  │  │  │  │  ├── include
│  │  │  │  │  │  ├── mcuboot_config
│  │  │  │  │  │  │  │ mcuboot_config.h
│  │  │  ├── mynewt
│  │  │  │  │ pkg.yml
│  │  │  ├── zephyr
│  │  │  │  ├── CMakeLists.txt
│  │  │  │  ├── Kconfig
│  │  │  │  ├── Kconfig.serial_recovery
│  │  │  │  ├── boards
│  │  │  │  │  ├── conexio_stratus_pro.conf
│  │  │  │  │  ├── ctcc_nrf52840.conf
│  │  │  │  │  ├── ctcc_nrf9161.conf
│  │  │  │  │  ├── frdm_mcxa156.conf
│  │  │  │  │  ├── frdm_mcxn947_mcxn947_cpu0_qspi.conf
│  │  │  │  │  ├── frdm_mcxn947_mcxn947_cpu0_qspi.overlay
│  │  │  │  │  ├── lpcxpresso55s06_lpc55s06.conf
│  │  │  │  │  ├── lpcxpresso55s16_lpc55s16.conf
│  │  │  │  │  ├── lpcxpresso55s28_lpc55s28.conf
│  │  │  │  │  ├── lpcxpresso55s36_lpc55s36.conf
│  │  │  │  │  ├── lpcxpresso55s69_lpc55s69_cpu0.conf
│  │  │  │  │  ├── mimxrt1010_evk_mimxrt1011.conf
│  │  │  │  │  ├── mimxrt1015_evk_mimxrt1015.conf
│  │  │  │  │  ├── mimxrt1020_evk_mimxrt1021.conf
│  │  │  │  │  ├── mimxrt1024_evk_mimxrt1024.conf
│  │  │  │  │  ├── mimxrt1040_evk_mimxrt1042.conf
│  │  │  │  │  ├── mimxrt1050_evk_mimxrt1052.conf
│  │  │  │  │  ├── mimxrt1060_evk_mimxrt1062.conf
│  │  │  │  │  ├── mimxrt1060_evk_mimxrt1062_cm7.conf
│  │  │  │  │  ├── mimxrt1060_evkb_mimxrt1062.conf
│  │  │  │  │  ├── mimxrt1062_fmurt6.conf
│  │  │  │  │  ├── mimxrt1064_evk_mimxrt1064.conf
│  │  │  │  │  ├── mimxrt1160_evk_mimxrt1166_cm7.conf
│  │  │  │  │  ├── mimxrt1170_evk_mimxrt1176_cm7.conf
│  │  │  │  │  ├── mimxrt595_evk_mimxrt595s_cm33.conf
│  │  │  │  │  ├── mimxrt685_evk_mimxrt685s_cm33.conf
│  │  │  │  │  ├── nrf54l15dk_nrf54l05_cpuapp.conf
│  │  │  │  │  ├── nrf54l15dk_nrf54l10_cpuapp.conf
│  │  │  │  │  ├── nrf54l15dk_nrf54l15_cpuapp.conf
│  │  │  │  │  ├── rd_rw612_bga_rw612.conf
│  │  │  │  │  │ thingy53_nrf5340_cpuapp.conf
│  │  │  │  ├── flash_check.c
│  │  │  │  ├── include
│  │  │  │  │  ├── mcuboot_config
│  │  │  │  │  │  │ mcuboot_config.h
│  │  │  │  │  ├── sysflash
│  │  │  │  │  │  │ pm_sysflash.h
│  │  │  │  ├── main.c
│  │  │  │  ├── sample.yaml
│  │  │  │  ├── single_loader.c
│  │  │  │  ├── targets
│  │  │  │  │  │ arduino_101.h
│  │  │  │  │ usb_cdc_acm_recovery.conf
│  │  ├── ci
│  │  │  ├── mynewt_install.sh
│  │  │  │ mynewt_project.yml
│  │  ├── docs
│  │  │  ├── design.md
│  │  │  ├── release-notes.d
│  │  │  │  ├── compatible-slots.md
│  │  │  │  │ serial-recovery-list.md
│  │  ├── samples
│  │  │  ├── zephyr
│  │  │  │  ├── Makefile
│  │  │  │  ├── hello-world
│  │  │  │  │  ├── sample.yaml
│  │  │  │  │  ├── src
│  │  │  │  │  │  │ main.c
│  │  │  │  │  │ sysbuild.conf
│  │  ├── scripts
│  │  │  ├── imgtool
│  │  │  │  ├── image.py
│  │  │  │  │ main.py
│  │  │  ├── tests
│  │  │  │  │ test_compression.py
│  │  ├── sim
│  │  │  ├── mcuboot-sys
│  │  │  │  │ build.rs

File list hidden for private repositories.
If you have access you can see the diff via the github link.
find-my Diff

Outputs:

Toolchain

Version: 342151af73
Build docker image: docker-dtr.nordicsemi.no/sw-production/ncs-build:342151af73_bbe5b33786

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_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-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-sdk-pmic-samples
    • 🟡 test-sdk-mcuboot
    • 🟡 test-sdk-dfu
    • ✅ test-fw-nrfconnect-ps
    • ❌ test-secdom-samples-public
    • ⚠️ test-fw-nrfconnect-fw-update
    • ⚠️ test-fw-nrfconnect-nrf-iot_cloud
    • ⚠️ test-fw-nrfconnect-nrf-iot_libmodem-nrf
    • ⚠️ test-fw-nrfconnect-proprietary_esb
    • ⚠️ test-sdk-dfu

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ble mesh Label for ble mesh PRbot. Add this if PR is related to ble mesh and you need to get review. DNM doc-required PR must not be merged without tech writer approval. manifest manifest-dragoon manifest-find-my manifest-mcuboot manifest-nrfxlib manifest-sidewalk manifest-zephyr
Projects
None yet
Development

Successfully merging this pull request may close these issues.