From 688d06e38a68da38761f83642bf265d1b18717c2 Mon Sep 17 00:00:00 2001 From: Leandro Lanzieri Date: Fri, 29 May 2020 19:26:53 +0200 Subject: [PATCH] boards/arduino-nano: Add Kconfig symbols --- boards/arduino-nano/Kconfig | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 boards/arduino-nano/Kconfig diff --git a/boards/arduino-nano/Kconfig b/boards/arduino-nano/Kconfig new file mode 100644 index 0000000000..2375c2413e --- /dev/null +++ b/boards/arduino-nano/Kconfig @@ -0,0 +1,16 @@ +# 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_ARDUINO_NANO + bool + default y + select BOARD_COMMON_ARDUINO_ATMEGA + select CPU_MODEL_ATMEGA328P + +config BOARD + default "arduino-nano" if BOARD_ARDUINO_NANO + +source "$(RIOTBOARD)/common/arduino-atmega/Kconfig"