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