From 30b2526d74c482b7d28b2d9e73a6cfd5adb03770 Mon Sep 17 00:00:00 2001 From: Jose Alamos Date: Tue, 2 Jun 2020 14:29:50 +0200 Subject: [PATCH] boards/arduino-mkrzero: Add board specific Kconfig symbols --- boards/arduino-mkrzero/Kconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 boards/arduino-mkrzero/Kconfig diff --git a/boards/arduino-mkrzero/Kconfig b/boards/arduino-mkrzero/Kconfig new file mode 100644 index 0000000000..9b8abe36c0 --- /dev/null +++ b/boards/arduino-mkrzero/Kconfig @@ -0,0 +1,15 @@ +# 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 "arduino-mkrzero" if BOARD_ARDUINO_MKRZERO + +config BOARD_ARDUINO_MKRZERO + bool + default y + select BOARD_COMMON_ARDUINO_MKR + +source "$(RIOTBOARD)/common/arduino-mkr/Kconfig"