mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
49 lines
1.1 KiB
Plaintext
49 lines
1.1 KiB
Plaintext
|
# Copyright (c) 2023 Inria
|
||
|
#
|
||
|
# This file is subject to the terms and conditions of the GNU Lesser
|
||
|
# General Public License v2.1. See the file LICENSE in the top level
|
||
|
# directory for more details.
|
||
|
#
|
||
|
|
||
|
menuconfig PACKAGE_OPENTHREAD
|
||
|
bool "Openthread network stack"
|
||
|
depends on TEST_KCONFIG
|
||
|
|
||
|
depends on HAS_CPP
|
||
|
select MODULE_CPP11-COMPAT
|
||
|
select MODULE_EVENT
|
||
|
select MODULE_NETDEV
|
||
|
select MODULE_OPENTHREAD_CONTRIB
|
||
|
select MODULE_OPENTHREAD_CONTRIB_NETDEV
|
||
|
select MODULE_L2UTIL
|
||
|
select MODULE_TIMEX
|
||
|
select MODULE_ZTIMER
|
||
|
select MODULE_ZTIMER64
|
||
|
select MODULE_ZTIMER_MSEC
|
||
|
|
||
|
if PACKAGE_OPENTHREAD
|
||
|
|
||
|
config MODULE_OPENTHREAD-FTD
|
||
|
bool "Openthread Full Thread Device"
|
||
|
depends on TEST_KCONFIG
|
||
|
|
||
|
config MODULE_OPENTHREAD-MTD
|
||
|
bool "Openthread Minimal Thread Device"
|
||
|
depends on TEST_KCONFIG
|
||
|
|
||
|
config MODULE_OPENTHREAD-CLI-FTD
|
||
|
bool "Openthread Full Thread Device CLI"
|
||
|
depends on TEST_KCONFIG
|
||
|
|
||
|
config MODULE_OPENTHREAD-CLI-MTD
|
||
|
bool "Openthread Minimal Thread Device CLI"
|
||
|
depends on TEST_KCONFIG
|
||
|
|
||
|
config MODULE_OPENTHREAD_CONTRIB
|
||
|
bool
|
||
|
|
||
|
config MODULE_OPENTHREAD_CONTRIB_NETDEV
|
||
|
bool
|
||
|
|
||
|
endif # PACKAGE_OPENTHREAD
|