From 5c48e7a8a4cb84d1af82e8b95800a5231ed4cbd0 Mon Sep 17 00:00:00 2001 From: Leandro Lanzieri Date: Fri, 3 Jul 2020 11:16:23 +0200 Subject: [PATCH] boards/dwm1001: Add Kconfig symbols --- boards/dwm1001/Kconfig | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 boards/dwm1001/Kconfig diff --git a/boards/dwm1001/Kconfig b/boards/dwm1001/Kconfig new file mode 100644 index 0000000000..039c788b63 --- /dev/null +++ b/boards/dwm1001/Kconfig @@ -0,0 +1,19 @@ +# 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 "dwm1001" if BOARD_DWM1001 + +config BOARD_DWM1001 + bool + default y + select BOARD_COMMON_NRF52 + select CPU_MODEL_NRF52832XXAA + select HAS_PERIPH_I2C + select HAS_PERIPH_SPI + select HAS_PERIPH_UART + +source "$(RIOTBOARD)/common/nrf52/Kconfig"