From 12c5236443b6d785310e7d2649e3cc961689d75a Mon Sep 17 00:00:00 2001 From: Gunar Schorcht Date: Fri, 24 Dec 2021 04:15:02 +0100 Subject: [PATCH] boards/feather-m0-*: fix Arduino feature in Kconfig With PR #17401 the Arduino feature was introduced for the `feather-m0` base board. Since all derived `feather-m0-*` boards with additional hardware modules simply include `Makefile.features` of the `feather-m0` base board, they also have this feature. However, the `Kconfig` file is defined separately for each of these boards. In PR 17401, it was forgotten to include the Arduino feature in the `Kconfig` file for the derived boards. This was not noticed because the CI did not trigger an error message. --- boards/feather-m0-lora/Kconfig | 1 + boards/feather-m0-wifi/Kconfig | 1 + 2 files changed, 2 insertions(+) diff --git a/boards/feather-m0-lora/Kconfig b/boards/feather-m0-lora/Kconfig index 95e83e8f2a..361a0ec950 100644 --- a/boards/feather-m0-lora/Kconfig +++ b/boards/feather-m0-lora/Kconfig @@ -20,6 +20,7 @@ config BOARD_FEATHER_M0_LORA select HAS_PERIPH_TIMER select HAS_PERIPH_UART select HAS_PERIPH_USBDEV + select HAS_ARDUINO select HAS_HIGHLEVEL_STDIO select HAVE_SAUL_GPIO diff --git a/boards/feather-m0-wifi/Kconfig b/boards/feather-m0-wifi/Kconfig index d7f3da2aa9..3ffe7587fe 100644 --- a/boards/feather-m0-wifi/Kconfig +++ b/boards/feather-m0-wifi/Kconfig @@ -20,6 +20,7 @@ config BOARD_FEATHER_M0_WIFI select HAS_PERIPH_TIMER select HAS_PERIPH_UART select HAS_PERIPH_USBDEV + select HAS_ARDUINO select HAS_HIGHLEVEL_STDIO select HAVE_SAUL_GPIO