From bddc6138834bec3c592743c8e51f7b2f2f36c86f Mon Sep 17 00:00:00 2001 From: Leandro Lanzieri Date: Fri, 3 Jul 2020 11:22:49 +0200 Subject: [PATCH] boards/nrf52840dk: Add Kconfig symbols --- boards/nrf52840dk/Kconfig | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 boards/nrf52840dk/Kconfig diff --git a/boards/nrf52840dk/Kconfig b/boards/nrf52840dk/Kconfig new file mode 100644 index 0000000000..a6b3461b8f --- /dev/null +++ b/boards/nrf52840dk/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 "nrf52840dk" if BOARD_NRF52840DK + +config BOARD_NRF52840DK + bool + default y + select BOARD_COMMON_NRF52XXXDK + select CPU_MODEL_NRF52840XXAA + select HAS_RADIO_NRF802154 + select HAS_PERIPH_PWM + select HAS_PERIPH_USBDEV + +source "$(RIOTBOARD)/common/nrf52xxxdk/Kconfig"