1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-15 09:33:50 +01:00

boards/common/arduino-mkr: model Kconfig

This commit is contained in:
Leandro Lanzieri 2021-12-08 11:41:40 +01:00 committed by Francisco Molina
parent d249fc5ba7
commit 7fe6eba806
2 changed files with 16 additions and 0 deletions

View File

@ -19,3 +19,13 @@ config BOARD_COMMON_ARDUINO_MKR
select HAS_ARDUINO
select HAS_ARDUINO_PWM
select HAS_HIGHLEVEL_STDIO
select HAVE_SAUL_GPIO
config MODULE_BOARDS_COMMON_ARDUINO-MKR
bool
depends on TEST_KCONFIG
help
Common code for arduino-mkr type of boards.
source "$(RIOTBOARD)/common/samdx1-arduino-bootloader/Kconfig"

View File

@ -17,3 +17,9 @@ FEATURES_PROVIDED += periph_usbdev
FEATURES_PROVIDED += arduino
FEATURES_PROVIDED += arduino_pwm
FEATURES_PROVIDED += highlevel_stdio
# This configuration enables modules that are only available when using Kconfig
# module modelling
ifeq (1, $(TEST_KCONFIG))
KCONFIG_ADD_CONFIG += $(RIOTBOARD)/common/samdx1-arduino-bootloader/samdx1-arduino-bootloader.config
endif