From a4f9fbb441097e2b0cd2ba8deb1cf8b8e0e47af7 Mon Sep 17 00:00:00 2001 From: Leandro Lanzieri Date: Mon, 8 Jun 2020 12:02:31 +0200 Subject: [PATCH] boards/esp8266-sparkfun-thing: Add Kconfig symbols --- boards/esp8266-sparkfun-thing/Kconfig | 16 ++++++++++++++++ boards/esp8266-sparkfun-thing/Makefile.features | 2 ++ 2 files changed, 18 insertions(+) create mode 100644 boards/esp8266-sparkfun-thing/Kconfig diff --git a/boards/esp8266-sparkfun-thing/Kconfig b/boards/esp8266-sparkfun-thing/Kconfig new file mode 100644 index 0000000000..a457ef7271 --- /dev/null +++ b/boards/esp8266-sparkfun-thing/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 + default "esp8266-sparkfun-thing" if BOARD_ESP8266_SPARKFUN_THING + +config BOARD_ESP8266_SPARKFUN_THING + bool + default y + select BOARD_COMMON_ESP8266 + select CPU_MODEL_ESP8266EX + +source "$(RIOTBOARD)/common/esp8266/Kconfig" diff --git a/boards/esp8266-sparkfun-thing/Makefile.features b/boards/esp8266-sparkfun-thing/Makefile.features index a2f432f882..e034cb9be6 100644 --- a/boards/esp8266-sparkfun-thing/Makefile.features +++ b/boards/esp8266-sparkfun-thing/Makefile.features @@ -1,3 +1,5 @@ +CPU_MODEL = esp8266ex + # Board provides all common peripheral features defined for all ESP8266 boards include $(RIOTBOARD)/common/esp8266/Makefile.features