mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
examples/micropython: add Kconfig config
This commit is contained in:
parent
b93bbe9e6b
commit
c7f1226588
14
examples/micropython/Kconfig
Normal file
14
examples/micropython/Kconfig
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
# 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.
|
||||||
|
#
|
||||||
|
|
||||||
|
config APPLICATION
|
||||||
|
bool
|
||||||
|
default y
|
||||||
|
depends on TEST_KCONFIG
|
||||||
|
|
||||||
|
select MODULE_PERIPH_ADC if HAS_PERIPH_ADC
|
||||||
|
select MODULE_PERIPH_SPI if HAS_PERIPH_SPI
|
@ -34,4 +34,7 @@ TESTRUNNER_RESET_AFTER_TERM ?= 1
|
|||||||
# failing on native with floating point exception (#15870)
|
# failing on native with floating point exception (#15870)
|
||||||
TEST_ON_CI_BLACKLIST = native
|
TEST_ON_CI_BLACKLIST = native
|
||||||
|
|
||||||
|
# avoid running Kconfig by default
|
||||||
|
SHOULD_RUN_KCONFIG ?=
|
||||||
|
|
||||||
include $(RIOTBASE)/Makefile.include
|
include $(RIOTBASE)/Makefile.include
|
||||||
|
1
examples/micropython/app.config.test
Normal file
1
examples/micropython/app.config.test
Normal file
@ -0,0 +1 @@
|
|||||||
|
CONFIG_PACKAGE_MICROPYTHON=y
|
Loading…
Reference in New Issue
Block a user