Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

modules: add OpenThread platform implementation #20757

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/test-spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,7 @@
- "drivers/hw_cc3xx/*"
- "drivers/entropy/*"
- "modules/nrfxlib/nrf_802154/**/*"
- "modules/openthread/**/*"

"CI-nfc-test":
- "subsys/nfc/**/*"
Expand Down
1 change: 1 addition & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,7 @@
/modules/mcuboot/ @nrfconnect/ncs-pluto
/modules/memfault-firmware-sdk/ @nrfconnect/ncs-cia
/modules/nrfxlib/ @nrfconnect/ncs-code-owners
/modules/openthread/ @nrfconnect/ncs-thread
/modules/trusted-firmware-m/ @nrfconnect/ncs-aegir
/modules/wfa-qt/ @nrfconnect/ncs-wifi

Expand Down
2 changes: 2 additions & 0 deletions modules/modules.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ set(ZEPHYR_COREMARK_KCONFIG ${CMAKE_CURRENT_LIST_DIR}/coremark/Kconfig)
set(ZEPHYR_TRUSTED_FIRMWARE_M_KCONFIG ${CMAKE_CURRENT_LIST_DIR}/trusted-firmware-m/Kconfig)
set(ZEPHYR_AZURE_SDK_FOR_C_KCONFIG ${CMAKE_CURRENT_LIST_DIR}/azure-sdk-for-c/Kconfig)
set(ZEPHYR_AZURE_SDK_FOR_C_CMAKE_DIR ${CMAKE_CURRENT_LIST_DIR}/azure-sdk-for-c)
set(ZEPHYR_OPENTHREAD_CMAKE_DIR ${CMAKE_CURRENT_LIST_DIR}/openthread)
set(ZEPHYR_OPENTHREAD_KCONFIG ${CMAKE_CURRENT_LIST_DIR}/openthread/Kconfig)

# Those are modules with Kconfig tree's inside the module repo but where
# nRF Connect SDK extend those trees.
Expand Down
278 changes: 278 additions & 0 deletions modules/openthread/CMakeLists.txt

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions modules/openthread/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Copyright (c) 2022 Nordic Semiconductor ASA
# SPDX-License-Identifier: Apache-2.0

config OPENTHREAD
bool "OpenThread Support"
help
This option enables the OpenThread library

if OPENTHREAD

menu "OpenThread stack features"
rsource "Kconfig.features"
endmenu

menu "Thread Network configuration"
rsource "Kconfig.thread"
endmenu

endif # OPENTHREAD
Loading