Skip to content

Commit 08853a8

Browse files
modules: add OpenThread platform implementation
Copy OpenThread platform implementation from upstream Zephyr, based on commit 10eb60b48111d529ab30bae2a344226accb3ded6 to enable development of Nordic-specific platform implementation. Signed-off-by: Maciej Baczmanski <[email protected]>
1 parent 1f34d55 commit 08853a8

22 files changed

+6097
-0
lines changed

modules/openthread/CMakeLists.txt

Lines changed: 278 additions & 0 deletions
Large diffs are not rendered by default.

modules/openthread/Kconfig

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Copyright (c) 2022 Nordic Semiconductor ASA
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
config OPENTHREAD
5+
bool "OpenThread Support"
6+
help
7+
This option enables the OpenThread library
8+
9+
if OPENTHREAD
10+
11+
menu "OpenThread stack features"
12+
rsource "Kconfig.features"
13+
endmenu
14+
15+
menu "Thread Network configuration"
16+
rsource "Kconfig.thread"
17+
endmenu
18+
19+
endif # OPENTHREAD

0 commit comments

Comments
 (0)