1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

pkg/mynewt-core: add Kconfig module dependency

This commit is contained in:
Francisco Molina 2021-08-26 20:25:11 +02:00
parent 9cb27b910a
commit b21191f9af
3 changed files with 45 additions and 2 deletions

View File

@ -28,6 +28,7 @@ rsource "micro-ecc/Kconfig"
rsource "microcoap/Kconfig"
rsource "minmea/Kconfig"
rsource "monocypher/Kconfig"
rsource "mynewt-core/Kconfig"
rsource "nanocbor/Kconfig"
rsource "nanopb/Kconfig"
rsource "qcbor/Kconfig"

41
pkg/mynewt-core/Kconfig Normal file
View File

@ -0,0 +1,41 @@
# Copyright (c) 2021 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_MYNEWT-CORE
bool "Apache MyNewt mynewt-core Package"
depends on TEST_KCONFIG
select MODULE_MYNEWT-CORE
select MODULE_SEMA
select MODULE_ZTIMER
select MODULE_ZTIMER_MSEC
select MODULE_EVENT
select MODULE_EVENT_CALLBACK
depends on HAS_PERIPH_GPIO
select MODULE_PERIPH_GPIO
depends on !HAS_ARCH_ESP
if PACKAGE_MYNEWT-CORE
config MODULE_MYNEWT-CORE
bool
config MODULE_AUTO_INIT_MYNEWT-CORE
bool "Auto-initialize the mynewt-core package"
default y
depends on MODULE_AUTO_INIT
config MODULE_MYNEWT-CORE_OS
bool "mynewt-core kernel module"
config MODULE_MYNEWT-CORE_UTIL
bool "mynewt-core utilities modules"
config MODULE_MYNEWT-CORE_NRF5X_HAL
bool "mynewt-core nrf52 and nrf51 timer hal"
endif # PACKAGE_MYNEWT-CORE

View File

@ -1,8 +1,9 @@
USEMODULE += event_callback
USEMODULE += sema
USEMODULE += ztimer
USEMODULE += ztimer_msec
USEMODULE += mynewt-core
DEFAULT_MODULE += auto_init_mynewt-core
# esp frequency is not pow2 so is incompatible with os_cputime
FEATURES_BLACKLIST += arch_esp