mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Merge pull request #17995 from aabadie/pr/tests/pkg_utensor_kconfig
tests/pkg_utensor: model in Kconfig + fix utensor package dependencies
This commit is contained in:
commit
7731e6ab62
@ -10,13 +10,15 @@ config PACKAGE_UTENSOR
|
||||
depends on TEST_KCONFIG
|
||||
depends on HAS_LIBSTDCPP
|
||||
depends on HAS_CPP
|
||||
select MODULE_UTENSOR_OPS
|
||||
select MODULE_UTENSOR_UTIL
|
||||
select MODULE_UTENSOR-OPS
|
||||
select MODULE_UTENSOR-UTIL
|
||||
select MODULE_CPP
|
||||
select MODULE_LIBSTDCPP
|
||||
|
||||
config MODULE_UTENSOR_OPS
|
||||
config MODULE_UTENSOR-OPS
|
||||
bool
|
||||
depends on TEST_KCONFIG
|
||||
|
||||
config MODULE_UTENSOR_UTIL
|
||||
config MODULE_UTENSOR-UTIL
|
||||
bool
|
||||
depends on TEST_KCONFIG
|
||||
|
@ -8,3 +8,7 @@
|
||||
config MODULE_PTHREAD
|
||||
bool "Pthread Support"
|
||||
depends on TEST_KCONFIG
|
||||
select MODULE_TIMEX
|
||||
select MODULE_ZTIMER
|
||||
select MODULE_ZTIMER64_XTIMER_COMPAT if MODULE_ZTIMER_XTIMER_COMPAT
|
||||
select ZTIMER64_USEC
|
||||
|
2
tests/pkg_utensor/app.config.test
Normal file
2
tests/pkg_utensor/app.config.test
Normal file
@ -0,0 +1,2 @@
|
||||
CONFIG_PACKAGE_UTENSOR=y
|
||||
CONFIG_MODULE_MODELS=y
|
10
tests/pkg_utensor/external_modules/models/Kconfig
Normal file
10
tests/pkg_utensor/external_modules/models/Kconfig
Normal file
@ -0,0 +1,10 @@
|
||||
# Copyright (c) 2022 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.
|
||||
#
|
||||
|
||||
config MODULE_MODELS
|
||||
bool "uTensor models"
|
||||
depends on TEST_KCONFIG
|
Loading…
Reference in New Issue
Block a user