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

cpu/native: add default configuration

This commit is contained in:
Leandro Lanzieri 2020-09-09 14:27:53 +02:00
parent 8b0e0d2f52
commit 8df4512960
No known key found for this signature in database
GPG Key ID: 13559905E2EBEAA5
2 changed files with 8 additions and 0 deletions

View File

@ -25,3 +25,9 @@ ifeq ($(OS),Linux)
# CAN is only supported on Linux through socketCAN
FEATURES_PROVIDED += periph_can
endif
# This configuration enables modules that are only available when using Kconfig
# module modelling
ifeq (1, $(TEST_KCONFIG))
KCONFIG_ADD_CONFIG += $(RIOTCPU)/native/native.config
endif

2
cpu/native/native.config Normal file
View File

@ -0,0 +1,2 @@
# UART is needed by startup.c
CONFIG_MODULE_PERIPH_UART=y