From f99af101d2f8ceae1932e6acbcf8c4c654ec6adf Mon Sep 17 00:00:00 2001 From: Leandro Lanzieri Date: Thu, 18 Jun 2020 16:19:10 +0200 Subject: [PATCH] boards/stk3700: Add Kconfig symbols --- boards/stk3700/Kconfig | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 boards/stk3700/Kconfig diff --git a/boards/stk3700/Kconfig b/boards/stk3700/Kconfig new file mode 100644 index 0000000000..a083475c56 --- /dev/null +++ b/boards/stk3700/Kconfig @@ -0,0 +1,26 @@ +# Copyright (c) 2020 HAW Hamburg +# +# 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 BOARD + default "stk3700" if BOARD_STK3700 + +config BOARD_STK3700 + bool + default y + select BOARD_COMMON_SILABS + select CPU_MODEL_EFM32GG990F1024 + select HAS_PERIPH_ADC + select HAS_PERIPH_DAC + select HAS_PERIPH_I2C + select HAS_PERIPH_PWM + select HAS_PERIPH_RTC + select HAS_PERIPH_RTT + select HAS_PERIPH_SPI + select HAS_PERIPH_TIMER + select HAS_PERIPH_UART + select HAS_PERIPH_UART_MODECFG + +source "$(RIOTBOARD)/common/silabs/Kconfig"