├── .checkpatch.conf ├── .gitattributes ├── .github ├── labeler.yml ├── test-spec.yml ├── vale │ ├── README.md │ ├── styles │ │ └── Nordic │ │ │ ├── AMPM.yml_ignored │ │ │ ├── Accessibility.yml │ │ │ ├── Acronyms.yml │ │ │ ├── Adverbs.yml │ │ │ ├── Auto.yml_ignored │ │ │ ├── Avoid.yml │ │ │ ├── Contractions.yml │ │ │ ├── Dashes.yml │ │ │ ├── DateFormat.yml │ │ │ ├── DateNumbers.yml │ │ │ ├── DateOrder.yml │ │ │ ├── Ellipses.yml │ │ │ ├── FirstPerson.yml │ │ │ ├── Foreign.yml │ │ │ ├── Gender.yml │ │ │ ├── GenderBias.yml │ │ │ ├── GeneralURL.yml │ │ │ ├── HeadingAcronyms.yml │ │ │ ├── HeadingColons.yml │ │ │ ├── HeadingPunctuation.yml │ │ │ ├── Headings.yml │ │ │ ├── Hyphens.yml │ │ │ ├── Negative.yml │ │ │ ├── Ordinal.yml │ │ │ ├── OtherSubstitutions.yml_ignored │ │ │ ├── OxfordComma.yml │ │ │ ├── Passive.yml │ │ │ ├── Percentages.yml │ │ │ ├── Plurals.yml │ │ │ ├── Quotes.yml │ │ │ ├── RangeTime.yml │ │ │ ├── Semicolon.yml │ │ │ ├── SentenceLength.yml │ │ │ ├── Spacing.yml │ │ │ ├── Spelling.yml_ignored │ │ │ ├── Suspended.yml │ │ │ ├── Terms.yml │ │ │ ├── URLFormat.yml │ │ │ ├── Units.yml_ignored │ │ │ ├── Vocab.yml │ │ │ ├── We.yml │ │ │ ├── Wordiness.yml │ │ │ └── meta.json │ └── vocab │ │ └── Base │ │ ├── accept.txt │ │ └── reject.txt └── workflows │ ├── backport.yml │ ├── compliance.yml │ ├── dnm.yml │ ├── labeler.yml │ ├── manifest-PR.yml │ ├── stale.yml │ └── vale-lint.yml ├── .gitlint ├── .vale.ini ├── CMakeLists.txt ├── CODEOWNERS ├── Jenkinsfile ├── Kconfig.nrfxlib ├── LICENSE ├── README.rst ├── common.cmake ├── crypto ├── CMakeLists.txt ├── Kconfig ├── README.rst ├── doc │ ├── CHANGELOG_cc310_bl.rst │ ├── CHANGELOG_cc3xx_mbedcrypto.rst │ ├── CHANGELOG_cc3xx_platform.rst │ ├── CHANGELOG_oberon.rst │ ├── api.rst │ ├── nrf_cc310_bl.rst │ ├── nrf_cc3xx_mbedcrypto.rst │ ├── nrf_cc3xx_platform.rst │ └── nrf_oberon.rst ├── nrf_cc310_bl │ ├── include │ │ ├── crys_error.h │ │ ├── nrf_cc310_bl_ecdsa_verify_common.h │ │ ├── nrf_cc310_bl_ecdsa_verify_secp256r1.h │ │ ├── nrf_cc310_bl_hash_common.h │ │ ├── nrf_cc310_bl_hash_sha256.h │ │ ├── nrf_cc310_bl_init.h │ │ ├── ssi_pal_types.h │ │ └── ssi_pal_types_plat.h │ ├── lib │ │ ├── cortex-m33 │ │ │ ├── hard-float │ │ │ │ ├── libnrf_cc310_bl_0.9.12.a │ │ │ │ ├── no-interrupts │ │ │ │ │ └── libnrf_cc310_bl_0.9.12.a │ │ │ │ └── short-wchar │ │ │ │ │ ├── libnrf_cc310_bl_0.9.12.a │ │ │ │ │ ├── no-interrupts │ │ │ │ │ ├── libnrf_cc310_bl_0.9.12.a │ │ │ │ │ └── nrf_cc310_bl_0.9.12.lib │ │ │ │ │ └── nrf_cc310_bl_0.9.12.lib │ │ │ └── soft-float │ │ │ │ ├── libnrf_cc310_bl_0.9.12.a │ │ │ │ ├── no-interrupts │ │ │ │ └── libnrf_cc310_bl_0.9.12.a │ │ │ │ └── short-wchar │ │ │ │ ├── libnrf_cc310_bl_0.9.12.a │ │ │ │ ├── no-interrupts │ │ │ │ ├── libnrf_cc310_bl_0.9.12.a │ │ │ │ └── nrf_cc310_bl_0.9.12.lib │ │ │ │ └── nrf_cc310_bl_0.9.12.lib │ │ ├── cortex-m4 │ │ │ ├── hard-float │ │ │ │ ├── libnrf_cc310_bl_0.9.12.a │ │ │ │ ├── no-interrupts │ │ │ │ │ └── libnrf_cc310_bl_0.9.12.a │ │ │ │ └── short-wchar │ │ │ │ │ ├── libnrf_cc310_bl_0.9.12.a │ │ │ │ │ ├── no-interrupts │ │ │ │ │ ├── libnrf_cc310_bl_0.9.12.a │ │ │ │ │ └── nrf_cc310_bl_0.9.12.lib │ │ │ │ │ └── nrf_cc310_bl_0.9.12.lib │ │ │ └── soft-float │ │ │ │ ├── libnrf_cc310_bl_0.9.12.a │ │ │ │ ├── no-interrupts │ │ │ │ └── libnrf_cc310_bl_0.9.12.a │ │ │ │ └── short-wchar │ │ │ │ ├── libnrf_cc310_bl_0.9.12.a │ │ │ │ ├── no-interrupts │ │ │ │ ├── libnrf_cc310_bl_0.9.12.a │ │ │ │ └── nrf_cc310_bl_0.9.12.lib │ │ │ │ └── nrf_cc310_bl_0.9.12.lib │ │ └── license.txt │ └── license.txt ├── nrf_cc310_mbedcrypto │ ├── include │ │ ├── cc3xx.h │ │ ├── cc3xx_crypto_primitives.h │ │ ├── cc3xx_crypto_primitives_private.h │ │ ├── cc3xx_crypto_primitives_sizes.h │ │ ├── cc3xx_psa_aead.h │ │ ├── cc3xx_psa_asymmetric_encryption.h │ │ ├── cc3xx_psa_asymmetric_signature.h │ │ ├── cc3xx_psa_cipher.h │ │ ├── cc3xx_psa_entropy.h │ │ ├── cc3xx_psa_hash.h │ │ ├── cc3xx_psa_key_agreement.h │ │ ├── cc3xx_psa_key_generation.h │ │ ├── cc3xx_psa_mac.h │ │ ├── mbedtls │ │ │ ├── aes_alt.h │ │ │ ├── cc3xx_kmu.h │ │ │ ├── ccm_alt.h │ │ │ ├── chacha20_alt.h │ │ │ ├── chachapoly_alt.h │ │ │ ├── cmac_alt.h │ │ │ ├── dhm_alt.h │ │ │ ├── ecp_alt.h │ │ │ ├── platform_alt.h │ │ │ ├── poly1305_alt.h │ │ │ ├── rsa_alt.h │ │ │ ├── sha1_alt.h │ │ │ └── sha256_alt.h │ │ ├── mbedtls_extra │ │ │ ├── cc_aes_defs.h │ │ │ ├── cc_aes_defs_proj.h │ │ │ ├── cc_bitops.h │ │ │ ├── cc_ecpki_types.h │ │ │ ├── cc_error.h │ │ │ ├── cc_hash_defs.h │ │ │ ├── cc_hash_defs_proj.h │ │ │ ├── cc_kdf.h │ │ │ ├── cc_pal_compiler.h │ │ │ ├── cc_pal_types.h │ │ │ ├── cc_pal_types_plat.h │ │ │ ├── cc_pka_defs_hw.h │ │ │ ├── cc_rnd_common.h │ │ │ ├── cc_rnd_error.h │ │ │ ├── mbedtls_cc_aes_key_wrap.h │ │ │ ├── mbedtls_cc_aes_key_wrap_error.h │ │ │ ├── mbedtls_cc_ec_mont_edw_error.h │ │ │ ├── mbedtls_cc_ecies.h │ │ │ ├── mbedtls_cc_hkdf.h │ │ │ ├── mbedtls_cc_hkdf_error.h │ │ │ ├── mbedtls_cc_srp.h │ │ │ └── mbedtls_cc_srp_error.h │ │ └── nrf-config-cc310.h │ ├── lib │ │ ├── cortex-m33 │ │ │ ├── hard-float │ │ │ │ ├── libnrf_cc310_core_0.9.19.a │ │ │ │ ├── libnrf_cc310_legacy_crypto_0.9.19.a │ │ │ │ ├── libnrf_cc310_psa_crypto_0.9.19.a │ │ │ │ ├── no-interrupts │ │ │ │ │ ├── libnrf_cc310_core_0.9.19.a │ │ │ │ │ ├── libnrf_cc310_legacy_crypto_0.9.19.a │ │ │ │ │ └── libnrf_cc310_psa_crypto_0.9.19.a │ │ │ │ └── short-wchar │ │ │ │ │ ├── libnrf_cc310_core_0.9.19.a │ │ │ │ │ ├── libnrf_cc310_legacy_crypto_0.9.19.a │ │ │ │ │ ├── libnrf_cc310_psa_crypto_0.9.19.a │ │ │ │ │ └── no-interrupts │ │ │ │ │ ├── libnrf_cc310_core_0.9.19.a │ │ │ │ │ ├── libnrf_cc310_legacy_crypto_0.9.19.a │ │ │ │ │ └── libnrf_cc310_psa_crypto_0.9.19.a │ │ │ └── soft-float │ │ │ │ ├── libnrf_cc310_core_0.9.19.a │ │ │ │ ├── libnrf_cc310_legacy_crypto_0.9.19.a │ │ │ │ ├── libnrf_cc310_psa_crypto_0.9.19.a │ │ │ │ ├── no-interrupts │ │ │ │ ├── libnrf_cc310_core_0.9.19.a │ │ │ │ ├── libnrf_cc310_legacy_crypto_0.9.19.a │ │ │ │ └── libnrf_cc310_psa_crypto_0.9.19.a │ │ │ │ └── short-wchar │ │ │ │ ├── libnrf_cc310_core_0.9.19.a │ │ │ │ ├── libnrf_cc310_legacy_crypto_0.9.19.a │ │ │ │ ├── libnrf_cc310_psa_crypto_0.9.19.a │ │ │ │ └── no-interrupts │ │ │ │ ├── libnrf_cc310_core_0.9.19.a │ │ │ │ ├── libnrf_cc310_legacy_crypto_0.9.19.a │ │ │ │ └── libnrf_cc310_psa_crypto_0.9.19.a │ │ └── cortex-m4 │ │ │ ├── hard-float │ │ │ ├── libnrf_cc310_core_0.9.19.a │ │ │ ├── libnrf_cc310_legacy_crypto_0.9.19.a │ │ │ ├── libnrf_cc310_psa_crypto_0.9.19.a │ │ │ ├── no-interrupts │ │ │ │ ├── libnrf_cc310_core_0.9.19.a │ │ │ │ ├── libnrf_cc310_legacy_crypto_0.9.19.a │ │ │ │ └── libnrf_cc310_psa_crypto_0.9.19.a │ │ │ └── short-wchar │ │ │ │ ├── libnrf_cc310_core_0.9.19.a │ │ │ │ ├── libnrf_cc310_legacy_crypto_0.9.19.a │ │ │ │ ├── libnrf_cc310_psa_crypto_0.9.19.a │ │ │ │ └── no-interrupts │ │ │ │ ├── libnrf_cc310_core_0.9.19.a │ │ │ │ ├── libnrf_cc310_legacy_crypto_0.9.19.a │ │ │ │ └── libnrf_cc310_psa_crypto_0.9.19.a │ │ │ └── soft-float │ │ │ ├── libnrf_cc310_core_0.9.19.a │ │ │ ├── libnrf_cc310_legacy_crypto_0.9.19.a │ │ │ ├── libnrf_cc310_psa_crypto_0.9.19.a │ │ │ ├── no-interrupts │ │ │ ├── libnrf_cc310_core_0.9.19.a │ │ │ ├── libnrf_cc310_legacy_crypto_0.9.19.a │ │ │ └── libnrf_cc310_psa_crypto_0.9.19.a │ │ │ └── short-wchar │ │ │ ├── libnrf_cc310_core_0.9.19.a │ │ │ ├── libnrf_cc310_legacy_crypto_0.9.19.a │ │ │ ├── libnrf_cc310_psa_crypto_0.9.19.a │ │ │ └── no-interrupts │ │ │ ├── libnrf_cc310_core_0.9.19.a │ │ │ ├── libnrf_cc310_legacy_crypto_0.9.19.a │ │ │ └── libnrf_cc310_psa_crypto_0.9.19.a │ └── license.txt ├── nrf_cc310_platform │ ├── include │ │ ├── nrf_cc3xx_platform.h │ │ ├── nrf_cc3xx_platform_abort.h │ │ ├── nrf_cc3xx_platform_ctr_drbg.h │ │ ├── nrf_cc3xx_platform_defines.h │ │ ├── nrf_cc3xx_platform_derived_key.h │ │ ├── nrf_cc3xx_platform_entropy.h │ │ ├── nrf_cc3xx_platform_hmac_drbg.h │ │ ├── nrf_cc3xx_platform_identity_key.h │ │ ├── nrf_cc3xx_platform_kmu.h │ │ ├── nrf_cc3xx_platform_mutex.h │ │ ├── nrf_cc3xx_platform_sha256.h │ │ ├── nrf_cc3xx_platform_shadow_key.h │ │ └── threading_alt.h │ ├── lib │ │ ├── cortex-m33 │ │ │ ├── hard-float │ │ │ │ ├── libnrf_cc310_platform_0.9.19.a │ │ │ │ ├── no-interrupts │ │ │ │ │ └── libnrf_cc310_platform_0.9.19.a │ │ │ │ └── short-wchar │ │ │ │ │ ├── libnrf_cc310_platform_0.9.19.a │ │ │ │ │ └── no-interrupts │ │ │ │ │ └── libnrf_cc310_platform_0.9.19.a │ │ │ └── soft-float │ │ │ │ ├── libnrf_cc310_platform_0.9.19.a │ │ │ │ ├── no-interrupts │ │ │ │ └── libnrf_cc310_platform_0.9.19.a │ │ │ │ └── short-wchar │ │ │ │ ├── libnrf_cc310_platform_0.9.19.a │ │ │ │ └── no-interrupts │ │ │ │ └── libnrf_cc310_platform_0.9.19.a │ │ └── cortex-m4 │ │ │ ├── hard-float │ │ │ ├── libnrf_cc310_platform_0.9.19.a │ │ │ ├── no-interrupts │ │ │ │ └── libnrf_cc310_platform_0.9.19.a │ │ │ └── short-wchar │ │ │ │ ├── libnrf_cc310_platform_0.9.19.a │ │ │ │ └── no-interrupts │ │ │ │ └── libnrf_cc310_platform_0.9.19.a │ │ │ └── soft-float │ │ │ ├── libnrf_cc310_platform_0.9.19.a │ │ │ ├── no-interrupts │ │ │ └── libnrf_cc310_platform_0.9.19.a │ │ │ └── short-wchar │ │ │ ├── libnrf_cc310_platform_0.9.19.a │ │ │ └── no-interrupts │ │ │ └── libnrf_cc310_platform_0.9.19.a │ ├── license.txt │ └── src │ │ ├── nrf_cc3xx_platform_abort_freertos.c │ │ ├── nrf_cc3xx_platform_abort_zephyr.c │ │ ├── nrf_cc3xx_platform_mutex_freertos.c │ │ ├── nrf_cc3xx_platform_mutex_zephyr.c │ │ └── nrf_cc3xx_platform_no_mutex_zephyr.c ├── nrf_cc312_mbedcrypto │ ├── include │ │ ├── cc3xx.h │ │ ├── cc3xx_crypto_primitives.h │ │ ├── cc3xx_crypto_primitives_private.h │ │ ├── cc3xx_crypto_primitives_sizes.h │ │ ├── cc3xx_psa_aead.h │ │ ├── cc3xx_psa_asymmetric_encryption.h │ │ ├── cc3xx_psa_asymmetric_signature.h │ │ ├── cc3xx_psa_cipher.h │ │ ├── cc3xx_psa_entropy.h │ │ ├── cc3xx_psa_hash.h │ │ ├── cc3xx_psa_key_agreement.h │ │ ├── cc3xx_psa_key_generation.h │ │ ├── cc3xx_psa_mac.h │ │ ├── mbedtls │ │ │ ├── aes_alt.h │ │ │ ├── cc3xx_kmu.h │ │ │ ├── ccm_alt.h │ │ │ ├── chacha20_alt.h │ │ │ ├── chachapoly_alt.h │ │ │ ├── cmac_alt.h │ │ │ ├── dhm_alt.h │ │ │ ├── ecp_alt.h │ │ │ ├── gcm_alt.h │ │ │ ├── platform_alt.h │ │ │ ├── poly1305_alt.h │ │ │ ├── rsa_alt.h │ │ │ ├── sha1_alt.h │ │ │ └── sha256_alt.h │ │ ├── mbedtls_extra │ │ │ ├── cc_aes_defs.h │ │ │ ├── cc_aes_defs_proj.h │ │ │ ├── cc_bitops.h │ │ │ ├── cc_ecpki_types.h │ │ │ ├── cc_error.h │ │ │ ├── cc_hash_defs.h │ │ │ ├── cc_hash_defs_proj.h │ │ │ ├── cc_kdf.h │ │ │ ├── cc_pal_compiler.h │ │ │ ├── cc_pal_types.h │ │ │ ├── cc_pal_types_plat.h │ │ │ ├── cc_pka_defs_hw.h │ │ │ ├── cc_rnd_common.h │ │ │ ├── cc_rnd_error.h │ │ │ ├── mbedtls_cc_aes_key_wrap.h │ │ │ ├── mbedtls_cc_aes_key_wrap_error.h │ │ │ ├── mbedtls_cc_ec_mont_edw_error.h │ │ │ ├── mbedtls_cc_ecies.h │ │ │ ├── mbedtls_cc_hkdf.h │ │ │ ├── mbedtls_cc_hkdf_error.h │ │ │ ├── mbedtls_cc_srp.h │ │ │ └── mbedtls_cc_srp_error.h │ │ └── nrf-config-cc312.h │ ├── lib │ │ └── cortex-m33 │ │ │ ├── hard-float │ │ │ ├── libnrf_cc312_core_0.9.19.a │ │ │ ├── libnrf_cc312_legacy_crypto_0.9.19.a │ │ │ ├── libnrf_cc312_psa_crypto_0.9.19.a │ │ │ ├── no-interrupts │ │ │ │ ├── libnrf_cc312_core_0.9.19.a │ │ │ │ ├── libnrf_cc312_legacy_crypto_0.9.19.a │ │ │ │ └── libnrf_cc312_psa_crypto_0.9.19.a │ │ │ └── short-wchar │ │ │ │ ├── libnrf_cc312_core_0.9.19.a │ │ │ │ ├── libnrf_cc312_legacy_crypto_0.9.19.a │ │ │ │ ├── libnrf_cc312_psa_crypto_0.9.19.a │ │ │ │ └── no-interrupts │ │ │ │ ├── libnrf_cc312_core_0.9.19.a │ │ │ │ ├── libnrf_cc312_legacy_crypto_0.9.19.a │ │ │ │ └── libnrf_cc312_psa_crypto_0.9.19.a │ │ │ └── soft-float │ │ │ ├── libnrf_cc312_core_0.9.19.a │ │ │ ├── libnrf_cc312_legacy_crypto_0.9.19.a │ │ │ ├── libnrf_cc312_psa_crypto_0.9.19.a │ │ │ ├── no-interrupts │ │ │ ├── libnrf_cc312_core_0.9.19.a │ │ │ ├── libnrf_cc312_legacy_crypto_0.9.19.a │ │ │ └── libnrf_cc312_psa_crypto_0.9.19.a │ │ │ └── short-wchar │ │ │ ├── libnrf_cc312_core_0.9.19.a │ │ │ ├── libnrf_cc312_legacy_crypto_0.9.19.a │ │ │ ├── libnrf_cc312_psa_crypto_0.9.19.a │ │ │ └── no-interrupts │ │ │ ├── libnrf_cc312_core_0.9.19.a │ │ │ ├── libnrf_cc312_legacy_crypto_0.9.19.a │ │ │ └── libnrf_cc312_psa_crypto_0.9.19.a │ └── license.txt ├── nrf_cc312_platform │ ├── include │ │ ├── nrf_cc3xx_platform.h │ │ ├── nrf_cc3xx_platform_abort.h │ │ ├── nrf_cc3xx_platform_ctr_drbg.h │ │ ├── nrf_cc3xx_platform_defines.h │ │ ├── nrf_cc3xx_platform_derived_key.h │ │ ├── nrf_cc3xx_platform_entropy.h │ │ ├── nrf_cc3xx_platform_hmac_drbg.h │ │ ├── nrf_cc3xx_platform_identity_key.h │ │ ├── nrf_cc3xx_platform_kmu.h │ │ ├── nrf_cc3xx_platform_mutex.h │ │ ├── nrf_cc3xx_platform_sha256.h │ │ ├── nrf_cc3xx_platform_shadow_key.h │ │ └── threading_alt.h │ ├── lib │ │ └── cortex-m33 │ │ │ ├── hard-float │ │ │ ├── libnrf_cc312_platform_0.9.19.a │ │ │ ├── no-interrupts │ │ │ │ └── libnrf_cc312_platform_0.9.19.a │ │ │ └── short-wchar │ │ │ │ ├── libnrf_cc312_platform_0.9.19.a │ │ │ │ └── no-interrupts │ │ │ │ └── libnrf_cc312_platform_0.9.19.a │ │ │ └── soft-float │ │ │ ├── libnrf_cc312_platform_0.9.19.a │ │ │ ├── no-interrupts │ │ │ └── libnrf_cc312_platform_0.9.19.a │ │ │ └── short-wchar │ │ │ ├── libnrf_cc312_platform_0.9.19.a │ │ │ └── no-interrupts │ │ │ └── libnrf_cc312_platform_0.9.19.a │ ├── license.txt │ └── src │ │ ├── nrf_cc3xx_platform_abort_freertos.c │ │ ├── nrf_cc3xx_platform_abort_zephyr.c │ │ ├── nrf_cc3xx_platform_mutex_freertos.c │ │ ├── nrf_cc3xx_platform_mutex_zephyr.c │ │ └── nrf_cc3xx_platform_no_mutex_zephyr.c └── nrf_oberon │ ├── include │ ├── mbedtls │ │ ├── chacha20_alt.h │ │ ├── ecjpake_alt.h │ │ ├── poly1305_alt.h │ │ ├── sha1_alt.h │ │ └── sha256_alt.h │ ├── ocrypto_aes_cbc.h │ ├── ocrypto_aes_cbc_pkcs.h │ ├── ocrypto_aes_ccm.h │ ├── ocrypto_aes_cmac.h │ ├── ocrypto_aes_ctr.h │ ├── ocrypto_aes_eax.h │ ├── ocrypto_aes_ecb.h │ ├── ocrypto_aes_gcm.h │ ├── ocrypto_aes_key.h │ ├── ocrypto_aes_key_wrap.h │ ├── ocrypto_ascon_aead.h │ ├── ocrypto_ascon_hash.h │ ├── ocrypto_chacha20.h │ ├── ocrypto_chacha20_poly1305.h │ ├── ocrypto_constant_time.h │ ├── ocrypto_cshake.h │ ├── ocrypto_curve25519.h │ ├── ocrypto_curve448.h │ ├── ocrypto_curve_p224.h │ ├── ocrypto_curve_p256.h │ ├── ocrypto_doxygen.h │ ├── ocrypto_ecdh_p224.h │ ├── ocrypto_ecdh_p256.h │ ├── ocrypto_ecdh_p256k1.h │ ├── ocrypto_ecdh_p384.h │ ├── ocrypto_ecdh_p521.h │ ├── ocrypto_ecdsa_p224.h │ ├── ocrypto_ecdsa_p256.h │ ├── ocrypto_ecdsa_p256_det_sign.h │ ├── ocrypto_ecdsa_p256k1.h │ ├── ocrypto_ecdsa_p384.h │ ├── ocrypto_ecdsa_p521.h │ ├── ocrypto_ecjpake_p256.h │ ├── ocrypto_ed25519.h │ ├── ocrypto_ed25519ph.h │ ├── ocrypto_ed448.h │ ├── ocrypto_ed448ph.h │ ├── ocrypto_hkdf_sha1.h │ ├── ocrypto_hkdf_sha256.h │ ├── ocrypto_hkdf_sha512.h │ ├── ocrypto_hmac_sha1.h │ ├── ocrypto_hmac_sha256.h │ ├── ocrypto_hmac_sha512.h │ ├── ocrypto_kmac.h │ ├── ocrypto_lms_sha256.h │ ├── ocrypto_lms_shake256.h │ ├── ocrypto_ml_dsa44.h │ ├── ocrypto_ml_dsa65.h │ ├── ocrypto_ml_dsa87.h │ ├── ocrypto_ml_kem1024.h │ ├── ocrypto_ml_kem512.h │ ├── ocrypto_ml_kem768.h │ ├── ocrypto_pbkdf2_cmac_prf128.h │ ├── ocrypto_pbkdf2_sha1.h │ ├── ocrypto_pbkdf2_sha256.h │ ├── ocrypto_poly1305.h │ ├── ocrypto_rsa.h │ ├── ocrypto_rsa_key.h │ ├── ocrypto_rsa_operations.h │ ├── ocrypto_rsa_padding.h │ ├── ocrypto_rsa_primitives.h │ ├── ocrypto_sc_p224.h │ ├── ocrypto_sc_p256.h │ ├── ocrypto_secp160r1.h │ ├── ocrypto_sha1.h │ ├── ocrypto_sha224.h │ ├── ocrypto_sha256.h │ ├── ocrypto_sha3.h │ ├── ocrypto_sha384.h │ ├── ocrypto_sha512.h │ ├── ocrypto_shake.h │ ├── ocrypto_spake2p_p256.h │ ├── ocrypto_srp.h │ ├── ocrypto_srtp.h │ ├── ocrypto_types.h │ ├── ocrypto_types_25519.h │ ├── ocrypto_types_p256.h │ ├── ocrypto_types_srp.h │ ├── ocrypto_wpa3_sae_p256.h │ └── ocrypto_xmss_sha256.h │ ├── lib │ ├── cortex-m0 │ │ └── soft-float │ │ │ ├── liboberon_3.0.17.a │ │ │ ├── liboberon_mbedtls_3.0.17.a │ │ │ └── short-wchar │ │ │ ├── liboberon_3.0.17.a │ │ │ ├── liboberon_mbedtls_3.0.17.a │ │ │ ├── oberon_3.0.17.lib │ │ │ └── oberon_mbedtls_3.0.17.lib │ ├── cortex-m33+nodsp │ │ └── soft-float │ │ │ ├── liboberon_3.0.17.a │ │ │ ├── liboberon_mbedtls_3.0.17.a │ │ │ └── short-wchar │ │ │ ├── liboberon_3.0.17.a │ │ │ ├── liboberon_mbedtls_3.0.17.a │ │ │ ├── oberon_3.0.17.lib │ │ │ └── oberon_mbedtls_3.0.17.lib │ ├── cortex-m33 │ │ ├── hard-float │ │ │ ├── liboberon_3.0.17.a │ │ │ ├── liboberon_mbedtls_3.0.17.a │ │ │ └── short-wchar │ │ │ │ ├── liboberon_3.0.17.a │ │ │ │ ├── liboberon_mbedtls_3.0.17.a │ │ │ │ ├── oberon_3.0.17.lib │ │ │ │ └── oberon_mbedtls_3.0.17.lib │ │ └── soft-float │ │ │ ├── liboberon_3.0.17.a │ │ │ ├── liboberon_mbedtls_3.0.17.a │ │ │ └── short-wchar │ │ │ ├── liboberon_3.0.17.a │ │ │ ├── liboberon_mbedtls_3.0.17.a │ │ │ ├── oberon_3.0.17.lib │ │ │ └── oberon_mbedtls_3.0.17.lib │ ├── cortex-m4 │ │ ├── hard-float │ │ │ ├── liboberon_3.0.17.a │ │ │ ├── liboberon_mbedtls_3.0.17.a │ │ │ └── short-wchar │ │ │ │ ├── liboberon_3.0.17.a │ │ │ │ ├── liboberon_mbedtls_3.0.17.a │ │ │ │ ├── oberon_3.0.17.lib │ │ │ │ └── oberon_mbedtls_3.0.17.lib │ │ └── soft-float │ │ │ ├── liboberon_3.0.17.a │ │ │ ├── liboberon_mbedtls_3.0.17.a │ │ │ └── short-wchar │ │ │ ├── liboberon_3.0.17.a │ │ │ ├── liboberon_mbedtls_3.0.17.a │ │ │ ├── oberon_3.0.17.lib │ │ │ └── oberon_mbedtls_3.0.17.lib │ └── license.txt │ ├── license.txt │ └── nrf_oberon.packsc ├── doc ├── links.txt └── shortcuts.txt ├── gzll ├── CHANGELOG.rst ├── CMakeLists.txt ├── Kconfig ├── README.rst ├── doc │ ├── api.rst │ └── integration_notes.rst ├── include │ ├── nrf_gzll.h │ ├── nrf_gzll_constants.h │ └── nrf_gzll_glue.h └── lib │ ├── nrf52810 │ └── soft-float │ │ └── libgzll.a │ ├── nrf52811 │ └── soft-float │ │ └── libgzll.a │ ├── nrf52820 │ └── soft-float │ │ └── libgzll.a │ ├── nrf52832 │ ├── hard-float │ │ └── libgzll.a │ └── soft-float │ │ └── libgzll.a │ ├── nrf52833 │ ├── hard-float │ │ └── libgzll.a │ └── soft-float │ │ └── libgzll.a │ ├── nrf52840 │ ├── hard-float │ │ └── libgzll.a │ └── soft-float │ │ └── libgzll.a │ └── nrf5340_cpunet │ └── soft-float │ └── libgzll.a ├── lc3 ├── CHANGELOG.rst ├── CMakeLists.txt ├── Kconfig ├── README.rst ├── attribution.txt ├── codec │ └── inc │ │ └── LC3API.h ├── doc │ └── api.rst ├── include │ └── sw_codec_lc3.h ├── lib │ └── cortex-m33 │ │ └── hard-float │ │ └── libLC3.a ├── license.txt ├── platform │ └── os │ │ ├── baremetal │ │ ├── inc │ │ │ └── osal_types.h │ │ └── src │ │ │ └── osal.c │ │ └── inc │ │ ├── osal.h │ │ └── osal_packed.h └── src │ └── sw_codec_lc3.c ├── mpsl ├── CHANGELOG.rst ├── CMakeLists.txt ├── Kconfig ├── LICENSE-ATTRIBUTION.txt ├── README.rst ├── doc │ ├── api.rst │ ├── clock.rst │ ├── cx.rst │ ├── fem.rst │ ├── mpsl.rst │ ├── pic │ │ ├── Architecture_With_RTOS.svg │ │ ├── Architecture_With_RTOS.vsdx │ │ ├── Architecture_Without_RTOS.svg │ │ ├── Architecture_Without_RTOS.vsdx │ │ ├── FEM_sequence_nRF21540.svg │ │ ├── FEM_sequence_nrf21540.puml │ │ ├── FEM_sequence_simple.svg │ │ ├── FEM_sequence_simple.vsdx │ │ ├── FEM_timing_nRF21540.puml │ │ ├── FEM_timing_nRF21540.svg │ │ ├── FEM_timing_simple.svg │ │ ├── FEM_timing_simple.vsdx │ │ ├── cx_3w_timing_param.svg │ │ ├── cx_3w_timing_param.vsdx │ │ ├── radio_notification_two_events.svg │ │ ├── radio_notification_two_events.vsdx │ │ ├── radio_notification_two_events_too_close.svg │ │ ├── radio_notification_two_events_too_close.vsdx │ │ ├── timeslot_blocked.svg │ │ ├── timeslot_blocked.vsdx │ │ ├── timeslot_canceled.svg │ │ ├── timeslot_canceled.vsdx │ │ ├── timeslot_extend.svg │ │ ├── timeslot_extend.vsdx │ │ ├── timeslot_normal.svg │ │ └── timeslot_normal.vsdx │ ├── pm.rst │ ├── timeslot.rst │ └── tx_power_control.rst ├── fem │ ├── CMakeLists.txt │ ├── common │ │ └── lib │ │ │ ├── nrf52 │ │ │ ├── hard-float │ │ │ │ └── libmpsl_fem_common.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ │ └── libmpsl_fem_common.a │ │ │ └── softfp-float │ │ │ │ └── libmpsl_fem_common.a │ │ │ ├── nrf52_bsim │ │ │ ├── manifest.yaml │ │ │ └── soft-float │ │ │ │ └── libmpsl_fem_common.a │ │ │ ├── nrf53 │ │ │ ├── manifest.yaml │ │ │ └── soft-float │ │ │ │ └── libmpsl_fem_common.a │ │ │ ├── nrf53_bsim │ │ │ ├── manifest.yaml │ │ │ └── soft-float │ │ │ │ └── libmpsl_fem_common.a │ │ │ ├── nrf54h │ │ │ ├── hard-float │ │ │ │ └── libmpsl_fem_common.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ │ └── libmpsl_fem_common.a │ │ │ └── softfp-float │ │ │ │ └── libmpsl_fem_common.a │ │ │ ├── nrf54l │ │ │ ├── hard-float │ │ │ │ └── libmpsl_fem_common.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ │ └── libmpsl_fem_common.a │ │ │ └── softfp-float │ │ │ │ └── libmpsl_fem_common.a │ │ │ ├── nrf54l_bsim │ │ │ ├── manifest.yaml │ │ │ └── soft-float │ │ │ │ └── libmpsl_fem_common.a │ │ │ ├── nrf54l_ns │ │ │ ├── hard-float │ │ │ │ └── libmpsl_fem_common.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ │ └── libmpsl_fem_common.a │ │ │ └── softfp-float │ │ │ │ └── libmpsl_fem_common.a │ │ │ └── nrf71 │ │ │ ├── hard-float │ │ │ └── libmpsl_fem_common.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ └── libmpsl_fem_common.a │ │ │ └── softfp-float │ │ │ └── libmpsl_fem_common.a │ ├── include │ │ ├── mpsl_fem_config_common.h │ │ ├── mpsl_fem_config_nrf21540_common.h │ │ ├── mpsl_fem_init.h │ │ ├── mpsl_fem_power_model.h │ │ ├── mpsl_fem_types.h │ │ └── protocol │ │ │ └── mpsl_fem_protocol_api.h │ ├── nrf21540_gpio │ │ ├── include │ │ │ ├── mpsl_fem_config_nrf21540_gpio.h │ │ │ └── protocol │ │ │ │ └── mpsl_fem_nrf21540_gpio_protocol_api.h │ │ └── lib │ │ │ ├── nrf52 │ │ │ ├── hard-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio.a │ │ │ └── softfp-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio.a │ │ │ ├── nrf52_bsim │ │ │ ├── manifest.yaml │ │ │ └── soft-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio.a │ │ │ ├── nrf53 │ │ │ ├── manifest.yaml │ │ │ └── soft-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio.a │ │ │ ├── nrf53_bsim │ │ │ ├── manifest.yaml │ │ │ └── soft-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio.a │ │ │ ├── nrf54h │ │ │ ├── hard-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio.a │ │ │ └── softfp-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio.a │ │ │ ├── nrf54l │ │ │ ├── hard-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio.a │ │ │ └── softfp-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio.a │ │ │ ├── nrf54l_bsim │ │ │ ├── manifest.yaml │ │ │ └── soft-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio.a │ │ │ ├── nrf54l_ns │ │ │ ├── hard-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio.a │ │ │ └── softfp-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio.a │ │ │ └── nrf71 │ │ │ ├── hard-float │ │ │ └── libmpsl_fem_nrf21540_gpio.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ └── libmpsl_fem_nrf21540_gpio.a │ │ │ └── softfp-float │ │ │ └── libmpsl_fem_nrf21540_gpio.a │ ├── nrf21540_gpio_spi │ │ ├── include │ │ │ ├── mpsl_fem_config_nrf21540_gpio_spi.h │ │ │ ├── mpsl_fem_nrf21540_power_model_builtin.h │ │ │ └── protocol │ │ │ │ └── mpsl_fem_nrf21540_gpio_spi_protocol_api.h │ │ └── lib │ │ │ ├── nrf52 │ │ │ ├── hard-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio_spi.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio_spi.a │ │ │ └── softfp-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio_spi.a │ │ │ ├── nrf52_bsim │ │ │ ├── manifest.yaml │ │ │ └── soft-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio_spi.a │ │ │ ├── nrf53 │ │ │ ├── manifest.yaml │ │ │ └── soft-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio_spi.a │ │ │ ├── nrf53_bsim │ │ │ ├── manifest.yaml │ │ │ └── soft-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio_spi.a │ │ │ ├── nrf54h │ │ │ ├── hard-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio_spi.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio_spi.a │ │ │ └── softfp-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio_spi.a │ │ │ ├── nrf54l │ │ │ ├── hard-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio_spi.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio_spi.a │ │ │ └── softfp-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio_spi.a │ │ │ ├── nrf54l_bsim │ │ │ ├── manifest.yaml │ │ │ └── soft-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio_spi.a │ │ │ ├── nrf54l_ns │ │ │ ├── hard-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio_spi.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio_spi.a │ │ │ └── softfp-float │ │ │ │ └── libmpsl_fem_nrf21540_gpio_spi.a │ │ │ └── nrf71 │ │ │ ├── hard-float │ │ │ └── libmpsl_fem_nrf21540_gpio_spi.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ └── libmpsl_fem_nrf21540_gpio_spi.a │ │ │ └── softfp-float │ │ │ └── libmpsl_fem_nrf21540_gpio_spi.a │ ├── nrf2220 │ │ ├── include │ │ │ ├── mpsl_fem_config_nrf2220.h │ │ │ └── protocol │ │ │ │ └── mpsl_fem_nrf2220_protocol_api.h │ │ └── lib │ │ │ ├── nrf52 │ │ │ ├── hard-float │ │ │ │ └── libmpsl_fem_nrf2220.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ │ └── libmpsl_fem_nrf2220.a │ │ │ └── softfp-float │ │ │ │ └── libmpsl_fem_nrf2220.a │ │ │ ├── nrf52_bsim │ │ │ ├── manifest.yaml │ │ │ └── soft-float │ │ │ │ └── libmpsl_fem_nrf2220.a │ │ │ ├── nrf53 │ │ │ ├── manifest.yaml │ │ │ └── soft-float │ │ │ │ └── libmpsl_fem_nrf2220.a │ │ │ ├── nrf53_bsim │ │ │ ├── manifest.yaml │ │ │ └── soft-float │ │ │ │ └── libmpsl_fem_nrf2220.a │ │ │ ├── nrf54h │ │ │ ├── hard-float │ │ │ │ └── libmpsl_fem_nrf2220.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ │ └── libmpsl_fem_nrf2220.a │ │ │ └── softfp-float │ │ │ │ └── libmpsl_fem_nrf2220.a │ │ │ ├── nrf54l │ │ │ ├── hard-float │ │ │ │ └── libmpsl_fem_nrf2220.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ │ └── libmpsl_fem_nrf2220.a │ │ │ └── softfp-float │ │ │ │ └── libmpsl_fem_nrf2220.a │ │ │ ├── nrf54l_bsim │ │ │ ├── manifest.yaml │ │ │ └── soft-float │ │ │ │ └── libmpsl_fem_nrf2220.a │ │ │ ├── nrf54l_ns │ │ │ ├── hard-float │ │ │ │ └── libmpsl_fem_nrf2220.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ │ └── libmpsl_fem_nrf2220.a │ │ │ └── softfp-float │ │ │ │ └── libmpsl_fem_nrf2220.a │ │ │ └── nrf71 │ │ │ ├── hard-float │ │ │ └── libmpsl_fem_nrf2220.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ └── libmpsl_fem_nrf2220.a │ │ │ └── softfp-float │ │ │ └── libmpsl_fem_nrf2220.a │ ├── nrf2240 │ │ ├── include │ │ │ ├── mpsl_fem_config_nrf2240.h │ │ │ └── protocol │ │ │ │ └── mpsl_fem_nrf2240_protocol_api.h │ │ └── lib │ │ │ ├── nrf52 │ │ │ ├── hard-float │ │ │ │ └── libmpsl_fem_nrf2240.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ │ └── libmpsl_fem_nrf2240.a │ │ │ └── softfp-float │ │ │ │ └── libmpsl_fem_nrf2240.a │ │ │ ├── nrf52_bsim │ │ │ ├── manifest.yaml │ │ │ └── soft-float │ │ │ │ └── libmpsl_fem_nrf2240.a │ │ │ ├── nrf53 │ │ │ ├── manifest.yaml │ │ │ └── soft-float │ │ │ │ └── libmpsl_fem_nrf2240.a │ │ │ ├── nrf53_bsim │ │ │ ├── manifest.yaml │ │ │ └── soft-float │ │ │ │ └── libmpsl_fem_nrf2240.a │ │ │ ├── nrf54h │ │ │ ├── hard-float │ │ │ │ └── libmpsl_fem_nrf2240.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ │ └── libmpsl_fem_nrf2240.a │ │ │ └── softfp-float │ │ │ │ └── libmpsl_fem_nrf2240.a │ │ │ ├── nrf54l │ │ │ ├── hard-float │ │ │ │ └── libmpsl_fem_nrf2240.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ │ └── libmpsl_fem_nrf2240.a │ │ │ └── softfp-float │ │ │ │ └── libmpsl_fem_nrf2240.a │ │ │ ├── nrf54l_bsim │ │ │ ├── manifest.yaml │ │ │ └── soft-float │ │ │ │ └── libmpsl_fem_nrf2240.a │ │ │ ├── nrf54l_ns │ │ │ ├── hard-float │ │ │ │ └── libmpsl_fem_nrf2240.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ │ └── libmpsl_fem_nrf2240.a │ │ │ └── softfp-float │ │ │ │ └── libmpsl_fem_nrf2240.a │ │ │ └── nrf71 │ │ │ ├── hard-float │ │ │ └── libmpsl_fem_nrf2240.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ └── libmpsl_fem_nrf2240.a │ │ │ └── softfp-float │ │ │ └── libmpsl_fem_nrf2240.a │ ├── nrf22xx │ │ ├── include │ │ │ └── mpsl_fem_nrf22xx_twi_config_common.h │ │ └── lib │ │ │ ├── nrf52 │ │ │ ├── hard-float │ │ │ │ └── libmpsl_fem_nrf22xx.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ │ └── libmpsl_fem_nrf22xx.a │ │ │ └── softfp-float │ │ │ │ └── libmpsl_fem_nrf22xx.a │ │ │ ├── nrf52_bsim │ │ │ ├── manifest.yaml │ │ │ └── soft-float │ │ │ │ └── libmpsl_fem_nrf22xx.a │ │ │ ├── nrf53 │ │ │ ├── manifest.yaml │ │ │ └── soft-float │ │ │ │ └── libmpsl_fem_nrf22xx.a │ │ │ ├── nrf53_bsim │ │ │ ├── manifest.yaml │ │ │ └── soft-float │ │ │ │ └── libmpsl_fem_nrf22xx.a │ │ │ ├── nrf54h │ │ │ ├── hard-float │ │ │ │ └── libmpsl_fem_nrf22xx.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ │ └── libmpsl_fem_nrf22xx.a │ │ │ └── softfp-float │ │ │ │ └── libmpsl_fem_nrf22xx.a │ │ │ ├── nrf54l │ │ │ ├── hard-float │ │ │ │ └── libmpsl_fem_nrf22xx.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ │ └── libmpsl_fem_nrf22xx.a │ │ │ └── softfp-float │ │ │ │ └── libmpsl_fem_nrf22xx.a │ │ │ ├── nrf54l_bsim │ │ │ ├── manifest.yaml │ │ │ └── soft-float │ │ │ │ └── libmpsl_fem_nrf22xx.a │ │ │ ├── nrf54l_ns │ │ │ ├── hard-float │ │ │ │ └── libmpsl_fem_nrf22xx.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ │ └── libmpsl_fem_nrf22xx.a │ │ │ └── softfp-float │ │ │ │ └── libmpsl_fem_nrf22xx.a │ │ │ └── nrf71 │ │ │ ├── hard-float │ │ │ └── libmpsl_fem_nrf22xx.a │ │ │ ├── manifest.yaml │ │ │ ├── soft-float │ │ │ └── libmpsl_fem_nrf22xx.a │ │ │ └── softfp-float │ │ │ └── libmpsl_fem_nrf22xx.a │ └── simple_gpio │ │ ├── include │ │ └── mpsl_fem_config_simple_gpio.h │ │ └── lib │ │ ├── nrf52 │ │ ├── hard-float │ │ │ └── libmpsl_fem_simple_gpio.a │ │ ├── manifest.yaml │ │ ├── soft-float │ │ │ └── libmpsl_fem_simple_gpio.a │ │ └── softfp-float │ │ │ └── libmpsl_fem_simple_gpio.a │ │ ├── nrf52_bsim │ │ ├── manifest.yaml │ │ └── soft-float │ │ │ └── libmpsl_fem_simple_gpio.a │ │ ├── nrf53 │ │ ├── manifest.yaml │ │ └── soft-float │ │ │ └── libmpsl_fem_simple_gpio.a │ │ ├── nrf53_bsim │ │ ├── manifest.yaml │ │ └── soft-float │ │ │ └── libmpsl_fem_simple_gpio.a │ │ ├── nrf54h │ │ ├── hard-float │ │ │ └── libmpsl_fem_simple_gpio.a │ │ ├── manifest.yaml │ │ ├── soft-float │ │ │ └── libmpsl_fem_simple_gpio.a │ │ └── softfp-float │ │ │ └── libmpsl_fem_simple_gpio.a │ │ ├── nrf54l │ │ ├── hard-float │ │ │ └── libmpsl_fem_simple_gpio.a │ │ ├── manifest.yaml │ │ ├── soft-float │ │ │ └── libmpsl_fem_simple_gpio.a │ │ └── softfp-float │ │ │ └── libmpsl_fem_simple_gpio.a │ │ ├── nrf54l_bsim │ │ ├── manifest.yaml │ │ └── soft-float │ │ │ └── libmpsl_fem_simple_gpio.a │ │ ├── nrf54l_ns │ │ ├── hard-float │ │ │ └── libmpsl_fem_simple_gpio.a │ │ ├── manifest.yaml │ │ ├── soft-float │ │ │ └── libmpsl_fem_simple_gpio.a │ │ └── softfp-float │ │ │ └── libmpsl_fem_simple_gpio.a │ │ └── nrf71 │ │ ├── hard-float │ │ └── libmpsl_fem_simple_gpio.a │ │ ├── manifest.yaml │ │ ├── soft-float │ │ └── libmpsl_fem_simple_gpio.a │ │ └── softfp-float │ │ └── libmpsl_fem_simple_gpio.a ├── include │ ├── mpsl.h │ ├── mpsl_clock.h │ ├── mpsl_cx_abstract_interface.h │ ├── mpsl_ecb.h │ ├── mpsl_hwres.h │ ├── mpsl_hwres_ppi.h │ ├── mpsl_pm.h │ ├── mpsl_pm_config.h │ ├── mpsl_temp.h │ ├── mpsl_timeslot.h │ ├── mpsl_tx_power.h │ ├── nrf_errno.h │ └── protocol │ │ ├── mpsl_cx_protocol_api.h │ │ ├── mpsl_dppi_protocol_api.h │ │ └── mpsl_rtc_protocol_api.h ├── lib │ ├── nrf52 │ │ ├── hard-float │ │ │ └── libmpsl.a │ │ ├── manifest.yaml │ │ ├── soft-float │ │ │ └── libmpsl.a │ │ └── softfp-float │ │ │ └── libmpsl.a │ ├── nrf52_bsim │ │ ├── manifest.yaml │ │ └── soft-float │ │ │ └── libmpsl.a │ ├── nrf53 │ │ ├── manifest.yaml │ │ └── soft-float │ │ │ └── libmpsl.a │ ├── nrf53_bsim │ │ ├── manifest.yaml │ │ └── soft-float │ │ │ └── libmpsl.a │ ├── nrf54h │ │ ├── hard-float │ │ │ └── libmpsl.a │ │ ├── manifest.yaml │ │ ├── soft-float │ │ │ └── libmpsl.a │ │ └── softfp-float │ │ │ └── libmpsl.a │ ├── nrf54l │ │ ├── hard-float │ │ │ └── libmpsl.a │ │ ├── manifest.yaml │ │ ├── soft-float │ │ │ └── libmpsl.a │ │ └── softfp-float │ │ │ └── libmpsl.a │ ├── nrf54l_bsim │ │ ├── manifest.yaml │ │ └── soft-float │ │ │ └── libmpsl.a │ ├── nrf54l_ns │ │ ├── hard-float │ │ │ └── libmpsl.a │ │ ├── manifest.yaml │ │ ├── soft-float │ │ │ └── libmpsl.a │ │ └── softfp-float │ │ │ └── libmpsl.a │ └── nrf71 │ │ ├── hard-float │ │ └── libmpsl.a │ │ ├── manifest.yaml │ │ ├── soft-float │ │ └── libmpsl.a │ │ └── softfp-float │ │ └── libmpsl.a └── license.txt ├── nfc ├── CHANGELOG.rst ├── CMakeLists.txt ├── Kconfig ├── README.rst ├── doc │ ├── integration_notes.rst │ ├── type_2_tag.rst │ └── type_4_tag.rst ├── include │ ├── nfc_platform.h │ ├── nfc_t2t_lib.h │ ├── nfc_t4t_lib.h │ └── nrf_nfc_errno.h ├── lib │ ├── cortex-m33 │ │ ├── hard-float │ │ │ ├── libnfc_t2t.a │ │ │ └── libnfc_t4t.a │ │ └── soft-float │ │ │ ├── libnfc_t2t.a │ │ │ └── libnfc_t4t.a │ └── cortex-m4 │ │ ├── hard-float │ │ ├── libnfc_t2t.a │ │ └── libnfc_t4t.a │ │ └── soft-float │ │ ├── libnfc_t2t.a │ │ └── libnfc_t4t.a ├── license.txt └── src │ └── nfc_nrfx_error_to_nfc.c ├── nrf71_wifi ├── CMakeLists.txt ├── Kconfig └── include │ ├── nrf71_wifi_common.h │ └── nrf71_wifi_ctrl.h ├── nrf_802154 ├── CMakeLists.txt ├── LICENSE ├── README.rst ├── common │ ├── CMakeLists.txt │ ├── include │ │ ├── nrf_802154.h │ │ ├── nrf_802154_assert.h │ │ ├── nrf_802154_callouts.h │ │ ├── nrf_802154_common_utils.h │ │ ├── nrf_802154_compiler.h │ │ ├── nrf_802154_config.h │ │ ├── nrf_802154_config_soc.h │ │ ├── nrf_802154_const.h │ │ ├── nrf_802154_nrfx_addons.h │ │ └── nrf_802154_types.h │ └── src │ │ └── nrf_802154_common_utils.c ├── doc │ ├── CHANGELOG.rst │ ├── antenna_diversity.rst │ ├── api.rst │ ├── architecture.rst │ ├── feature_description.rst │ ├── hardware_resources.rst │ ├── images │ │ ├── ant_diversity_energy_detection.svg │ │ ├── ant_diversity_energy_detection.vsdx │ │ ├── ant_diversity_interface.svg │ │ ├── ant_diversity_interface.vsdx │ │ ├── ant_diversity_manual.png │ │ ├── ant_diversity_manual.svg │ │ ├── ant_diversity_manual.vsdx │ │ ├── ant_diversity_rx_procedure.svg │ │ ├── ant_diversity_rx_procedure.vsdx │ │ ├── ant_diversity_rx_timeout.svg │ │ ├── ant_diversity_rx_timeout.vsdx │ │ ├── ant_diversity_rx_timing.svg │ │ ├── ant_diversity_rx_timing.vsdx │ │ ├── coex_timings │ │ │ ├── rd_coex_cca_ed.json │ │ │ ├── rd_coex_cca_ed.png │ │ │ ├── rd_coex_cca_tx_delayed_grant.json │ │ │ ├── rd_coex_cca_tx_delayed_grant.png │ │ │ ├── rd_coex_cca_tx_grant_abort.json │ │ │ ├── rd_coex_cca_tx_grant_abort.png │ │ │ ├── rd_coex_cca_tx_granted.json │ │ │ ├── rd_coex_cca_tx_granted.png │ │ │ ├── rd_coex_csmaca.json │ │ │ ├── rd_coex_csmaca.png │ │ │ ├── rd_coex_rx.json │ │ │ ├── rd_coex_rx.png │ │ │ ├── rd_coex_rx_with_ack_denied.json │ │ │ ├── rd_coex_rx_with_ack_denied.png │ │ │ ├── rd_coex_rx_with_ack_granted.json │ │ │ ├── rd_coex_rx_with_ack_granted.png │ │ │ ├── rd_coex_tx_delayed_grant.json │ │ │ ├── rd_coex_tx_delayed_grant.png │ │ │ ├── rd_coex_tx_grant_abort.json │ │ │ ├── rd_coex_tx_grant_abort.png │ │ │ ├── rd_coex_tx_granted.json │ │ │ ├── rd_coex_tx_granted.png │ │ │ ├── rd_coex_tx_with_ack_abort.json │ │ │ └── rd_coex_tx_with_ack_abort.png │ │ ├── dynamic_multiprotocol.svg │ │ ├── dynamic_multiprotocol.vsdx │ │ ├── dynamic_multiprotocol_requests.svg │ │ ├── dynamic_multiprotocol_requests.vsdx │ │ ├── fem-chart.svg │ │ ├── fem-chart.vsdx │ │ ├── radio_driver_architecture.svg │ │ └── radio_driver_architecture.vsdx │ ├── multiprotocol_support.rst │ ├── multiprotocol_switching_tables.rst │ ├── rd_including.rst │ ├── rd_limitations.rst │ ├── rd_service_layer_lib.rst │ └── wifi_coex_module.rst ├── driver │ ├── CMakeLists.txt │ ├── include │ │ ├── nrf_802154_irq_handlers.h │ │ └── platform │ │ │ └── nrf_802154_random.h │ └── src │ │ ├── mac_features │ │ ├── ack_generator │ │ │ ├── nrf_802154_ack_data.c │ │ │ ├── nrf_802154_ack_data.h │ │ │ ├── nrf_802154_ack_generator.c │ │ │ ├── nrf_802154_ack_generator.h │ │ │ ├── nrf_802154_enh_ack_generator.c │ │ │ ├── nrf_802154_enh_ack_generator.h │ │ │ ├── nrf_802154_imm_ack_generator.c │ │ │ └── nrf_802154_imm_ack_generator.h │ │ ├── nrf_802154_ack_timeout.h │ │ ├── nrf_802154_csma_ca.c │ │ ├── nrf_802154_csma_ca.h │ │ ├── nrf_802154_csma_ca_backoff.c │ │ ├── nrf_802154_csma_ca_backoff.h │ │ ├── nrf_802154_delayed_trx.c │ │ ├── nrf_802154_delayed_trx.h │ │ ├── nrf_802154_filter.c │ │ ├── nrf_802154_filter.h │ │ ├── nrf_802154_frame.h │ │ ├── nrf_802154_frame_parser.c │ │ ├── nrf_802154_frame_parser.h │ │ ├── nrf_802154_ie_writer.c │ │ ├── nrf_802154_ie_writer.h │ │ ├── nrf_802154_imm_tx.c │ │ ├── nrf_802154_imm_tx.h │ │ ├── nrf_802154_precise_ack_timeout.c │ │ ├── nrf_802154_security_pib.h │ │ ├── nrf_802154_security_pib_ram.c │ │ ├── nrf_802154_security_writer.c │ │ ├── nrf_802154_security_writer.h │ │ ├── nrf_802154_tx_timestamp_provider.c │ │ └── nrf_802154_tx_timestamp_provider.h │ │ ├── nrf_802154.c │ │ ├── nrf_802154_aes_ccm.h │ │ ├── nrf_802154_aes_ccm_acc_ccm.c │ │ ├── nrf_802154_aes_ccm_acc_ecb.c │ │ ├── nrf_802154_bsim_utils.c │ │ ├── nrf_802154_bsim_utils.h │ │ ├── nrf_802154_co.c │ │ ├── nrf_802154_co.h │ │ ├── nrf_802154_core.c │ │ ├── nrf_802154_core.h │ │ ├── nrf_802154_core_hooks.c │ │ ├── nrf_802154_core_hooks.h │ │ ├── nrf_802154_critical_section.c │ │ ├── nrf_802154_critical_section.h │ │ ├── nrf_802154_debug.c │ │ ├── nrf_802154_debug.h │ │ ├── nrf_802154_debug_gpio.c │ │ ├── nrf_802154_debug_log.h │ │ ├── nrf_802154_debug_log_codes.h │ │ ├── nrf_802154_debug_peripherals.h │ │ ├── nrf_802154_encrypt.c │ │ ├── nrf_802154_encrypt.h │ │ ├── nrf_802154_facade_helpers.h │ │ ├── nrf_802154_notification.h │ │ ├── nrf_802154_notification_direct.c │ │ ├── nrf_802154_notification_swi.c │ │ ├── nrf_802154_peripherals.h │ │ ├── nrf_802154_peripherals_nrf52.h │ │ ├── nrf_802154_peripherals_nrf53.h │ │ ├── nrf_802154_peripherals_nrf54h.h │ │ ├── nrf_802154_peripherals_nrf54l.h │ │ ├── nrf_802154_pib.c │ │ ├── nrf_802154_pib.h │ │ ├── nrf_802154_procedures_duration.h │ │ ├── nrf_802154_queue.c │ │ ├── nrf_802154_queue.h │ │ ├── nrf_802154_request.h │ │ ├── nrf_802154_request_direct.c │ │ ├── nrf_802154_request_swi.c │ │ ├── nrf_802154_rssi.c │ │ ├── nrf_802154_rssi.h │ │ ├── nrf_802154_rx_buffer.c │ │ ├── nrf_802154_rx_buffer.h │ │ ├── nrf_802154_stats.c │ │ ├── nrf_802154_stats.h │ │ ├── nrf_802154_swi.c │ │ ├── nrf_802154_swi.h │ │ ├── nrf_802154_swi_callouts.h │ │ ├── nrf_802154_swi_callouts_weak.c │ │ ├── nrf_802154_trx.c │ │ ├── nrf_802154_trx.h │ │ ├── nrf_802154_trx_dppi.c │ │ ├── nrf_802154_trx_ppi.c │ │ ├── nrf_802154_trx_ppi_api.h │ │ ├── nrf_802154_tx_power.c │ │ ├── nrf_802154_tx_power.h │ │ ├── nrf_802154_tx_work_buffer.c │ │ ├── nrf_802154_tx_work_buffer.h │ │ ├── nrf_802154_types_internal.h │ │ ├── nrf_802154_utils.h │ │ └── nrf_802154_utils_byteorder.h ├── serialization │ ├── CMakeLists.txt │ ├── include │ │ ├── platform │ │ │ ├── nrf_802154_serialization_crit_sect.h │ │ │ ├── nrf_802154_spinel_backend.h │ │ │ ├── nrf_802154_spinel_backend_callouts.h │ │ │ ├── nrf_802154_spinel_log.h │ │ │ └── nrf_802154_spinel_response_notifier.h │ │ └── serialization │ │ │ ├── nrf_802154_serialization.h │ │ │ ├── nrf_802154_serialization_config.h │ │ │ └── nrf_802154_serialization_error.h │ ├── spinel_base │ │ ├── spinel.c │ │ └── spinel.h │ └── src │ │ ├── include │ │ ├── nrf_802154_buffer_allocator.h │ │ ├── nrf_802154_buffer_mgr_dst.h │ │ ├── nrf_802154_buffer_mgr_src.h │ │ ├── nrf_802154_kvmap.h │ │ ├── nrf_802154_nrfx_addons.h │ │ ├── nrf_802154_serialization_error_helper.h │ │ ├── nrf_802154_spinel.h │ │ ├── nrf_802154_spinel_datatypes.h │ │ ├── nrf_802154_spinel_dec.h │ │ ├── nrf_802154_spinel_dec_app.h │ │ ├── nrf_802154_spinel_dec_net.h │ │ ├── nrf_802154_spinel_enc.h │ │ ├── nrf_802154_spinel_enc_app.h │ │ └── nrf_802154_spinel_enc_net.h │ │ ├── nrf_802154_buffer_allocator.c │ │ ├── nrf_802154_buffer_mgr_dst.c │ │ ├── nrf_802154_buffer_mgr_src.c │ │ ├── nrf_802154_kvmap.c │ │ ├── nrf_802154_spinel.c │ │ ├── nrf_802154_spinel_app.c │ │ ├── nrf_802154_spinel_dec.c │ │ ├── nrf_802154_spinel_dec_app.c │ │ ├── nrf_802154_spinel_dec_net.c │ │ └── nrf_802154_spinel_net.c ├── sl │ ├── CMakeLists.txt │ ├── include │ │ ├── nrf_802154_fal.h │ │ ├── nrf_802154_sl_ant_div.h │ │ ├── nrf_802154_sl_atomic_list.h │ │ ├── nrf_802154_sl_atomics.h │ │ ├── nrf_802154_sl_capabilities.h │ │ ├── nrf_802154_sl_config.h │ │ ├── nrf_802154_sl_crit_sect_if.h │ │ ├── nrf_802154_sl_fault.h │ │ ├── nrf_802154_sl_log.h │ │ ├── nrf_802154_sl_rsch.h │ │ ├── nrf_802154_sl_stats.h │ │ ├── nrf_802154_sl_timer.h │ │ ├── nrf_802154_sl_types.h │ │ ├── nrf_802154_sl_utils.h │ │ ├── platform │ │ │ ├── nrf_802154_clock.h │ │ │ ├── nrf_802154_hp_timer.h │ │ │ ├── nrf_802154_irq.h │ │ │ ├── nrf_802154_platform_sl_lptimer.h │ │ │ ├── nrf_802154_platform_timestamper.h │ │ │ └── nrf_802154_temperature.h │ │ ├── rsch │ │ │ ├── nrf_802154_rsch.h │ │ │ └── nrf_802154_rsch_crit_sect.h │ │ └── timer │ │ │ └── nrf_802154_timer_coord.h │ ├── sl │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── include │ │ │ └── nrf_802154_sl_periphs.h │ │ └── lib │ │ │ ├── nrf52833 │ │ │ ├── hard-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ ├── soft-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ └── softfp-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ ├── nrf52840 │ │ │ ├── hard-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ ├── soft-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ └── softfp-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ ├── nrf5340_cpunet │ │ │ └── soft-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ ├── nrf54h20_cpurad │ │ │ ├── hard-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ ├── soft-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ └── softfp-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ ├── nrf54l05_cpuapp │ │ │ ├── hard-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ ├── soft-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ └── softfp-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ ├── nrf54l10_cpuapp │ │ │ ├── hard-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ ├── soft-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ └── softfp-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ ├── nrf54l10_cpuapp_ns │ │ │ ├── hard-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ ├── soft-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ └── softfp-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ ├── nrf54l15_cpuapp │ │ │ ├── hard-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ ├── soft-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ └── softfp-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ ├── nrf54l15_cpuapp_ns │ │ │ ├── hard-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ ├── soft-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ └── softfp-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ ├── nrf54lm20a_cpuapp │ │ │ ├── hard-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ ├── soft-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ └── softfp-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ ├── nrf54lm20a_cpuapp_ns │ │ │ ├── hard-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ ├── soft-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ └── softfp-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ ├── nrf54lv10a_cpuapp │ │ │ ├── hard-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ ├── soft-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ └── softfp-float │ │ │ │ └── libnrf-802154-sl.a │ │ │ └── nrf54lv10a_cpuapp_ns │ │ │ ├── hard-float │ │ │ └── libnrf-802154-sl.a │ │ │ ├── soft-float │ │ │ └── libnrf-802154-sl.a │ │ │ └── softfp-float │ │ │ └── libnrf-802154-sl.a │ └── sl_opensource │ │ ├── CMakeLists.txt │ │ ├── include │ │ ├── mpsl_fem_config_common.h │ │ ├── mpsl_tx_power.h │ │ ├── nrf_802154_sl_periphs.h │ │ ├── nrf_errno.h │ │ └── protocol │ │ │ └── mpsl_fem_protocol_api.h │ │ └── src │ │ ├── nrf_802154_sl_ant_div.c │ │ ├── nrf_802154_sl_capabilities.c │ │ ├── nrf_802154_sl_coex.c │ │ ├── nrf_802154_sl_crit_sect_if.c │ │ ├── nrf_802154_sl_fem.c │ │ ├── nrf_802154_sl_log.c │ │ ├── nrf_802154_sl_rsch.c │ │ └── nrf_802154_sl_timer.c └── zephyr │ └── Kconfig.nrfxlib ├── nrf_dm ├── CMakeLists.txt ├── Kconfig ├── README.rst ├── doc │ ├── CHANGELOG.rst │ ├── api.rst │ ├── nrf_dm_overview.rst │ └── nrf_dm_usage.rst ├── include │ ├── nrf_dm.h │ └── nrf_dm_version.h ├── lib │ ├── nrf52832 │ │ └── hard-float │ │ │ └── libnrf_dm.a │ ├── nrf52833 │ │ └── hard-float │ │ │ └── libnrf_dm.a │ ├── nrf52840 │ │ └── hard-float │ │ │ └── libnrf_dm.a │ ├── nrf5340_cpuapp │ │ └── hard-float │ │ │ └── libnrf_dm_calc.a │ └── nrf5340_cpunet │ │ └── soft-float │ │ └── libnrf_dm.a └── license.txt ├── nrf_fuel_gauge ├── CHANGELOG.rst ├── CMakeLists.txt ├── Kconfig ├── README.rst ├── doc │ └── api.rst ├── include │ ├── battery_models │ │ └── primary_cell │ │ │ ├── 2SAAA_Alkaline.inc │ │ │ ├── 2SAA_Alkaline.inc │ │ │ ├── AAA_Alkaline.inc │ │ │ ├── AA_Alkaline.inc │ │ │ ├── CR2032.inc │ │ │ └── LR44.inc │ └── nrf_fuel_gauge.h ├── lib │ ├── cortex-m3 │ │ └── soft-float │ │ │ ├── libnrf_fuel_gauge.a │ │ │ └── libnrf_fuel_gauge_primary.a │ ├── cortex-m33 │ │ ├── hard-float │ │ │ ├── libnrf_fuel_gauge.a │ │ │ └── libnrf_fuel_gauge_primary.a │ │ └── soft-float │ │ │ ├── libnrf_fuel_gauge.a │ │ │ └── libnrf_fuel_gauge_primary.a │ └── cortex-m4 │ │ ├── hard-float │ │ ├── libnrf_fuel_gauge.a │ │ └── libnrf_fuel_gauge_primary.a │ │ └── soft-float │ │ ├── libnrf_fuel_gauge.a │ │ └── libnrf_fuel_gauge_primary.a └── license.txt ├── nrf_modem ├── CMakeLists.txt ├── Kconfig ├── README.rst ├── doc │ ├── CHANGELOG.rst │ ├── api.rst │ ├── architecture.rst │ ├── at_interface.rst │ ├── bootloader.rst │ ├── dectphy.rst │ ├── delta_dfu.rst │ ├── fault_handling.rst │ ├── gnss_interface.rst │ ├── images │ │ ├── delta_dfu_rollback.svg │ │ ├── delta_dfu_update.svg │ │ ├── nrf_modem_architecture.svg │ │ ├── nrf_modem_fault_reinit_sequence.svg │ │ ├── nrf_modem_initialization_sequence.svg │ │ ├── nrf_modem_layers.svg │ │ ├── nrf_modem_memory.svg │ │ ├── nrf_modem_timers_sequence.svg │ │ ├── nrf_modem_trace_sequence_async_callback.svg │ │ ├── nrf_modem_trace_sequence_coredump.svg │ │ ├── nrf_modem_trace_sequence_data_available.svg │ │ └── nrf_modem_trace_sequence_no_data.svg │ ├── limitations.rst │ ├── logging.rst │ ├── modem_trace.rst │ ├── sockets.rst │ ├── sockets │ │ ├── images │ │ │ ├── security_tags.svg │ │ │ └── security_tags2.svg │ │ ├── pdn.rst │ │ ├── rai.rst │ │ ├── raw_sockets.rst │ │ ├── socket_options_func.rst │ │ └── tls_dtls.rst │ ├── softsim_interface.rst │ ├── ug_nrf_modem_porting_os.rst │ └── variant_features.rst ├── include │ ├── nrf_errno.h │ ├── nrf_gai_errors.h │ ├── nrf_modem.h │ ├── nrf_modem_at.h │ ├── nrf_modem_bootloader.h │ ├── nrf_modem_dect_clock_sync.h │ ├── nrf_modem_dect_phy.h │ ├── nrf_modem_delta_dfu.h │ ├── nrf_modem_gnss.h │ ├── nrf_modem_os.h │ ├── nrf_modem_os_rpc.h │ ├── nrf_modem_rs_capture.h │ ├── nrf_modem_softsim.h │ ├── nrf_modem_toolchain.h │ ├── nrf_modem_trace.h │ └── nrf_socket.h ├── lib │ ├── cellular │ │ ├── nrf9120 │ │ │ ├── hard-float │ │ │ │ ├── libmodem.a │ │ │ │ └── libmodem_log.a │ │ │ └── soft-float │ │ │ │ ├── libmodem.a │ │ │ │ └── libmodem_log.a │ │ ├── nrf9160 │ │ │ ├── hard-float │ │ │ │ ├── libmodem.a │ │ │ │ └── libmodem_log.a │ │ │ └── soft-float │ │ │ │ ├── libmodem.a │ │ │ │ └── libmodem_log.a │ │ └── nrf9230 │ │ │ ├── hard-float │ │ │ ├── libmodem.a │ │ │ └── libmodem_log.a │ │ │ └── soft-float │ │ │ ├── libmodem.a │ │ │ └── libmodem_log.a │ └── dect_phy │ │ └── nrf9120 │ │ ├── hard-float │ │ ├── libmodem.a │ │ └── libmodem_log.a │ │ └── soft-float │ │ ├── libmodem.a │ │ └── libmodem_log.a ├── license.txt └── shmem.c ├── nrf_rpc ├── CHANGELOG.rst ├── CMakeLists.txt ├── Kconfig ├── README.rst ├── doc │ ├── api.rst │ ├── architecture.rst │ ├── img │ │ ├── cmd_flow.svg │ │ ├── cmd_flow.vsdx │ │ ├── cmd_recursive.svg │ │ ├── cmd_recursive.vsdx │ │ ├── cmd_simple.svg │ │ ├── cmd_simple.vsdx │ │ ├── evt_flow.svg │ │ ├── evt_flow.vsdx │ │ ├── evt_simple.svg │ │ ├── evt_simple.vsdx │ │ ├── layers.svg │ │ └── layers.vsdx │ ├── protocol_specification.rst │ └── usage.rst ├── include │ ├── nrf_rpc.h │ ├── nrf_rpc_cbor.h │ ├── nrf_rpc_common.h │ ├── nrf_rpc_errno.h │ └── nrf_rpc_tr.h ├── nrf_rpc.c ├── nrf_rpc.ld ├── nrf_rpc_cbor.c └── template │ ├── nrf_rpc_log_tmpl.h │ └── nrf_rpc_os_tmpl.h ├── nrf_wifi └── bin │ ├── ncs │ ├── default │ │ └── nrf70.bin │ ├── offloaded_raw_tx │ │ └── nrf70.bin │ ├── radio_test │ │ └── nrf70.bin │ ├── scan_only │ │ └── nrf70.bin │ └── system_with_raw │ │ └── nrf70.bin │ └── zephyr │ ├── default │ └── nrf70.bin │ ├── offloaded_raw_tx │ └── nrf70.bin │ ├── radio_test │ └── nrf70.bin │ ├── scan_only │ └── nrf70.bin │ └── system_with_raw │ └── nrf70.bin ├── openthread ├── CMakeLists.txt ├── Kconfig ├── README.rst ├── cmake │ ├── crypto_config_cc3xx_whitelist.txt │ ├── crypto_config_ignore.txt │ ├── crypto_config_tfm_whitelist.txt │ └── extensions.cmake ├── include │ ├── openthread-config-generic.h │ ├── openthread-system.h │ ├── openthread │ │ ├── backbone_router.h │ │ ├── backbone_router_ftd.h │ │ ├── ble_secure.h │ │ ├── border_agent.h │ │ ├── border_router.h │ │ ├── border_routing.h │ │ ├── channel_manager.h │ │ ├── channel_monitor.h │ │ ├── child_supervision.h │ │ ├── cli.h │ │ ├── coap.h │ │ ├── coap_secure.h │ │ ├── commissioner.h │ │ ├── config.h │ │ ├── crypto.h │ │ ├── dataset.h │ │ ├── dataset_ftd.h │ │ ├── dataset_updater.h │ │ ├── diag.h │ │ ├── dns.h │ │ ├── dns_client.h │ │ ├── dnssd_server.h │ │ ├── entropy.h │ │ ├── error.h │ │ ├── heap.h │ │ ├── history_tracker.h │ │ ├── icmp6.h │ │ ├── instance.h │ │ ├── ip6.h │ │ ├── jam_detection.h │ │ ├── joiner.h │ │ ├── link.h │ │ ├── link_metrics.h │ │ ├── link_raw.h │ │ ├── logging.h │ │ ├── mdns.h │ │ ├── mesh_diag.h │ │ ├── message.h │ │ ├── multi_radio.h │ │ ├── nat64.h │ │ ├── ncp.h │ │ ├── netdata.h │ │ ├── netdata_publisher.h │ │ ├── netdiag.h │ │ ├── network_time.h │ │ ├── ping_sender.h │ │ ├── platform │ │ │ ├── alarm-micro.h │ │ │ ├── alarm-milli.h │ │ │ ├── ble.h │ │ │ ├── border_routing.h │ │ │ ├── crypto.h │ │ │ ├── debug_uart.h │ │ │ ├── diag.h │ │ │ ├── dns.h │ │ │ ├── dnssd.h │ │ │ ├── dso_transport.h │ │ │ ├── entropy.h │ │ │ ├── flash.h │ │ │ ├── infra_if.h │ │ │ ├── logging.h │ │ │ ├── mdns_socket.h │ │ │ ├── memory.h │ │ │ ├── messagepool.h │ │ │ ├── misc.h │ │ │ ├── multipan.h │ │ │ ├── otns.h │ │ │ ├── radio.h │ │ │ ├── settings.h │ │ │ ├── spi-slave.h │ │ │ ├── time.h │ │ │ ├── toolchain.h │ │ │ ├── trel-udp6.h │ │ │ ├── trel.h │ │ │ └── udp.h │ │ ├── radio_stats.h │ │ ├── random_crypto.h │ │ ├── random_noncrypto.h │ │ ├── server.h │ │ ├── sntp.h │ │ ├── srp_client.h │ │ ├── srp_client_buffers.h │ │ ├── srp_server.h │ │ ├── tasklet.h │ │ ├── tcat.h │ │ ├── tcp.h │ │ ├── tcp_ext.h │ │ ├── thread.h │ │ ├── thread_ftd.h │ │ ├── trel.h │ │ ├── udp.h │ │ └── verhoeff_checksum.h │ └── utils │ │ └── uart.h ├── lib │ ├── nrf52840 │ │ ├── hard-float │ │ │ └── v1.4 │ │ │ │ ├── ftd │ │ │ │ ├── libopenthread-cli-ftd.a │ │ │ │ ├── libopenthread-ftd.a │ │ │ │ └── openthread_lib_configuration.txt │ │ │ │ ├── master │ │ │ │ ├── libopenthread-cli-ftd.a │ │ │ │ ├── libopenthread-ftd.a │ │ │ │ ├── libtcplp-ftd.a │ │ │ │ └── openthread_lib_configuration.txt │ │ │ │ └── mtd │ │ │ │ ├── libopenthread-cli-mtd.a │ │ │ │ ├── libopenthread-mtd.a │ │ │ │ └── openthread_lib_configuration.txt │ │ ├── soft-float │ │ │ └── v1.4 │ │ │ │ ├── ftd │ │ │ │ ├── libopenthread-cli-ftd.a │ │ │ │ ├── libopenthread-ftd.a │ │ │ │ └── openthread_lib_configuration.txt │ │ │ │ ├── master │ │ │ │ ├── libopenthread-cli-ftd.a │ │ │ │ ├── libopenthread-ftd.a │ │ │ │ ├── libtcplp-ftd.a │ │ │ │ └── openthread_lib_configuration.txt │ │ │ │ └── mtd │ │ │ │ ├── libopenthread-cli-mtd.a │ │ │ │ ├── libopenthread-mtd.a │ │ │ │ └── openthread_lib_configuration.txt │ │ └── softfp-float │ │ │ └── v1.4 │ │ │ ├── ftd │ │ │ ├── libopenthread-cli-ftd.a │ │ │ ├── libopenthread-ftd.a │ │ │ └── openthread_lib_configuration.txt │ │ │ ├── master │ │ │ ├── libopenthread-cli-ftd.a │ │ │ ├── libopenthread-ftd.a │ │ │ ├── libtcplp-ftd.a │ │ │ └── openthread_lib_configuration.txt │ │ │ └── mtd │ │ │ ├── libopenthread-cli-mtd.a │ │ │ ├── libopenthread-mtd.a │ │ │ └── openthread_lib_configuration.txt │ ├── nrf5340 │ │ ├── hard-float │ │ │ └── v1.4 │ │ │ │ ├── ftd │ │ │ │ ├── libopenthread-cli-ftd.a │ │ │ │ ├── libopenthread-ftd.a │ │ │ │ └── openthread_lib_configuration.txt │ │ │ │ └── mtd │ │ │ │ ├── libopenthread-cli-mtd.a │ │ │ │ ├── libopenthread-mtd.a │ │ │ │ └── openthread_lib_configuration.txt │ │ ├── soft-float │ │ │ └── v1.4 │ │ │ │ ├── ftd │ │ │ │ ├── libopenthread-cli-ftd.a │ │ │ │ ├── libopenthread-ftd.a │ │ │ │ └── openthread_lib_configuration.txt │ │ │ │ └── mtd │ │ │ │ ├── libopenthread-cli-mtd.a │ │ │ │ ├── libopenthread-mtd.a │ │ │ │ └── openthread_lib_configuration.txt │ │ └── softfp-float │ │ │ └── v1.4 │ │ │ ├── ftd │ │ │ ├── libopenthread-cli-ftd.a │ │ │ ├── libopenthread-ftd.a │ │ │ └── openthread_lib_configuration.txt │ │ │ └── mtd │ │ │ ├── libopenthread-cli-mtd.a │ │ │ ├── libopenthread-mtd.a │ │ │ └── openthread_lib_configuration.txt │ └── nrf54lx │ │ ├── hard-float │ │ └── v1.4 │ │ │ ├── ftd │ │ │ ├── libopenthread-cli-ftd.a │ │ │ ├── libopenthread-ftd.a │ │ │ └── openthread_lib_configuration.txt │ │ │ ├── master │ │ │ ├── libopenthread-cli-ftd.a │ │ │ ├── libopenthread-ftd.a │ │ │ ├── libtcplp-ftd.a │ │ │ └── openthread_lib_configuration.txt │ │ │ └── mtd │ │ │ ├── libopenthread-cli-mtd.a │ │ │ ├── libopenthread-mtd.a │ │ │ └── openthread_lib_configuration.txt │ │ ├── soft-float │ │ └── v1.4 │ │ │ ├── ftd │ │ │ ├── libopenthread-cli-ftd.a │ │ │ ├── libopenthread-ftd.a │ │ │ └── openthread_lib_configuration.txt │ │ │ ├── master │ │ │ ├── libopenthread-cli-ftd.a │ │ │ ├── libopenthread-ftd.a │ │ │ ├── libtcplp-ftd.a │ │ │ └── openthread_lib_configuration.txt │ │ │ └── mtd │ │ │ ├── libopenthread-cli-mtd.a │ │ │ ├── libopenthread-mtd.a │ │ │ └── openthread_lib_configuration.txt │ │ └── softfp-float │ │ └── v1.4 │ │ ├── ftd │ │ ├── libopenthread-cli-ftd.a │ │ ├── libopenthread-ftd.a │ │ └── openthread_lib_configuration.txt │ │ ├── master │ │ ├── libopenthread-cli-ftd.a │ │ ├── libopenthread-ftd.a │ │ ├── libtcplp-ftd.a │ │ └── openthread_lib_configuration.txt │ │ └── mtd │ │ ├── libopenthread-cli-mtd.a │ │ ├── libopenthread-mtd.a │ │ └── openthread_lib_configuration.txt └── license.txt ├── softdevice_controller ├── CHANGELOG.rst ├── CMakeLists.txt ├── README.rst ├── doc │ ├── api.rst │ ├── channel_sounding.rst │ ├── gui │ │ └── bis_gui.html │ ├── isochronous_channels.rst │ ├── pic │ │ ├── Architecture_With_RTOS.svg │ │ ├── Architecture_With_RTOS.vsdx │ │ ├── Architecture_Without_RTOS.svg │ │ ├── Architecture_Without_RTOS.vsdx │ │ ├── iso_topology │ │ │ ├── tested_bis_topology.svg │ │ │ └── tested_cis_topology.svg │ │ └── schedule │ │ │ ├── advertiser.svg │ │ │ ├── advertiser_collide.svg │ │ │ ├── broadcast_iso_timing.svg │ │ │ ├── channel_sounding_multiple_links.svg │ │ │ ├── channel_sounding_multiple_links_plus_iso.svg │ │ │ ├── channel_sounding_offset_selection.svg │ │ │ ├── conn_timing_event_extend.svg │ │ │ ├── connected_iso_timing.svg │ │ │ ├── initiator_1_first_connection.svg │ │ │ ├── initiator_2_first_connection_two_phys.svg │ │ │ ├── initiator_3_timing_one_connection.svg │ │ │ ├── initiator_4_timing_disconnect_result_free_time.svg │ │ │ ├── initiator_5_timing_one_or_more_connections.svg │ │ │ ├── initiator_6_timing_free_time_not_big_enough.svg │ │ │ ├── initiator_7_connection_setup.svg │ │ │ ├── multilink_conn_anchor_update.svg │ │ │ ├── multilink_sched_1_factored_intervals.svg │ │ │ ├── multilink_sched_2_unfactored_intervals.svg │ │ │ ├── multilink_sched_3_max_conn_min_interval.svg │ │ │ ├── multilink_sched_4_conn_interval_greater_than_min.svg │ │ │ ├── multilink_sched_5_short_ce.svg │ │ │ ├── multilink_sched_6_short_ce_after_phy_update.svg │ │ │ ├── multilink_sched_7_short_ce_all_links_packed.svg │ │ │ ├── peripheral_conn_setup_and_conn.svg │ │ │ ├── peripheral_conn_setup_and_conn_collision.svg │ │ │ ├── scanner_timing_10_secondary_between_w_connection.svg │ │ │ ├── scanner_timing_1_no_active_connection.svg │ │ │ ├── scanner_timing_2_no_active_connection_multiple_phys.svg │ │ │ ├── scanner_timing_3_one_or_more_conn.svg │ │ │ ├── scanner_timing_4_always_after_conn.svg │ │ │ ├── scanner_timing_6_secondary_inside.svg │ │ │ ├── scanner_timing_7_secondary_extend.svg │ │ │ ├── scanner_timing_8_secondary_between.svg │ │ │ ├── scanner_timing_9_secondary_blocks_primary.svg │ │ │ ├── scanner_timing_coop.svg │ │ │ ├── sched_periodic_adv.svg │ │ │ ├── sched_periodic_sync_chains.svg │ │ │ ├── sched_periodic_sync_collision.svg │ │ │ ├── three_central_and_peripheral_links_running.svg │ │ │ └── worst_case_collision_of_ble_roles.svg │ ├── scheduling.rst │ └── softdevice_controller.rst ├── include │ ├── nrf_errno.h │ ├── sdc.h │ ├── sdc_hci.h │ ├── sdc_hci_cmd_controller_baseband.h │ ├── sdc_hci_cmd_info_params.h │ ├── sdc_hci_cmd_le.h │ ├── sdc_hci_cmd_link_control.h │ ├── sdc_hci_cmd_status_params.h │ ├── sdc_hci_evt.h │ ├── sdc_hci_vs.h │ └── sdc_soc.h ├── lib │ ├── nrf52 │ │ ├── hard-float │ │ │ ├── libsoftdevice_controller_central.a │ │ │ ├── libsoftdevice_controller_multirole.a │ │ │ └── libsoftdevice_controller_peripheral.a │ │ ├── manifest.yaml │ │ ├── soft-float │ │ │ ├── libsoftdevice_controller_central.a │ │ │ ├── libsoftdevice_controller_multirole.a │ │ │ └── libsoftdevice_controller_peripheral.a │ │ └── softfp-float │ │ │ ├── libsoftdevice_controller_central.a │ │ │ ├── libsoftdevice_controller_multirole.a │ │ │ └── libsoftdevice_controller_peripheral.a │ ├── nrf52_bsim │ │ ├── manifest.yaml │ │ └── soft-float │ │ │ ├── libsoftdevice_controller_central.a │ │ │ ├── libsoftdevice_controller_multirole.a │ │ │ └── libsoftdevice_controller_peripheral.a │ ├── nrf53 │ │ ├── manifest.yaml │ │ └── soft-float │ │ │ └── libsoftdevice_controller_multirole.a │ ├── nrf53_bsim │ │ ├── manifest.yaml │ │ └── soft-float │ │ │ └── libsoftdevice_controller_multirole.a │ ├── nrf54h │ │ ├── hard-float │ │ │ ├── libsoftdevice_controller_central.a │ │ │ ├── libsoftdevice_controller_multirole.a │ │ │ └── libsoftdevice_controller_peripheral.a │ │ ├── manifest.yaml │ │ ├── soft-float │ │ │ ├── libsoftdevice_controller_central.a │ │ │ ├── libsoftdevice_controller_multirole.a │ │ │ └── libsoftdevice_controller_peripheral.a │ │ └── softfp-float │ │ │ ├── libsoftdevice_controller_central.a │ │ │ ├── libsoftdevice_controller_multirole.a │ │ │ └── libsoftdevice_controller_peripheral.a │ ├── nrf54l │ │ ├── hard-float │ │ │ ├── libsoftdevice_controller_central.a │ │ │ ├── libsoftdevice_controller_multirole.a │ │ │ └── libsoftdevice_controller_peripheral.a │ │ ├── manifest.yaml │ │ ├── soft-float │ │ │ ├── libsoftdevice_controller_central.a │ │ │ ├── libsoftdevice_controller_multirole.a │ │ │ └── libsoftdevice_controller_peripheral.a │ │ └── softfp-float │ │ │ ├── libsoftdevice_controller_central.a │ │ │ ├── libsoftdevice_controller_multirole.a │ │ │ └── libsoftdevice_controller_peripheral.a │ ├── nrf54l_bsim │ │ ├── manifest.yaml │ │ └── soft-float │ │ │ ├── libsoftdevice_controller_central.a │ │ │ ├── libsoftdevice_controller_multirole.a │ │ │ └── libsoftdevice_controller_peripheral.a │ ├── nrf54l_ns │ │ ├── hard-float │ │ │ └── libsoftdevice_controller_multirole.a │ │ ├── manifest.yaml │ │ ├── soft-float │ │ │ └── libsoftdevice_controller_multirole.a │ │ └── softfp-float │ │ │ └── libsoftdevice_controller_multirole.a │ └── nrf71 │ │ ├── hard-float │ │ └── libsoftdevice_controller_multirole.a │ │ ├── manifest.yaml │ │ ├── soft-float │ │ └── libsoftdevice_controller_multirole.a │ │ └── softfp-float │ │ └── libsoftdevice_controller_multirole.a ├── license.txt └── limitations.rst ├── softperipheral ├── CHANGELOG.rst ├── README.rst ├── doc │ ├── images │ │ └── SP_concept.svg │ ├── introduction.rst │ ├── sEMMC │ │ ├── CHANGELOG.rst │ │ ├── README.rst │ │ ├── api_reference.rst │ │ ├── features.rst │ │ ├── limitations.rst │ │ ├── semmc_nrf54H_series_porting_v0_1_1.rst │ │ ├── semmc_nrf54L_series_porting_v0_1_1.rst │ │ └── timing.rst │ └── sQSPI │ │ ├── CHANGELOG.rst │ │ ├── README.rst │ │ ├── api_reference.rst │ │ ├── display.rst │ │ ├── features.rst │ │ ├── images │ │ ├── sqspi_timing.png │ │ └── sqspi_timing_1.png │ │ ├── limitations.rst │ │ ├── sqspi_nrf54H_series_porting_v1_2_1.rst │ │ ├── sqspi_nrf54L_series_porting_v1_2_1.rst │ │ └── timing.rst ├── include │ ├── softperipheral_meta.h │ └── softperipheral_regif.h ├── sEMMC │ ├── include │ │ ├── hal │ │ │ └── nrf_emmc.h │ │ ├── nrf54h │ │ │ ├── semmc_firmware.h │ │ │ └── semmc_firmware_v0.1.1.h │ │ ├── nrf54l │ │ │ ├── semmc_firmware.h │ │ │ └── semmc_firmware_v0.1.1.h │ │ ├── nrf_config_semmc.h │ │ ├── nrf_semmc.h │ │ └── nrf_sp_emmc.h │ └── src │ │ └── nrf_semmc.c └── sQSPI │ ├── include │ ├── hal │ │ └── nrf_qspi2.h │ ├── nrf54h │ │ ├── sqspi_firmware.h │ │ └── sqspi_firmware_v1.2.1.h │ ├── nrf54l │ │ ├── sqspi_firmware.h │ │ └── sqspi_firmware_v1.2.1.h │ ├── nrf_config_sqspi.h │ ├── nrf_sp_qspi.h │ └── nrf_sqspi.h │ └── src │ └── nrf_sqspi.c ├── suit └── bin │ └── suit_manifest_starter.hex ├── tests └── subsys │ └── nrf_compress │ └── decompression │ ├── arm_thumb.dat │ ├── arm_thumb_compressed.dat │ ├── dummy_data_input.txt.lzma │ ├── dummy_data_input.txt.lzma1 │ └── dummy_data_input_large.txt.lzma └── zephyr └── module.yml /.checkpatch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.checkpatch.conf -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.svg binary 2 | -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/test-spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/test-spec.yml -------------------------------------------------------------------------------- /.github/vale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/README.md -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/AMPM.yml_ignored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/AMPM.yml_ignored -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/Accessibility.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/Accessibility.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/Acronyms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/Acronyms.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/Adverbs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/Adverbs.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/Auto.yml_ignored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/Auto.yml_ignored -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/Avoid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/Avoid.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/Contractions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/Contractions.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/Dashes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/Dashes.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/DateFormat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/DateFormat.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/DateNumbers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/DateNumbers.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/DateOrder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/DateOrder.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/Ellipses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/Ellipses.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/FirstPerson.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/FirstPerson.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/Foreign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/Foreign.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/Gender.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/Gender.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/GenderBias.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/GenderBias.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/GeneralURL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/GeneralURL.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/HeadingAcronyms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/HeadingAcronyms.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/HeadingColons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/HeadingColons.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/HeadingPunctuation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/HeadingPunctuation.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/Headings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/Headings.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/Hyphens.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/Hyphens.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/Negative.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/Negative.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/Ordinal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/Ordinal.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/OxfordComma.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/OxfordComma.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/Passive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/Passive.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/Percentages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/Percentages.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/Plurals.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/Plurals.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/Quotes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/Quotes.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/RangeTime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/RangeTime.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/Semicolon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/Semicolon.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/SentenceLength.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/SentenceLength.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/Spacing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/Spacing.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/Spelling.yml_ignored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/Spelling.yml_ignored -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/Suspended.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/Suspended.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/Terms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/Terms.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/URLFormat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/URLFormat.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/Units.yml_ignored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/Units.yml_ignored -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/Vocab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/Vocab.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/We.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/We.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/Wordiness.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/Wordiness.yml -------------------------------------------------------------------------------- /.github/vale/styles/Nordic/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/styles/Nordic/meta.json -------------------------------------------------------------------------------- /.github/vale/vocab/Base/accept.txt: -------------------------------------------------------------------------------- 1 | nRF 2 | nrfutil 3 | Nordic 4 | SDFU 5 | Util 6 | -------------------------------------------------------------------------------- /.github/vale/vocab/Base/reject.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/vale/vocab/Base/reject.txt -------------------------------------------------------------------------------- /.github/workflows/backport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/workflows/backport.yml -------------------------------------------------------------------------------- /.github/workflows/compliance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/workflows/compliance.yml -------------------------------------------------------------------------------- /.github/workflows/dnm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/workflows/dnm.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/manifest-PR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/workflows/manifest-PR.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/vale-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.github/workflows/vale-lint.yml -------------------------------------------------------------------------------- /.gitlint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.gitlint -------------------------------------------------------------------------------- /.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/.vale.ini -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /Kconfig.nrfxlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/Kconfig.nrfxlib -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/README.rst -------------------------------------------------------------------------------- /common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/common.cmake -------------------------------------------------------------------------------- /crypto/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/CMakeLists.txt -------------------------------------------------------------------------------- /crypto/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/Kconfig -------------------------------------------------------------------------------- /crypto/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/README.rst -------------------------------------------------------------------------------- /crypto/doc/CHANGELOG_cc310_bl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/doc/CHANGELOG_cc310_bl.rst -------------------------------------------------------------------------------- /crypto/doc/CHANGELOG_cc3xx_mbedcrypto.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/doc/CHANGELOG_cc3xx_mbedcrypto.rst -------------------------------------------------------------------------------- /crypto/doc/CHANGELOG_cc3xx_platform.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/doc/CHANGELOG_cc3xx_platform.rst -------------------------------------------------------------------------------- /crypto/doc/CHANGELOG_oberon.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/doc/CHANGELOG_oberon.rst -------------------------------------------------------------------------------- /crypto/doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/doc/api.rst -------------------------------------------------------------------------------- /crypto/doc/nrf_cc310_bl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/doc/nrf_cc310_bl.rst -------------------------------------------------------------------------------- /crypto/doc/nrf_cc3xx_mbedcrypto.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/doc/nrf_cc3xx_mbedcrypto.rst -------------------------------------------------------------------------------- /crypto/doc/nrf_cc3xx_platform.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/doc/nrf_cc3xx_platform.rst -------------------------------------------------------------------------------- /crypto/doc/nrf_oberon.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/doc/nrf_oberon.rst -------------------------------------------------------------------------------- /crypto/nrf_cc310_bl/include/crys_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_cc310_bl/include/crys_error.h -------------------------------------------------------------------------------- /crypto/nrf_cc310_bl/include/nrf_cc310_bl_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_cc310_bl/include/nrf_cc310_bl_init.h -------------------------------------------------------------------------------- /crypto/nrf_cc310_bl/include/ssi_pal_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_cc310_bl/include/ssi_pal_types.h -------------------------------------------------------------------------------- /crypto/nrf_cc310_bl/include/ssi_pal_types_plat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_cc310_bl/include/ssi_pal_types_plat.h -------------------------------------------------------------------------------- /crypto/nrf_cc310_bl/lib/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_cc310_bl/lib/license.txt -------------------------------------------------------------------------------- /crypto/nrf_cc310_bl/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_cc310_bl/license.txt -------------------------------------------------------------------------------- /crypto/nrf_cc310_mbedcrypto/include/cc3xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_cc310_mbedcrypto/include/cc3xx.h -------------------------------------------------------------------------------- /crypto/nrf_cc310_mbedcrypto/include/cc3xx_psa_aead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_cc310_mbedcrypto/include/cc3xx_psa_aead.h -------------------------------------------------------------------------------- /crypto/nrf_cc310_mbedcrypto/include/cc3xx_psa_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_cc310_mbedcrypto/include/cc3xx_psa_hash.h -------------------------------------------------------------------------------- /crypto/nrf_cc310_mbedcrypto/include/cc3xx_psa_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_cc310_mbedcrypto/include/cc3xx_psa_mac.h -------------------------------------------------------------------------------- /crypto/nrf_cc310_mbedcrypto/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_cc310_mbedcrypto/license.txt -------------------------------------------------------------------------------- /crypto/nrf_cc310_platform/include/threading_alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_cc310_platform/include/threading_alt.h -------------------------------------------------------------------------------- /crypto/nrf_cc310_platform/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_cc310_platform/license.txt -------------------------------------------------------------------------------- /crypto/nrf_cc312_mbedcrypto/include/cc3xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_cc312_mbedcrypto/include/cc3xx.h -------------------------------------------------------------------------------- /crypto/nrf_cc312_mbedcrypto/include/cc3xx_psa_aead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_cc312_mbedcrypto/include/cc3xx_psa_aead.h -------------------------------------------------------------------------------- /crypto/nrf_cc312_mbedcrypto/include/cc3xx_psa_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_cc312_mbedcrypto/include/cc3xx_psa_hash.h -------------------------------------------------------------------------------- /crypto/nrf_cc312_mbedcrypto/include/cc3xx_psa_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_cc312_mbedcrypto/include/cc3xx_psa_mac.h -------------------------------------------------------------------------------- /crypto/nrf_cc312_mbedcrypto/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_cc312_mbedcrypto/license.txt -------------------------------------------------------------------------------- /crypto/nrf_cc312_platform/include/threading_alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_cc312_platform/include/threading_alt.h -------------------------------------------------------------------------------- /crypto/nrf_cc312_platform/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_cc312_platform/license.txt -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/mbedtls/chacha20_alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/mbedtls/chacha20_alt.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/mbedtls/ecjpake_alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/mbedtls/ecjpake_alt.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/mbedtls/poly1305_alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/mbedtls/poly1305_alt.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/mbedtls/sha1_alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/mbedtls/sha1_alt.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/mbedtls/sha256_alt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/mbedtls/sha256_alt.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_aes_cbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_aes_cbc.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_aes_cbc_pkcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_aes_cbc_pkcs.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_aes_ccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_aes_ccm.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_aes_cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_aes_cmac.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_aes_ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_aes_ctr.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_aes_eax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_aes_eax.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_aes_ecb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_aes_ecb.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_aes_gcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_aes_gcm.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_aes_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_aes_key.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_aes_key_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_aes_key_wrap.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_ascon_aead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_ascon_aead.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_ascon_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_ascon_hash.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_chacha20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_chacha20.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_constant_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_constant_time.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_cshake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_cshake.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_curve25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_curve25519.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_curve448.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_curve448.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_curve_p224.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_curve_p224.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_curve_p256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_curve_p256.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_doxygen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_doxygen.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_ecdh_p224.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_ecdh_p224.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_ecdh_p256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_ecdh_p256.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_ecdh_p256k1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_ecdh_p256k1.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_ecdh_p384.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_ecdh_p384.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_ecdh_p521.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_ecdh_p521.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_ecdsa_p224.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_ecdsa_p224.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_ecdsa_p256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_ecdsa_p256.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_ecdsa_p256k1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_ecdsa_p256k1.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_ecdsa_p384.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_ecdsa_p384.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_ecdsa_p521.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_ecdsa_p521.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_ecjpake_p256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_ecjpake_p256.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_ed25519.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_ed25519ph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_ed25519ph.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_ed448.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_ed448.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_ed448ph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_ed448ph.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_hkdf_sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_hkdf_sha1.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_hkdf_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_hkdf_sha256.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_hkdf_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_hkdf_sha512.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_hmac_sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_hmac_sha1.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_hmac_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_hmac_sha256.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_hmac_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_hmac_sha512.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_kmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_kmac.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_lms_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_lms_sha256.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_lms_shake256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_lms_shake256.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_ml_dsa44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_ml_dsa44.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_ml_dsa65.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_ml_dsa65.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_ml_dsa87.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_ml_dsa87.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_ml_kem1024.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_ml_kem1024.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_ml_kem512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_ml_kem512.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_ml_kem768.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_ml_kem768.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_pbkdf2_sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_pbkdf2_sha1.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_pbkdf2_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_pbkdf2_sha256.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_poly1305.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_rsa.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_rsa_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_rsa_key.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_rsa_operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_rsa_operations.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_rsa_padding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_rsa_padding.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_rsa_primitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_rsa_primitives.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_sc_p224.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_sc_p224.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_sc_p256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_sc_p256.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_secp160r1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_secp160r1.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_sha1.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_sha224.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_sha224.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_sha256.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_sha3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_sha3.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_sha384.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_sha384.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_sha512.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_shake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_shake.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_spake2p_p256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_spake2p_p256.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_srp.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_srtp.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_types.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_types_25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_types_25519.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_types_p256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_types_p256.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_types_srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_types_srp.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_wpa3_sae_p256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_wpa3_sae_p256.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/include/ocrypto_xmss_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/include/ocrypto_xmss_sha256.h -------------------------------------------------------------------------------- /crypto/nrf_oberon/lib/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/lib/license.txt -------------------------------------------------------------------------------- /crypto/nrf_oberon/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/license.txt -------------------------------------------------------------------------------- /crypto/nrf_oberon/nrf_oberon.packsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/crypto/nrf_oberon/nrf_oberon.packsc -------------------------------------------------------------------------------- /doc/links.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/doc/links.txt -------------------------------------------------------------------------------- /doc/shortcuts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/doc/shortcuts.txt -------------------------------------------------------------------------------- /gzll/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/gzll/CHANGELOG.rst -------------------------------------------------------------------------------- /gzll/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/gzll/CMakeLists.txt -------------------------------------------------------------------------------- /gzll/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/gzll/Kconfig -------------------------------------------------------------------------------- /gzll/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/gzll/README.rst -------------------------------------------------------------------------------- /gzll/doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/gzll/doc/api.rst -------------------------------------------------------------------------------- /gzll/doc/integration_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/gzll/doc/integration_notes.rst -------------------------------------------------------------------------------- /gzll/include/nrf_gzll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/gzll/include/nrf_gzll.h -------------------------------------------------------------------------------- /gzll/include/nrf_gzll_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/gzll/include/nrf_gzll_constants.h -------------------------------------------------------------------------------- /gzll/include/nrf_gzll_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/gzll/include/nrf_gzll_glue.h -------------------------------------------------------------------------------- /gzll/lib/nrf52810/soft-float/libgzll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/gzll/lib/nrf52810/soft-float/libgzll.a -------------------------------------------------------------------------------- /gzll/lib/nrf52811/soft-float/libgzll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/gzll/lib/nrf52811/soft-float/libgzll.a -------------------------------------------------------------------------------- /gzll/lib/nrf52820/soft-float/libgzll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/gzll/lib/nrf52820/soft-float/libgzll.a -------------------------------------------------------------------------------- /gzll/lib/nrf52832/hard-float/libgzll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/gzll/lib/nrf52832/hard-float/libgzll.a -------------------------------------------------------------------------------- /gzll/lib/nrf52832/soft-float/libgzll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/gzll/lib/nrf52832/soft-float/libgzll.a -------------------------------------------------------------------------------- /gzll/lib/nrf52833/hard-float/libgzll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/gzll/lib/nrf52833/hard-float/libgzll.a -------------------------------------------------------------------------------- /gzll/lib/nrf52833/soft-float/libgzll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/gzll/lib/nrf52833/soft-float/libgzll.a -------------------------------------------------------------------------------- /gzll/lib/nrf52840/hard-float/libgzll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/gzll/lib/nrf52840/hard-float/libgzll.a -------------------------------------------------------------------------------- /gzll/lib/nrf52840/soft-float/libgzll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/gzll/lib/nrf52840/soft-float/libgzll.a -------------------------------------------------------------------------------- /gzll/lib/nrf5340_cpunet/soft-float/libgzll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/gzll/lib/nrf5340_cpunet/soft-float/libgzll.a -------------------------------------------------------------------------------- /lc3/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/lc3/CHANGELOG.rst -------------------------------------------------------------------------------- /lc3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/lc3/CMakeLists.txt -------------------------------------------------------------------------------- /lc3/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/lc3/Kconfig -------------------------------------------------------------------------------- /lc3/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/lc3/README.rst -------------------------------------------------------------------------------- /lc3/attribution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/lc3/attribution.txt -------------------------------------------------------------------------------- /lc3/codec/inc/LC3API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/lc3/codec/inc/LC3API.h -------------------------------------------------------------------------------- /lc3/doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/lc3/doc/api.rst -------------------------------------------------------------------------------- /lc3/include/sw_codec_lc3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/lc3/include/sw_codec_lc3.h -------------------------------------------------------------------------------- /lc3/lib/cortex-m33/hard-float/libLC3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/lc3/lib/cortex-m33/hard-float/libLC3.a -------------------------------------------------------------------------------- /lc3/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/lc3/license.txt -------------------------------------------------------------------------------- /lc3/platform/os/baremetal/inc/osal_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/lc3/platform/os/baremetal/inc/osal_types.h -------------------------------------------------------------------------------- /lc3/platform/os/baremetal/src/osal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/lc3/platform/os/baremetal/src/osal.c -------------------------------------------------------------------------------- /lc3/platform/os/inc/osal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/lc3/platform/os/inc/osal.h -------------------------------------------------------------------------------- /lc3/platform/os/inc/osal_packed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/lc3/platform/os/inc/osal_packed.h -------------------------------------------------------------------------------- /lc3/src/sw_codec_lc3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/lc3/src/sw_codec_lc3.c -------------------------------------------------------------------------------- /mpsl/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/CHANGELOG.rst -------------------------------------------------------------------------------- /mpsl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/CMakeLists.txt -------------------------------------------------------------------------------- /mpsl/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/Kconfig -------------------------------------------------------------------------------- /mpsl/LICENSE-ATTRIBUTION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/LICENSE-ATTRIBUTION.txt -------------------------------------------------------------------------------- /mpsl/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/README.rst -------------------------------------------------------------------------------- /mpsl/doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/api.rst -------------------------------------------------------------------------------- /mpsl/doc/clock.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/clock.rst -------------------------------------------------------------------------------- /mpsl/doc/cx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/cx.rst -------------------------------------------------------------------------------- /mpsl/doc/fem.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/fem.rst -------------------------------------------------------------------------------- /mpsl/doc/mpsl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/mpsl.rst -------------------------------------------------------------------------------- /mpsl/doc/pic/Architecture_With_RTOS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/pic/Architecture_With_RTOS.svg -------------------------------------------------------------------------------- /mpsl/doc/pic/Architecture_With_RTOS.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/pic/Architecture_With_RTOS.vsdx -------------------------------------------------------------------------------- /mpsl/doc/pic/Architecture_Without_RTOS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/pic/Architecture_Without_RTOS.svg -------------------------------------------------------------------------------- /mpsl/doc/pic/Architecture_Without_RTOS.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/pic/Architecture_Without_RTOS.vsdx -------------------------------------------------------------------------------- /mpsl/doc/pic/FEM_sequence_nRF21540.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/pic/FEM_sequence_nRF21540.svg -------------------------------------------------------------------------------- /mpsl/doc/pic/FEM_sequence_nrf21540.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/pic/FEM_sequence_nrf21540.puml -------------------------------------------------------------------------------- /mpsl/doc/pic/FEM_sequence_simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/pic/FEM_sequence_simple.svg -------------------------------------------------------------------------------- /mpsl/doc/pic/FEM_sequence_simple.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/pic/FEM_sequence_simple.vsdx -------------------------------------------------------------------------------- /mpsl/doc/pic/FEM_timing_nRF21540.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/pic/FEM_timing_nRF21540.puml -------------------------------------------------------------------------------- /mpsl/doc/pic/FEM_timing_nRF21540.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/pic/FEM_timing_nRF21540.svg -------------------------------------------------------------------------------- /mpsl/doc/pic/FEM_timing_simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/pic/FEM_timing_simple.svg -------------------------------------------------------------------------------- /mpsl/doc/pic/FEM_timing_simple.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/pic/FEM_timing_simple.vsdx -------------------------------------------------------------------------------- /mpsl/doc/pic/cx_3w_timing_param.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/pic/cx_3w_timing_param.svg -------------------------------------------------------------------------------- /mpsl/doc/pic/cx_3w_timing_param.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/pic/cx_3w_timing_param.vsdx -------------------------------------------------------------------------------- /mpsl/doc/pic/radio_notification_two_events.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/pic/radio_notification_two_events.svg -------------------------------------------------------------------------------- /mpsl/doc/pic/radio_notification_two_events.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/pic/radio_notification_two_events.vsdx -------------------------------------------------------------------------------- /mpsl/doc/pic/timeslot_blocked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/pic/timeslot_blocked.svg -------------------------------------------------------------------------------- /mpsl/doc/pic/timeslot_blocked.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/pic/timeslot_blocked.vsdx -------------------------------------------------------------------------------- /mpsl/doc/pic/timeslot_canceled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/pic/timeslot_canceled.svg -------------------------------------------------------------------------------- /mpsl/doc/pic/timeslot_canceled.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/pic/timeslot_canceled.vsdx -------------------------------------------------------------------------------- /mpsl/doc/pic/timeslot_extend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/pic/timeslot_extend.svg -------------------------------------------------------------------------------- /mpsl/doc/pic/timeslot_extend.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/pic/timeslot_extend.vsdx -------------------------------------------------------------------------------- /mpsl/doc/pic/timeslot_normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/pic/timeslot_normal.svg -------------------------------------------------------------------------------- /mpsl/doc/pic/timeslot_normal.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/pic/timeslot_normal.vsdx -------------------------------------------------------------------------------- /mpsl/doc/pm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/pm.rst -------------------------------------------------------------------------------- /mpsl/doc/timeslot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/timeslot.rst -------------------------------------------------------------------------------- /mpsl/doc/tx_power_control.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/doc/tx_power_control.rst -------------------------------------------------------------------------------- /mpsl/fem/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/CMakeLists.txt -------------------------------------------------------------------------------- /mpsl/fem/common/lib/nrf52/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/common/lib/nrf52/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/common/lib/nrf52_bsim/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/common/lib/nrf52_bsim/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/common/lib/nrf53/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/common/lib/nrf53/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/common/lib/nrf53_bsim/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/common/lib/nrf53_bsim/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/common/lib/nrf54h/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/common/lib/nrf54h/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/common/lib/nrf54l/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/common/lib/nrf54l/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/common/lib/nrf54l_bsim/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/common/lib/nrf54l_bsim/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/common/lib/nrf54l_ns/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/common/lib/nrf54l_ns/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/common/lib/nrf71/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/common/lib/nrf71/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/include/mpsl_fem_config_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/include/mpsl_fem_config_common.h -------------------------------------------------------------------------------- /mpsl/fem/include/mpsl_fem_config_nrf21540_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/include/mpsl_fem_config_nrf21540_common.h -------------------------------------------------------------------------------- /mpsl/fem/include/mpsl_fem_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/include/mpsl_fem_init.h -------------------------------------------------------------------------------- /mpsl/fem/include/mpsl_fem_power_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/include/mpsl_fem_power_model.h -------------------------------------------------------------------------------- /mpsl/fem/include/mpsl_fem_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/include/mpsl_fem_types.h -------------------------------------------------------------------------------- /mpsl/fem/include/protocol/mpsl_fem_protocol_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/include/protocol/mpsl_fem_protocol_api.h -------------------------------------------------------------------------------- /mpsl/fem/nrf21540_gpio/lib/nrf52/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf21540_gpio/lib/nrf52/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf21540_gpio/lib/nrf52_bsim/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf21540_gpio/lib/nrf52_bsim/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf21540_gpio/lib/nrf53/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf21540_gpio/lib/nrf53/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf21540_gpio/lib/nrf53_bsim/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf21540_gpio/lib/nrf53_bsim/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf21540_gpio/lib/nrf54h/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf21540_gpio/lib/nrf54h/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf21540_gpio/lib/nrf54l/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf21540_gpio/lib/nrf54l/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf21540_gpio/lib/nrf54l_bsim/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf21540_gpio/lib/nrf54l_bsim/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf21540_gpio/lib/nrf54l_ns/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf21540_gpio/lib/nrf54l_ns/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf21540_gpio/lib/nrf71/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf21540_gpio/lib/nrf71/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf21540_gpio_spi/lib/nrf52/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf21540_gpio_spi/lib/nrf52/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf21540_gpio_spi/lib/nrf53/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf21540_gpio_spi/lib/nrf53/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf21540_gpio_spi/lib/nrf54h/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf21540_gpio_spi/lib/nrf54h/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf21540_gpio_spi/lib/nrf54l/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf21540_gpio_spi/lib/nrf54l/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf21540_gpio_spi/lib/nrf71/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf21540_gpio_spi/lib/nrf71/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf2220/include/mpsl_fem_config_nrf2220.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf2220/include/mpsl_fem_config_nrf2220.h -------------------------------------------------------------------------------- /mpsl/fem/nrf2220/lib/nrf52/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf2220/lib/nrf52/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf2220/lib/nrf52_bsim/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf2220/lib/nrf52_bsim/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf2220/lib/nrf53/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf2220/lib/nrf53/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf2220/lib/nrf53_bsim/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf2220/lib/nrf53_bsim/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf2220/lib/nrf54h/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf2220/lib/nrf54h/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf2220/lib/nrf54l/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf2220/lib/nrf54l/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf2220/lib/nrf54l_bsim/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf2220/lib/nrf54l_bsim/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf2220/lib/nrf54l_ns/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf2220/lib/nrf54l_ns/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf2220/lib/nrf71/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf2220/lib/nrf71/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf2240/include/mpsl_fem_config_nrf2240.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf2240/include/mpsl_fem_config_nrf2240.h -------------------------------------------------------------------------------- /mpsl/fem/nrf2240/lib/nrf52/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf2240/lib/nrf52/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf2240/lib/nrf52_bsim/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf2240/lib/nrf52_bsim/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf2240/lib/nrf53/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf2240/lib/nrf53/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf2240/lib/nrf53_bsim/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf2240/lib/nrf53_bsim/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf2240/lib/nrf54h/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf2240/lib/nrf54h/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf2240/lib/nrf54l/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf2240/lib/nrf54l/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf2240/lib/nrf54l_bsim/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf2240/lib/nrf54l_bsim/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf2240/lib/nrf54l_ns/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf2240/lib/nrf54l_ns/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf2240/lib/nrf71/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf2240/lib/nrf71/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf22xx/lib/nrf52/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf22xx/lib/nrf52/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf22xx/lib/nrf52_bsim/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf22xx/lib/nrf52_bsim/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf22xx/lib/nrf53/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf22xx/lib/nrf53/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf22xx/lib/nrf53_bsim/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf22xx/lib/nrf53_bsim/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf22xx/lib/nrf54h/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf22xx/lib/nrf54h/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf22xx/lib/nrf54l/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf22xx/lib/nrf54l/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf22xx/lib/nrf54l_bsim/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf22xx/lib/nrf54l_bsim/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf22xx/lib/nrf54l_ns/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf22xx/lib/nrf54l_ns/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/nrf22xx/lib/nrf71/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/nrf22xx/lib/nrf71/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/simple_gpio/lib/nrf52/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/simple_gpio/lib/nrf52/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/simple_gpio/lib/nrf52_bsim/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/simple_gpio/lib/nrf52_bsim/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/simple_gpio/lib/nrf53/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/simple_gpio/lib/nrf53/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/simple_gpio/lib/nrf53_bsim/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/simple_gpio/lib/nrf53_bsim/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/simple_gpio/lib/nrf54h/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/simple_gpio/lib/nrf54h/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/simple_gpio/lib/nrf54l/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/simple_gpio/lib/nrf54l/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/simple_gpio/lib/nrf54l_bsim/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/simple_gpio/lib/nrf54l_bsim/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/simple_gpio/lib/nrf54l_ns/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/simple_gpio/lib/nrf54l_ns/manifest.yaml -------------------------------------------------------------------------------- /mpsl/fem/simple_gpio/lib/nrf71/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/fem/simple_gpio/lib/nrf71/manifest.yaml -------------------------------------------------------------------------------- /mpsl/include/mpsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/include/mpsl.h -------------------------------------------------------------------------------- /mpsl/include/mpsl_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/include/mpsl_clock.h -------------------------------------------------------------------------------- /mpsl/include/mpsl_cx_abstract_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/include/mpsl_cx_abstract_interface.h -------------------------------------------------------------------------------- /mpsl/include/mpsl_ecb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/include/mpsl_ecb.h -------------------------------------------------------------------------------- /mpsl/include/mpsl_hwres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/include/mpsl_hwres.h -------------------------------------------------------------------------------- /mpsl/include/mpsl_hwres_ppi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/include/mpsl_hwres_ppi.h -------------------------------------------------------------------------------- /mpsl/include/mpsl_pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/include/mpsl_pm.h -------------------------------------------------------------------------------- /mpsl/include/mpsl_pm_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/include/mpsl_pm_config.h -------------------------------------------------------------------------------- /mpsl/include/mpsl_temp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/include/mpsl_temp.h -------------------------------------------------------------------------------- /mpsl/include/mpsl_timeslot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/include/mpsl_timeslot.h -------------------------------------------------------------------------------- /mpsl/include/mpsl_tx_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/include/mpsl_tx_power.h -------------------------------------------------------------------------------- /mpsl/include/nrf_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/include/nrf_errno.h -------------------------------------------------------------------------------- /mpsl/include/protocol/mpsl_cx_protocol_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/include/protocol/mpsl_cx_protocol_api.h -------------------------------------------------------------------------------- /mpsl/include/protocol/mpsl_dppi_protocol_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/include/protocol/mpsl_dppi_protocol_api.h -------------------------------------------------------------------------------- /mpsl/include/protocol/mpsl_rtc_protocol_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/include/protocol/mpsl_rtc_protocol_api.h -------------------------------------------------------------------------------- /mpsl/lib/nrf52/hard-float/libmpsl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/lib/nrf52/hard-float/libmpsl.a -------------------------------------------------------------------------------- /mpsl/lib/nrf52/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/lib/nrf52/manifest.yaml -------------------------------------------------------------------------------- /mpsl/lib/nrf52/soft-float/libmpsl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/lib/nrf52/soft-float/libmpsl.a -------------------------------------------------------------------------------- /mpsl/lib/nrf52/softfp-float/libmpsl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/lib/nrf52/softfp-float/libmpsl.a -------------------------------------------------------------------------------- /mpsl/lib/nrf52_bsim/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/lib/nrf52_bsim/manifest.yaml -------------------------------------------------------------------------------- /mpsl/lib/nrf52_bsim/soft-float/libmpsl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/lib/nrf52_bsim/soft-float/libmpsl.a -------------------------------------------------------------------------------- /mpsl/lib/nrf53/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/lib/nrf53/manifest.yaml -------------------------------------------------------------------------------- /mpsl/lib/nrf53/soft-float/libmpsl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/lib/nrf53/soft-float/libmpsl.a -------------------------------------------------------------------------------- /mpsl/lib/nrf53_bsim/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/lib/nrf53_bsim/manifest.yaml -------------------------------------------------------------------------------- /mpsl/lib/nrf53_bsim/soft-float/libmpsl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/lib/nrf53_bsim/soft-float/libmpsl.a -------------------------------------------------------------------------------- /mpsl/lib/nrf54h/hard-float/libmpsl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/lib/nrf54h/hard-float/libmpsl.a -------------------------------------------------------------------------------- /mpsl/lib/nrf54h/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/lib/nrf54h/manifest.yaml -------------------------------------------------------------------------------- /mpsl/lib/nrf54h/soft-float/libmpsl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/lib/nrf54h/soft-float/libmpsl.a -------------------------------------------------------------------------------- /mpsl/lib/nrf54h/softfp-float/libmpsl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/lib/nrf54h/softfp-float/libmpsl.a -------------------------------------------------------------------------------- /mpsl/lib/nrf54l/hard-float/libmpsl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/lib/nrf54l/hard-float/libmpsl.a -------------------------------------------------------------------------------- /mpsl/lib/nrf54l/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/lib/nrf54l/manifest.yaml -------------------------------------------------------------------------------- /mpsl/lib/nrf54l/soft-float/libmpsl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/lib/nrf54l/soft-float/libmpsl.a -------------------------------------------------------------------------------- /mpsl/lib/nrf54l/softfp-float/libmpsl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/lib/nrf54l/softfp-float/libmpsl.a -------------------------------------------------------------------------------- /mpsl/lib/nrf54l_bsim/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/lib/nrf54l_bsim/manifest.yaml -------------------------------------------------------------------------------- /mpsl/lib/nrf54l_bsim/soft-float/libmpsl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/lib/nrf54l_bsim/soft-float/libmpsl.a -------------------------------------------------------------------------------- /mpsl/lib/nrf54l_ns/hard-float/libmpsl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/lib/nrf54l_ns/hard-float/libmpsl.a -------------------------------------------------------------------------------- /mpsl/lib/nrf54l_ns/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/lib/nrf54l_ns/manifest.yaml -------------------------------------------------------------------------------- /mpsl/lib/nrf54l_ns/soft-float/libmpsl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/lib/nrf54l_ns/soft-float/libmpsl.a -------------------------------------------------------------------------------- /mpsl/lib/nrf54l_ns/softfp-float/libmpsl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/lib/nrf54l_ns/softfp-float/libmpsl.a -------------------------------------------------------------------------------- /mpsl/lib/nrf71/hard-float/libmpsl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/lib/nrf71/hard-float/libmpsl.a -------------------------------------------------------------------------------- /mpsl/lib/nrf71/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/lib/nrf71/manifest.yaml -------------------------------------------------------------------------------- /mpsl/lib/nrf71/soft-float/libmpsl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/lib/nrf71/soft-float/libmpsl.a -------------------------------------------------------------------------------- /mpsl/lib/nrf71/softfp-float/libmpsl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/lib/nrf71/softfp-float/libmpsl.a -------------------------------------------------------------------------------- /mpsl/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/mpsl/license.txt -------------------------------------------------------------------------------- /nfc/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nfc/CHANGELOG.rst -------------------------------------------------------------------------------- /nfc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nfc/CMakeLists.txt -------------------------------------------------------------------------------- /nfc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nfc/Kconfig -------------------------------------------------------------------------------- /nfc/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nfc/README.rst -------------------------------------------------------------------------------- /nfc/doc/integration_notes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nfc/doc/integration_notes.rst -------------------------------------------------------------------------------- /nfc/doc/type_2_tag.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nfc/doc/type_2_tag.rst -------------------------------------------------------------------------------- /nfc/doc/type_4_tag.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nfc/doc/type_4_tag.rst -------------------------------------------------------------------------------- /nfc/include/nfc_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nfc/include/nfc_platform.h -------------------------------------------------------------------------------- /nfc/include/nfc_t2t_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nfc/include/nfc_t2t_lib.h -------------------------------------------------------------------------------- /nfc/include/nfc_t4t_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nfc/include/nfc_t4t_lib.h -------------------------------------------------------------------------------- /nfc/include/nrf_nfc_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nfc/include/nrf_nfc_errno.h -------------------------------------------------------------------------------- /nfc/lib/cortex-m33/hard-float/libnfc_t2t.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nfc/lib/cortex-m33/hard-float/libnfc_t2t.a -------------------------------------------------------------------------------- /nfc/lib/cortex-m33/hard-float/libnfc_t4t.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nfc/lib/cortex-m33/hard-float/libnfc_t4t.a -------------------------------------------------------------------------------- /nfc/lib/cortex-m33/soft-float/libnfc_t2t.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nfc/lib/cortex-m33/soft-float/libnfc_t2t.a -------------------------------------------------------------------------------- /nfc/lib/cortex-m33/soft-float/libnfc_t4t.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nfc/lib/cortex-m33/soft-float/libnfc_t4t.a -------------------------------------------------------------------------------- /nfc/lib/cortex-m4/hard-float/libnfc_t2t.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nfc/lib/cortex-m4/hard-float/libnfc_t2t.a -------------------------------------------------------------------------------- /nfc/lib/cortex-m4/hard-float/libnfc_t4t.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nfc/lib/cortex-m4/hard-float/libnfc_t4t.a -------------------------------------------------------------------------------- /nfc/lib/cortex-m4/soft-float/libnfc_t2t.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nfc/lib/cortex-m4/soft-float/libnfc_t2t.a -------------------------------------------------------------------------------- /nfc/lib/cortex-m4/soft-float/libnfc_t4t.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nfc/lib/cortex-m4/soft-float/libnfc_t4t.a -------------------------------------------------------------------------------- /nfc/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nfc/license.txt -------------------------------------------------------------------------------- /nfc/src/nfc_nrfx_error_to_nfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nfc/src/nfc_nrfx_error_to_nfc.c -------------------------------------------------------------------------------- /nrf71_wifi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf71_wifi/CMakeLists.txt -------------------------------------------------------------------------------- /nrf71_wifi/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf71_wifi/Kconfig -------------------------------------------------------------------------------- /nrf71_wifi/include/nrf71_wifi_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf71_wifi/include/nrf71_wifi_common.h -------------------------------------------------------------------------------- /nrf71_wifi/include/nrf71_wifi_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf71_wifi/include/nrf71_wifi_ctrl.h -------------------------------------------------------------------------------- /nrf_802154/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/CMakeLists.txt -------------------------------------------------------------------------------- /nrf_802154/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/LICENSE -------------------------------------------------------------------------------- /nrf_802154/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/README.rst -------------------------------------------------------------------------------- /nrf_802154/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/common/CMakeLists.txt -------------------------------------------------------------------------------- /nrf_802154/common/include/nrf_802154.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/common/include/nrf_802154.h -------------------------------------------------------------------------------- /nrf_802154/common/include/nrf_802154_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/common/include/nrf_802154_assert.h -------------------------------------------------------------------------------- /nrf_802154/common/include/nrf_802154_callouts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/common/include/nrf_802154_callouts.h -------------------------------------------------------------------------------- /nrf_802154/common/include/nrf_802154_common_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/common/include/nrf_802154_common_utils.h -------------------------------------------------------------------------------- /nrf_802154/common/include/nrf_802154_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/common/include/nrf_802154_compiler.h -------------------------------------------------------------------------------- /nrf_802154/common/include/nrf_802154_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/common/include/nrf_802154_config.h -------------------------------------------------------------------------------- /nrf_802154/common/include/nrf_802154_config_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/common/include/nrf_802154_config_soc.h -------------------------------------------------------------------------------- /nrf_802154/common/include/nrf_802154_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/common/include/nrf_802154_const.h -------------------------------------------------------------------------------- /nrf_802154/common/include/nrf_802154_nrfx_addons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/common/include/nrf_802154_nrfx_addons.h -------------------------------------------------------------------------------- /nrf_802154/common/include/nrf_802154_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/common/include/nrf_802154_types.h -------------------------------------------------------------------------------- /nrf_802154/common/src/nrf_802154_common_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/common/src/nrf_802154_common_utils.c -------------------------------------------------------------------------------- /nrf_802154/doc/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/CHANGELOG.rst -------------------------------------------------------------------------------- /nrf_802154/doc/antenna_diversity.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/antenna_diversity.rst -------------------------------------------------------------------------------- /nrf_802154/doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/api.rst -------------------------------------------------------------------------------- /nrf_802154/doc/architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/architecture.rst -------------------------------------------------------------------------------- /nrf_802154/doc/feature_description.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/feature_description.rst -------------------------------------------------------------------------------- /nrf_802154/doc/hardware_resources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/hardware_resources.rst -------------------------------------------------------------------------------- /nrf_802154/doc/images/ant_diversity_interface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/images/ant_diversity_interface.svg -------------------------------------------------------------------------------- /nrf_802154/doc/images/ant_diversity_interface.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/images/ant_diversity_interface.vsdx -------------------------------------------------------------------------------- /nrf_802154/doc/images/ant_diversity_manual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/images/ant_diversity_manual.png -------------------------------------------------------------------------------- /nrf_802154/doc/images/ant_diversity_manual.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/images/ant_diversity_manual.svg -------------------------------------------------------------------------------- /nrf_802154/doc/images/ant_diversity_manual.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/images/ant_diversity_manual.vsdx -------------------------------------------------------------------------------- /nrf_802154/doc/images/ant_diversity_rx_procedure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/images/ant_diversity_rx_procedure.svg -------------------------------------------------------------------------------- /nrf_802154/doc/images/ant_diversity_rx_timeout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/images/ant_diversity_rx_timeout.svg -------------------------------------------------------------------------------- /nrf_802154/doc/images/ant_diversity_rx_timeout.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/images/ant_diversity_rx_timeout.vsdx -------------------------------------------------------------------------------- /nrf_802154/doc/images/ant_diversity_rx_timing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/images/ant_diversity_rx_timing.svg -------------------------------------------------------------------------------- /nrf_802154/doc/images/ant_diversity_rx_timing.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/images/ant_diversity_rx_timing.vsdx -------------------------------------------------------------------------------- /nrf_802154/doc/images/coex_timings/rd_coex_rx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/images/coex_timings/rd_coex_rx.json -------------------------------------------------------------------------------- /nrf_802154/doc/images/coex_timings/rd_coex_rx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/images/coex_timings/rd_coex_rx.png -------------------------------------------------------------------------------- /nrf_802154/doc/images/dynamic_multiprotocol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/images/dynamic_multiprotocol.svg -------------------------------------------------------------------------------- /nrf_802154/doc/images/dynamic_multiprotocol.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/images/dynamic_multiprotocol.vsdx -------------------------------------------------------------------------------- /nrf_802154/doc/images/fem-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/images/fem-chart.svg -------------------------------------------------------------------------------- /nrf_802154/doc/images/fem-chart.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/images/fem-chart.vsdx -------------------------------------------------------------------------------- /nrf_802154/doc/images/radio_driver_architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/images/radio_driver_architecture.svg -------------------------------------------------------------------------------- /nrf_802154/doc/images/radio_driver_architecture.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/images/radio_driver_architecture.vsdx -------------------------------------------------------------------------------- /nrf_802154/doc/multiprotocol_support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/multiprotocol_support.rst -------------------------------------------------------------------------------- /nrf_802154/doc/multiprotocol_switching_tables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/multiprotocol_switching_tables.rst -------------------------------------------------------------------------------- /nrf_802154/doc/rd_including.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/rd_including.rst -------------------------------------------------------------------------------- /nrf_802154/doc/rd_limitations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/rd_limitations.rst -------------------------------------------------------------------------------- /nrf_802154/doc/rd_service_layer_lib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/rd_service_layer_lib.rst -------------------------------------------------------------------------------- /nrf_802154/doc/wifi_coex_module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/doc/wifi_coex_module.rst -------------------------------------------------------------------------------- /nrf_802154/driver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/CMakeLists.txt -------------------------------------------------------------------------------- /nrf_802154/driver/include/nrf_802154_irq_handlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/include/nrf_802154_irq_handlers.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154.c -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_aes_ccm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_aes_ccm.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_aes_ccm_acc_ccm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_aes_ccm_acc_ccm.c -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_aes_ccm_acc_ecb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_aes_ccm_acc_ecb.c -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_bsim_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_bsim_utils.c -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_bsim_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_bsim_utils.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_co.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_co.c -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_co.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_co.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_core.c -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_core.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_core_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_core_hooks.c -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_core_hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_core_hooks.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_critical_section.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_critical_section.c -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_critical_section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_critical_section.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_debug.c -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_debug.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_debug_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_debug_gpio.c -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_debug_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_debug_log.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_debug_log_codes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_debug_log_codes.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_debug_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_debug_peripherals.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_encrypt.c -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_encrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_encrypt.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_facade_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_facade_helpers.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_notification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_notification.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_notification_swi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_notification_swi.c -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_peripherals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_peripherals.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_peripherals_nrf52.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_peripherals_nrf52.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_peripherals_nrf53.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_peripherals_nrf53.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_pib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_pib.c -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_pib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_pib.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_queue.c -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_queue.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_request.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_request_direct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_request_direct.c -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_request_swi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_request_swi.c -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_rssi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_rssi.c -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_rssi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_rssi.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_rx_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_rx_buffer.c -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_rx_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_rx_buffer.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_stats.c -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_stats.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_swi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_swi.c -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_swi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_swi.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_swi_callouts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_swi_callouts.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_swi_callouts_weak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_swi_callouts_weak.c -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_trx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_trx.c -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_trx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_trx.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_trx_dppi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_trx_dppi.c -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_trx_ppi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_trx_ppi.c -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_trx_ppi_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_trx_ppi_api.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_tx_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_tx_power.c -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_tx_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_tx_power.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_tx_work_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_tx_work_buffer.c -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_tx_work_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_tx_work_buffer.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_types_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_types_internal.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_utils.h -------------------------------------------------------------------------------- /nrf_802154/driver/src/nrf_802154_utils_byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/driver/src/nrf_802154_utils_byteorder.h -------------------------------------------------------------------------------- /nrf_802154/serialization/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/serialization/CMakeLists.txt -------------------------------------------------------------------------------- /nrf_802154/serialization/spinel_base/spinel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/serialization/spinel_base/spinel.c -------------------------------------------------------------------------------- /nrf_802154/serialization/spinel_base/spinel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/serialization/spinel_base/spinel.h -------------------------------------------------------------------------------- /nrf_802154/serialization/src/nrf_802154_kvmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/serialization/src/nrf_802154_kvmap.c -------------------------------------------------------------------------------- /nrf_802154/serialization/src/nrf_802154_spinel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/serialization/src/nrf_802154_spinel.c -------------------------------------------------------------------------------- /nrf_802154/serialization/src/nrf_802154_spinel_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/serialization/src/nrf_802154_spinel_app.c -------------------------------------------------------------------------------- /nrf_802154/serialization/src/nrf_802154_spinel_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/serialization/src/nrf_802154_spinel_dec.c -------------------------------------------------------------------------------- /nrf_802154/serialization/src/nrf_802154_spinel_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/serialization/src/nrf_802154_spinel_net.c -------------------------------------------------------------------------------- /nrf_802154/sl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/CMakeLists.txt -------------------------------------------------------------------------------- /nrf_802154/sl/include/nrf_802154_fal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/include/nrf_802154_fal.h -------------------------------------------------------------------------------- /nrf_802154/sl/include/nrf_802154_sl_ant_div.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/include/nrf_802154_sl_ant_div.h -------------------------------------------------------------------------------- /nrf_802154/sl/include/nrf_802154_sl_atomic_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/include/nrf_802154_sl_atomic_list.h -------------------------------------------------------------------------------- /nrf_802154/sl/include/nrf_802154_sl_atomics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/include/nrf_802154_sl_atomics.h -------------------------------------------------------------------------------- /nrf_802154/sl/include/nrf_802154_sl_capabilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/include/nrf_802154_sl_capabilities.h -------------------------------------------------------------------------------- /nrf_802154/sl/include/nrf_802154_sl_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/include/nrf_802154_sl_config.h -------------------------------------------------------------------------------- /nrf_802154/sl/include/nrf_802154_sl_crit_sect_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/include/nrf_802154_sl_crit_sect_if.h -------------------------------------------------------------------------------- /nrf_802154/sl/include/nrf_802154_sl_fault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/include/nrf_802154_sl_fault.h -------------------------------------------------------------------------------- /nrf_802154/sl/include/nrf_802154_sl_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/include/nrf_802154_sl_log.h -------------------------------------------------------------------------------- /nrf_802154/sl/include/nrf_802154_sl_rsch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/include/nrf_802154_sl_rsch.h -------------------------------------------------------------------------------- /nrf_802154/sl/include/nrf_802154_sl_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/include/nrf_802154_sl_stats.h -------------------------------------------------------------------------------- /nrf_802154/sl/include/nrf_802154_sl_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/include/nrf_802154_sl_timer.h -------------------------------------------------------------------------------- /nrf_802154/sl/include/nrf_802154_sl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/include/nrf_802154_sl_types.h -------------------------------------------------------------------------------- /nrf_802154/sl/include/nrf_802154_sl_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/include/nrf_802154_sl_utils.h -------------------------------------------------------------------------------- /nrf_802154/sl/include/platform/nrf_802154_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/include/platform/nrf_802154_clock.h -------------------------------------------------------------------------------- /nrf_802154/sl/include/platform/nrf_802154_hp_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/include/platform/nrf_802154_hp_timer.h -------------------------------------------------------------------------------- /nrf_802154/sl/include/platform/nrf_802154_irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/include/platform/nrf_802154_irq.h -------------------------------------------------------------------------------- /nrf_802154/sl/include/rsch/nrf_802154_rsch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/include/rsch/nrf_802154_rsch.h -------------------------------------------------------------------------------- /nrf_802154/sl/include/timer/nrf_802154_timer_coord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/include/timer/nrf_802154_timer_coord.h -------------------------------------------------------------------------------- /nrf_802154/sl/sl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/sl/CMakeLists.txt -------------------------------------------------------------------------------- /nrf_802154/sl/sl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/sl/LICENSE -------------------------------------------------------------------------------- /nrf_802154/sl/sl/include/nrf_802154_sl_periphs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/sl/include/nrf_802154_sl_periphs.h -------------------------------------------------------------------------------- /nrf_802154/sl/sl_opensource/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/sl_opensource/CMakeLists.txt -------------------------------------------------------------------------------- /nrf_802154/sl/sl_opensource/include/mpsl_tx_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/sl_opensource/include/mpsl_tx_power.h -------------------------------------------------------------------------------- /nrf_802154/sl/sl_opensource/include/nrf_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/sl_opensource/include/nrf_errno.h -------------------------------------------------------------------------------- /nrf_802154/sl/sl_opensource/src/nrf_802154_sl_coex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/sl_opensource/src/nrf_802154_sl_coex.c -------------------------------------------------------------------------------- /nrf_802154/sl/sl_opensource/src/nrf_802154_sl_fem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/sl_opensource/src/nrf_802154_sl_fem.c -------------------------------------------------------------------------------- /nrf_802154/sl/sl_opensource/src/nrf_802154_sl_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/sl_opensource/src/nrf_802154_sl_log.c -------------------------------------------------------------------------------- /nrf_802154/sl/sl_opensource/src/nrf_802154_sl_rsch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/sl/sl_opensource/src/nrf_802154_sl_rsch.c -------------------------------------------------------------------------------- /nrf_802154/zephyr/Kconfig.nrfxlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_802154/zephyr/Kconfig.nrfxlib -------------------------------------------------------------------------------- /nrf_dm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_dm/CMakeLists.txt -------------------------------------------------------------------------------- /nrf_dm/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_dm/Kconfig -------------------------------------------------------------------------------- /nrf_dm/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_dm/README.rst -------------------------------------------------------------------------------- /nrf_dm/doc/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_dm/doc/CHANGELOG.rst -------------------------------------------------------------------------------- /nrf_dm/doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_dm/doc/api.rst -------------------------------------------------------------------------------- /nrf_dm/doc/nrf_dm_overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_dm/doc/nrf_dm_overview.rst -------------------------------------------------------------------------------- /nrf_dm/doc/nrf_dm_usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_dm/doc/nrf_dm_usage.rst -------------------------------------------------------------------------------- /nrf_dm/include/nrf_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_dm/include/nrf_dm.h -------------------------------------------------------------------------------- /nrf_dm/include/nrf_dm_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_dm/include/nrf_dm_version.h -------------------------------------------------------------------------------- /nrf_dm/lib/nrf52832/hard-float/libnrf_dm.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_dm/lib/nrf52832/hard-float/libnrf_dm.a -------------------------------------------------------------------------------- /nrf_dm/lib/nrf52833/hard-float/libnrf_dm.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_dm/lib/nrf52833/hard-float/libnrf_dm.a -------------------------------------------------------------------------------- /nrf_dm/lib/nrf52840/hard-float/libnrf_dm.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_dm/lib/nrf52840/hard-float/libnrf_dm.a -------------------------------------------------------------------------------- /nrf_dm/lib/nrf5340_cpunet/soft-float/libnrf_dm.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_dm/lib/nrf5340_cpunet/soft-float/libnrf_dm.a -------------------------------------------------------------------------------- /nrf_dm/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_dm/license.txt -------------------------------------------------------------------------------- /nrf_fuel_gauge/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_fuel_gauge/CHANGELOG.rst -------------------------------------------------------------------------------- /nrf_fuel_gauge/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_fuel_gauge/CMakeLists.txt -------------------------------------------------------------------------------- /nrf_fuel_gauge/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_fuel_gauge/Kconfig -------------------------------------------------------------------------------- /nrf_fuel_gauge/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_fuel_gauge/README.rst -------------------------------------------------------------------------------- /nrf_fuel_gauge/doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_fuel_gauge/doc/api.rst -------------------------------------------------------------------------------- /nrf_fuel_gauge/include/nrf_fuel_gauge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_fuel_gauge/include/nrf_fuel_gauge.h -------------------------------------------------------------------------------- /nrf_fuel_gauge/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_fuel_gauge/license.txt -------------------------------------------------------------------------------- /nrf_modem/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/CMakeLists.txt -------------------------------------------------------------------------------- /nrf_modem/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/Kconfig -------------------------------------------------------------------------------- /nrf_modem/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/README.rst -------------------------------------------------------------------------------- /nrf_modem/doc/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/CHANGELOG.rst -------------------------------------------------------------------------------- /nrf_modem/doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/api.rst -------------------------------------------------------------------------------- /nrf_modem/doc/architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/architecture.rst -------------------------------------------------------------------------------- /nrf_modem/doc/at_interface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/at_interface.rst -------------------------------------------------------------------------------- /nrf_modem/doc/bootloader.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/bootloader.rst -------------------------------------------------------------------------------- /nrf_modem/doc/dectphy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/dectphy.rst -------------------------------------------------------------------------------- /nrf_modem/doc/delta_dfu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/delta_dfu.rst -------------------------------------------------------------------------------- /nrf_modem/doc/fault_handling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/fault_handling.rst -------------------------------------------------------------------------------- /nrf_modem/doc/gnss_interface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/gnss_interface.rst -------------------------------------------------------------------------------- /nrf_modem/doc/images/delta_dfu_rollback.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/images/delta_dfu_rollback.svg -------------------------------------------------------------------------------- /nrf_modem/doc/images/delta_dfu_update.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/images/delta_dfu_update.svg -------------------------------------------------------------------------------- /nrf_modem/doc/images/nrf_modem_architecture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/images/nrf_modem_architecture.svg -------------------------------------------------------------------------------- /nrf_modem/doc/images/nrf_modem_layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/images/nrf_modem_layers.svg -------------------------------------------------------------------------------- /nrf_modem/doc/images/nrf_modem_memory.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/images/nrf_modem_memory.svg -------------------------------------------------------------------------------- /nrf_modem/doc/images/nrf_modem_timers_sequence.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/images/nrf_modem_timers_sequence.svg -------------------------------------------------------------------------------- /nrf_modem/doc/limitations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/limitations.rst -------------------------------------------------------------------------------- /nrf_modem/doc/logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/logging.rst -------------------------------------------------------------------------------- /nrf_modem/doc/modem_trace.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/modem_trace.rst -------------------------------------------------------------------------------- /nrf_modem/doc/sockets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/sockets.rst -------------------------------------------------------------------------------- /nrf_modem/doc/sockets/images/security_tags.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/sockets/images/security_tags.svg -------------------------------------------------------------------------------- /nrf_modem/doc/sockets/images/security_tags2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/sockets/images/security_tags2.svg -------------------------------------------------------------------------------- /nrf_modem/doc/sockets/pdn.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/sockets/pdn.rst -------------------------------------------------------------------------------- /nrf_modem/doc/sockets/rai.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/sockets/rai.rst -------------------------------------------------------------------------------- /nrf_modem/doc/sockets/raw_sockets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/sockets/raw_sockets.rst -------------------------------------------------------------------------------- /nrf_modem/doc/sockets/socket_options_func.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/sockets/socket_options_func.rst -------------------------------------------------------------------------------- /nrf_modem/doc/sockets/tls_dtls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/sockets/tls_dtls.rst -------------------------------------------------------------------------------- /nrf_modem/doc/softsim_interface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/softsim_interface.rst -------------------------------------------------------------------------------- /nrf_modem/doc/ug_nrf_modem_porting_os.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/ug_nrf_modem_porting_os.rst -------------------------------------------------------------------------------- /nrf_modem/doc/variant_features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/doc/variant_features.rst -------------------------------------------------------------------------------- /nrf_modem/include/nrf_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/include/nrf_errno.h -------------------------------------------------------------------------------- /nrf_modem/include/nrf_gai_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/include/nrf_gai_errors.h -------------------------------------------------------------------------------- /nrf_modem/include/nrf_modem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/include/nrf_modem.h -------------------------------------------------------------------------------- /nrf_modem/include/nrf_modem_at.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/include/nrf_modem_at.h -------------------------------------------------------------------------------- /nrf_modem/include/nrf_modem_bootloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/include/nrf_modem_bootloader.h -------------------------------------------------------------------------------- /nrf_modem/include/nrf_modem_dect_clock_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/include/nrf_modem_dect_clock_sync.h -------------------------------------------------------------------------------- /nrf_modem/include/nrf_modem_dect_phy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/include/nrf_modem_dect_phy.h -------------------------------------------------------------------------------- /nrf_modem/include/nrf_modem_delta_dfu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/include/nrf_modem_delta_dfu.h -------------------------------------------------------------------------------- /nrf_modem/include/nrf_modem_gnss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/include/nrf_modem_gnss.h -------------------------------------------------------------------------------- /nrf_modem/include/nrf_modem_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/include/nrf_modem_os.h -------------------------------------------------------------------------------- /nrf_modem/include/nrf_modem_os_rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/include/nrf_modem_os_rpc.h -------------------------------------------------------------------------------- /nrf_modem/include/nrf_modem_rs_capture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/include/nrf_modem_rs_capture.h -------------------------------------------------------------------------------- /nrf_modem/include/nrf_modem_softsim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/include/nrf_modem_softsim.h -------------------------------------------------------------------------------- /nrf_modem/include/nrf_modem_toolchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/include/nrf_modem_toolchain.h -------------------------------------------------------------------------------- /nrf_modem/include/nrf_modem_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/include/nrf_modem_trace.h -------------------------------------------------------------------------------- /nrf_modem/include/nrf_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/include/nrf_socket.h -------------------------------------------------------------------------------- /nrf_modem/lib/cellular/nrf9120/hard-float/libmodem.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/lib/cellular/nrf9120/hard-float/libmodem.a -------------------------------------------------------------------------------- /nrf_modem/lib/cellular/nrf9120/soft-float/libmodem.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/lib/cellular/nrf9120/soft-float/libmodem.a -------------------------------------------------------------------------------- /nrf_modem/lib/cellular/nrf9160/hard-float/libmodem.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/lib/cellular/nrf9160/hard-float/libmodem.a -------------------------------------------------------------------------------- /nrf_modem/lib/cellular/nrf9160/soft-float/libmodem.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/lib/cellular/nrf9160/soft-float/libmodem.a -------------------------------------------------------------------------------- /nrf_modem/lib/cellular/nrf9230/hard-float/libmodem.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/lib/cellular/nrf9230/hard-float/libmodem.a -------------------------------------------------------------------------------- /nrf_modem/lib/cellular/nrf9230/soft-float/libmodem.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/lib/cellular/nrf9230/soft-float/libmodem.a -------------------------------------------------------------------------------- /nrf_modem/lib/dect_phy/nrf9120/hard-float/libmodem.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/lib/dect_phy/nrf9120/hard-float/libmodem.a -------------------------------------------------------------------------------- /nrf_modem/lib/dect_phy/nrf9120/soft-float/libmodem.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/lib/dect_phy/nrf9120/soft-float/libmodem.a -------------------------------------------------------------------------------- /nrf_modem/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/license.txt -------------------------------------------------------------------------------- /nrf_modem/shmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_modem/shmem.c -------------------------------------------------------------------------------- /nrf_rpc/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/CHANGELOG.rst -------------------------------------------------------------------------------- /nrf_rpc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/CMakeLists.txt -------------------------------------------------------------------------------- /nrf_rpc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/Kconfig -------------------------------------------------------------------------------- /nrf_rpc/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/README.rst -------------------------------------------------------------------------------- /nrf_rpc/doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/doc/api.rst -------------------------------------------------------------------------------- /nrf_rpc/doc/architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/doc/architecture.rst -------------------------------------------------------------------------------- /nrf_rpc/doc/img/cmd_flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/doc/img/cmd_flow.svg -------------------------------------------------------------------------------- /nrf_rpc/doc/img/cmd_flow.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/doc/img/cmd_flow.vsdx -------------------------------------------------------------------------------- /nrf_rpc/doc/img/cmd_recursive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/doc/img/cmd_recursive.svg -------------------------------------------------------------------------------- /nrf_rpc/doc/img/cmd_recursive.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/doc/img/cmd_recursive.vsdx -------------------------------------------------------------------------------- /nrf_rpc/doc/img/cmd_simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/doc/img/cmd_simple.svg -------------------------------------------------------------------------------- /nrf_rpc/doc/img/cmd_simple.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/doc/img/cmd_simple.vsdx -------------------------------------------------------------------------------- /nrf_rpc/doc/img/evt_flow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/doc/img/evt_flow.svg -------------------------------------------------------------------------------- /nrf_rpc/doc/img/evt_flow.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/doc/img/evt_flow.vsdx -------------------------------------------------------------------------------- /nrf_rpc/doc/img/evt_simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/doc/img/evt_simple.svg -------------------------------------------------------------------------------- /nrf_rpc/doc/img/evt_simple.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/doc/img/evt_simple.vsdx -------------------------------------------------------------------------------- /nrf_rpc/doc/img/layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/doc/img/layers.svg -------------------------------------------------------------------------------- /nrf_rpc/doc/img/layers.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/doc/img/layers.vsdx -------------------------------------------------------------------------------- /nrf_rpc/doc/protocol_specification.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/doc/protocol_specification.rst -------------------------------------------------------------------------------- /nrf_rpc/doc/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/doc/usage.rst -------------------------------------------------------------------------------- /nrf_rpc/include/nrf_rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/include/nrf_rpc.h -------------------------------------------------------------------------------- /nrf_rpc/include/nrf_rpc_cbor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/include/nrf_rpc_cbor.h -------------------------------------------------------------------------------- /nrf_rpc/include/nrf_rpc_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/include/nrf_rpc_common.h -------------------------------------------------------------------------------- /nrf_rpc/include/nrf_rpc_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/include/nrf_rpc_errno.h -------------------------------------------------------------------------------- /nrf_rpc/include/nrf_rpc_tr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/include/nrf_rpc_tr.h -------------------------------------------------------------------------------- /nrf_rpc/nrf_rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/nrf_rpc.c -------------------------------------------------------------------------------- /nrf_rpc/nrf_rpc.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/nrf_rpc.ld -------------------------------------------------------------------------------- /nrf_rpc/nrf_rpc_cbor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/nrf_rpc_cbor.c -------------------------------------------------------------------------------- /nrf_rpc/template/nrf_rpc_log_tmpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/template/nrf_rpc_log_tmpl.h -------------------------------------------------------------------------------- /nrf_rpc/template/nrf_rpc_os_tmpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_rpc/template/nrf_rpc_os_tmpl.h -------------------------------------------------------------------------------- /nrf_wifi/bin/ncs/default/nrf70.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_wifi/bin/ncs/default/nrf70.bin -------------------------------------------------------------------------------- /nrf_wifi/bin/ncs/offloaded_raw_tx/nrf70.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_wifi/bin/ncs/offloaded_raw_tx/nrf70.bin -------------------------------------------------------------------------------- /nrf_wifi/bin/ncs/radio_test/nrf70.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_wifi/bin/ncs/radio_test/nrf70.bin -------------------------------------------------------------------------------- /nrf_wifi/bin/ncs/scan_only/nrf70.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_wifi/bin/ncs/scan_only/nrf70.bin -------------------------------------------------------------------------------- /nrf_wifi/bin/ncs/system_with_raw/nrf70.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_wifi/bin/ncs/system_with_raw/nrf70.bin -------------------------------------------------------------------------------- /nrf_wifi/bin/zephyr/default/nrf70.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_wifi/bin/zephyr/default/nrf70.bin -------------------------------------------------------------------------------- /nrf_wifi/bin/zephyr/offloaded_raw_tx/nrf70.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_wifi/bin/zephyr/offloaded_raw_tx/nrf70.bin -------------------------------------------------------------------------------- /nrf_wifi/bin/zephyr/radio_test/nrf70.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_wifi/bin/zephyr/radio_test/nrf70.bin -------------------------------------------------------------------------------- /nrf_wifi/bin/zephyr/scan_only/nrf70.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_wifi/bin/zephyr/scan_only/nrf70.bin -------------------------------------------------------------------------------- /nrf_wifi/bin/zephyr/system_with_raw/nrf70.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/nrf_wifi/bin/zephyr/system_with_raw/nrf70.bin -------------------------------------------------------------------------------- /openthread/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/CMakeLists.txt -------------------------------------------------------------------------------- /openthread/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/Kconfig -------------------------------------------------------------------------------- /openthread/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/README.rst -------------------------------------------------------------------------------- /openthread/cmake/crypto_config_cc3xx_whitelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/cmake/crypto_config_cc3xx_whitelist.txt -------------------------------------------------------------------------------- /openthread/cmake/crypto_config_ignore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/cmake/crypto_config_ignore.txt -------------------------------------------------------------------------------- /openthread/cmake/crypto_config_tfm_whitelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/cmake/crypto_config_tfm_whitelist.txt -------------------------------------------------------------------------------- /openthread/cmake/extensions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/cmake/extensions.cmake -------------------------------------------------------------------------------- /openthread/include/openthread-config-generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread-config-generic.h -------------------------------------------------------------------------------- /openthread/include/openthread-system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread-system.h -------------------------------------------------------------------------------- /openthread/include/openthread/backbone_router.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/backbone_router.h -------------------------------------------------------------------------------- /openthread/include/openthread/backbone_router_ftd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/backbone_router_ftd.h -------------------------------------------------------------------------------- /openthread/include/openthread/ble_secure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/ble_secure.h -------------------------------------------------------------------------------- /openthread/include/openthread/border_agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/border_agent.h -------------------------------------------------------------------------------- /openthread/include/openthread/border_router.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/border_router.h -------------------------------------------------------------------------------- /openthread/include/openthread/border_routing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/border_routing.h -------------------------------------------------------------------------------- /openthread/include/openthread/channel_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/channel_manager.h -------------------------------------------------------------------------------- /openthread/include/openthread/channel_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/channel_monitor.h -------------------------------------------------------------------------------- /openthread/include/openthread/child_supervision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/child_supervision.h -------------------------------------------------------------------------------- /openthread/include/openthread/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/cli.h -------------------------------------------------------------------------------- /openthread/include/openthread/coap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/coap.h -------------------------------------------------------------------------------- /openthread/include/openthread/coap_secure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/coap_secure.h -------------------------------------------------------------------------------- /openthread/include/openthread/commissioner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/commissioner.h -------------------------------------------------------------------------------- /openthread/include/openthread/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/config.h -------------------------------------------------------------------------------- /openthread/include/openthread/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/crypto.h -------------------------------------------------------------------------------- /openthread/include/openthread/dataset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/dataset.h -------------------------------------------------------------------------------- /openthread/include/openthread/dataset_ftd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/dataset_ftd.h -------------------------------------------------------------------------------- /openthread/include/openthread/dataset_updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/dataset_updater.h -------------------------------------------------------------------------------- /openthread/include/openthread/diag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/diag.h -------------------------------------------------------------------------------- /openthread/include/openthread/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/dns.h -------------------------------------------------------------------------------- /openthread/include/openthread/dns_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/dns_client.h -------------------------------------------------------------------------------- /openthread/include/openthread/dnssd_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/dnssd_server.h -------------------------------------------------------------------------------- /openthread/include/openthread/entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/entropy.h -------------------------------------------------------------------------------- /openthread/include/openthread/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/error.h -------------------------------------------------------------------------------- /openthread/include/openthread/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/heap.h -------------------------------------------------------------------------------- /openthread/include/openthread/history_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/history_tracker.h -------------------------------------------------------------------------------- /openthread/include/openthread/icmp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/icmp6.h -------------------------------------------------------------------------------- /openthread/include/openthread/instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/instance.h -------------------------------------------------------------------------------- /openthread/include/openthread/ip6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/ip6.h -------------------------------------------------------------------------------- /openthread/include/openthread/jam_detection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/jam_detection.h -------------------------------------------------------------------------------- /openthread/include/openthread/joiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/joiner.h -------------------------------------------------------------------------------- /openthread/include/openthread/link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/link.h -------------------------------------------------------------------------------- /openthread/include/openthread/link_metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/link_metrics.h -------------------------------------------------------------------------------- /openthread/include/openthread/link_raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/link_raw.h -------------------------------------------------------------------------------- /openthread/include/openthread/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/logging.h -------------------------------------------------------------------------------- /openthread/include/openthread/mdns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/mdns.h -------------------------------------------------------------------------------- /openthread/include/openthread/mesh_diag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/mesh_diag.h -------------------------------------------------------------------------------- /openthread/include/openthread/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/message.h -------------------------------------------------------------------------------- /openthread/include/openthread/multi_radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/multi_radio.h -------------------------------------------------------------------------------- /openthread/include/openthread/nat64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/nat64.h -------------------------------------------------------------------------------- /openthread/include/openthread/ncp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/ncp.h -------------------------------------------------------------------------------- /openthread/include/openthread/netdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/netdata.h -------------------------------------------------------------------------------- /openthread/include/openthread/netdata_publisher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/netdata_publisher.h -------------------------------------------------------------------------------- /openthread/include/openthread/netdiag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/netdiag.h -------------------------------------------------------------------------------- /openthread/include/openthread/network_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/network_time.h -------------------------------------------------------------------------------- /openthread/include/openthread/ping_sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/ping_sender.h -------------------------------------------------------------------------------- /openthread/include/openthread/platform/alarm-micro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/platform/alarm-micro.h -------------------------------------------------------------------------------- /openthread/include/openthread/platform/alarm-milli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/platform/alarm-milli.h -------------------------------------------------------------------------------- /openthread/include/openthread/platform/ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/platform/ble.h -------------------------------------------------------------------------------- /openthread/include/openthread/platform/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/platform/crypto.h -------------------------------------------------------------------------------- /openthread/include/openthread/platform/debug_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/platform/debug_uart.h -------------------------------------------------------------------------------- /openthread/include/openthread/platform/diag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/platform/diag.h -------------------------------------------------------------------------------- /openthread/include/openthread/platform/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/platform/dns.h -------------------------------------------------------------------------------- /openthread/include/openthread/platform/dnssd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/platform/dnssd.h -------------------------------------------------------------------------------- /openthread/include/openthread/platform/entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/platform/entropy.h -------------------------------------------------------------------------------- /openthread/include/openthread/platform/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/platform/flash.h -------------------------------------------------------------------------------- /openthread/include/openthread/platform/infra_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/platform/infra_if.h -------------------------------------------------------------------------------- /openthread/include/openthread/platform/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/platform/logging.h -------------------------------------------------------------------------------- /openthread/include/openthread/platform/mdns_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/platform/mdns_socket.h -------------------------------------------------------------------------------- /openthread/include/openthread/platform/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/platform/memory.h -------------------------------------------------------------------------------- /openthread/include/openthread/platform/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/platform/misc.h -------------------------------------------------------------------------------- /openthread/include/openthread/platform/multipan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/platform/multipan.h -------------------------------------------------------------------------------- /openthread/include/openthread/platform/otns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/platform/otns.h -------------------------------------------------------------------------------- /openthread/include/openthread/platform/radio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/platform/radio.h -------------------------------------------------------------------------------- /openthread/include/openthread/platform/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/platform/settings.h -------------------------------------------------------------------------------- /openthread/include/openthread/platform/spi-slave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/platform/spi-slave.h -------------------------------------------------------------------------------- /openthread/include/openthread/platform/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/platform/time.h -------------------------------------------------------------------------------- /openthread/include/openthread/platform/toolchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/platform/toolchain.h -------------------------------------------------------------------------------- /openthread/include/openthread/platform/trel-udp6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/platform/trel-udp6.h -------------------------------------------------------------------------------- /openthread/include/openthread/platform/trel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/platform/trel.h -------------------------------------------------------------------------------- /openthread/include/openthread/platform/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/platform/udp.h -------------------------------------------------------------------------------- /openthread/include/openthread/radio_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/radio_stats.h -------------------------------------------------------------------------------- /openthread/include/openthread/random_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/random_crypto.h -------------------------------------------------------------------------------- /openthread/include/openthread/random_noncrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/random_noncrypto.h -------------------------------------------------------------------------------- /openthread/include/openthread/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/server.h -------------------------------------------------------------------------------- /openthread/include/openthread/sntp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/sntp.h -------------------------------------------------------------------------------- /openthread/include/openthread/srp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/srp_client.h -------------------------------------------------------------------------------- /openthread/include/openthread/srp_client_buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/srp_client_buffers.h -------------------------------------------------------------------------------- /openthread/include/openthread/srp_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/srp_server.h -------------------------------------------------------------------------------- /openthread/include/openthread/tasklet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/tasklet.h -------------------------------------------------------------------------------- /openthread/include/openthread/tcat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/tcat.h -------------------------------------------------------------------------------- /openthread/include/openthread/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/tcp.h -------------------------------------------------------------------------------- /openthread/include/openthread/tcp_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/tcp_ext.h -------------------------------------------------------------------------------- /openthread/include/openthread/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/thread.h -------------------------------------------------------------------------------- /openthread/include/openthread/thread_ftd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/thread_ftd.h -------------------------------------------------------------------------------- /openthread/include/openthread/trel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/trel.h -------------------------------------------------------------------------------- /openthread/include/openthread/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/udp.h -------------------------------------------------------------------------------- /openthread/include/openthread/verhoeff_checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/openthread/verhoeff_checksum.h -------------------------------------------------------------------------------- /openthread/include/utils/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/include/utils/uart.h -------------------------------------------------------------------------------- /openthread/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/openthread/license.txt -------------------------------------------------------------------------------- /softdevice_controller/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softdevice_controller/CHANGELOG.rst -------------------------------------------------------------------------------- /softdevice_controller/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softdevice_controller/CMakeLists.txt -------------------------------------------------------------------------------- /softdevice_controller/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softdevice_controller/README.rst -------------------------------------------------------------------------------- /softdevice_controller/doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softdevice_controller/doc/api.rst -------------------------------------------------------------------------------- /softdevice_controller/doc/channel_sounding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softdevice_controller/doc/channel_sounding.rst -------------------------------------------------------------------------------- /softdevice_controller/doc/gui/bis_gui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softdevice_controller/doc/gui/bis_gui.html -------------------------------------------------------------------------------- /softdevice_controller/doc/isochronous_channels.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softdevice_controller/doc/isochronous_channels.rst -------------------------------------------------------------------------------- /softdevice_controller/doc/scheduling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softdevice_controller/doc/scheduling.rst -------------------------------------------------------------------------------- /softdevice_controller/include/nrf_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softdevice_controller/include/nrf_errno.h -------------------------------------------------------------------------------- /softdevice_controller/include/sdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softdevice_controller/include/sdc.h -------------------------------------------------------------------------------- /softdevice_controller/include/sdc_hci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softdevice_controller/include/sdc_hci.h -------------------------------------------------------------------------------- /softdevice_controller/include/sdc_hci_cmd_le.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softdevice_controller/include/sdc_hci_cmd_le.h -------------------------------------------------------------------------------- /softdevice_controller/include/sdc_hci_evt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softdevice_controller/include/sdc_hci_evt.h -------------------------------------------------------------------------------- /softdevice_controller/include/sdc_hci_vs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softdevice_controller/include/sdc_hci_vs.h -------------------------------------------------------------------------------- /softdevice_controller/include/sdc_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softdevice_controller/include/sdc_soc.h -------------------------------------------------------------------------------- /softdevice_controller/lib/nrf52/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softdevice_controller/lib/nrf52/manifest.yaml -------------------------------------------------------------------------------- /softdevice_controller/lib/nrf52_bsim/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softdevice_controller/lib/nrf52_bsim/manifest.yaml -------------------------------------------------------------------------------- /softdevice_controller/lib/nrf53/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softdevice_controller/lib/nrf53/manifest.yaml -------------------------------------------------------------------------------- /softdevice_controller/lib/nrf53_bsim/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softdevice_controller/lib/nrf53_bsim/manifest.yaml -------------------------------------------------------------------------------- /softdevice_controller/lib/nrf54h/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softdevice_controller/lib/nrf54h/manifest.yaml -------------------------------------------------------------------------------- /softdevice_controller/lib/nrf54l/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softdevice_controller/lib/nrf54l/manifest.yaml -------------------------------------------------------------------------------- /softdevice_controller/lib/nrf54l_ns/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softdevice_controller/lib/nrf54l_ns/manifest.yaml -------------------------------------------------------------------------------- /softdevice_controller/lib/nrf71/manifest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softdevice_controller/lib/nrf71/manifest.yaml -------------------------------------------------------------------------------- /softdevice_controller/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softdevice_controller/license.txt -------------------------------------------------------------------------------- /softdevice_controller/limitations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softdevice_controller/limitations.rst -------------------------------------------------------------------------------- /softperipheral/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/CHANGELOG.rst -------------------------------------------------------------------------------- /softperipheral/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/README.rst -------------------------------------------------------------------------------- /softperipheral/doc/images/SP_concept.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/doc/images/SP_concept.svg -------------------------------------------------------------------------------- /softperipheral/doc/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/doc/introduction.rst -------------------------------------------------------------------------------- /softperipheral/doc/sEMMC/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/doc/sEMMC/CHANGELOG.rst -------------------------------------------------------------------------------- /softperipheral/doc/sEMMC/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/doc/sEMMC/README.rst -------------------------------------------------------------------------------- /softperipheral/doc/sEMMC/api_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/doc/sEMMC/api_reference.rst -------------------------------------------------------------------------------- /softperipheral/doc/sEMMC/features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/doc/sEMMC/features.rst -------------------------------------------------------------------------------- /softperipheral/doc/sEMMC/limitations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/doc/sEMMC/limitations.rst -------------------------------------------------------------------------------- /softperipheral/doc/sEMMC/timing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/doc/sEMMC/timing.rst -------------------------------------------------------------------------------- /softperipheral/doc/sQSPI/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/doc/sQSPI/CHANGELOG.rst -------------------------------------------------------------------------------- /softperipheral/doc/sQSPI/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/doc/sQSPI/README.rst -------------------------------------------------------------------------------- /softperipheral/doc/sQSPI/api_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/doc/sQSPI/api_reference.rst -------------------------------------------------------------------------------- /softperipheral/doc/sQSPI/display.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/doc/sQSPI/display.rst -------------------------------------------------------------------------------- /softperipheral/doc/sQSPI/features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/doc/sQSPI/features.rst -------------------------------------------------------------------------------- /softperipheral/doc/sQSPI/images/sqspi_timing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/doc/sQSPI/images/sqspi_timing.png -------------------------------------------------------------------------------- /softperipheral/doc/sQSPI/images/sqspi_timing_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/doc/sQSPI/images/sqspi_timing_1.png -------------------------------------------------------------------------------- /softperipheral/doc/sQSPI/limitations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/doc/sQSPI/limitations.rst -------------------------------------------------------------------------------- /softperipheral/doc/sQSPI/timing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/doc/sQSPI/timing.rst -------------------------------------------------------------------------------- /softperipheral/include/softperipheral_meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/include/softperipheral_meta.h -------------------------------------------------------------------------------- /softperipheral/include/softperipheral_regif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/include/softperipheral_regif.h -------------------------------------------------------------------------------- /softperipheral/sEMMC/include/hal/nrf_emmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/sEMMC/include/hal/nrf_emmc.h -------------------------------------------------------------------------------- /softperipheral/sEMMC/include/nrf_config_semmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/sEMMC/include/nrf_config_semmc.h -------------------------------------------------------------------------------- /softperipheral/sEMMC/include/nrf_semmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/sEMMC/include/nrf_semmc.h -------------------------------------------------------------------------------- /softperipheral/sEMMC/include/nrf_sp_emmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/sEMMC/include/nrf_sp_emmc.h -------------------------------------------------------------------------------- /softperipheral/sEMMC/src/nrf_semmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/sEMMC/src/nrf_semmc.c -------------------------------------------------------------------------------- /softperipheral/sQSPI/include/hal/nrf_qspi2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/sQSPI/include/hal/nrf_qspi2.h -------------------------------------------------------------------------------- /softperipheral/sQSPI/include/nrf_config_sqspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/sQSPI/include/nrf_config_sqspi.h -------------------------------------------------------------------------------- /softperipheral/sQSPI/include/nrf_sp_qspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/sQSPI/include/nrf_sp_qspi.h -------------------------------------------------------------------------------- /softperipheral/sQSPI/include/nrf_sqspi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/sQSPI/include/nrf_sqspi.h -------------------------------------------------------------------------------- /softperipheral/sQSPI/src/nrf_sqspi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/softperipheral/sQSPI/src/nrf_sqspi.c -------------------------------------------------------------------------------- /suit/bin/suit_manifest_starter.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/suit/bin/suit_manifest_starter.hex -------------------------------------------------------------------------------- /zephyr/module.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrfconnect/sdk-nrfxlib/HEAD/zephyr/module.yml --------------------------------------------------------------------------------