From ec93d4c1c4ef5cd81f720fc22cd9b4c90816711c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Harter?= Date: Tue, 8 Oct 2019 17:06:41 +0200 Subject: [PATCH] boards/common/arduino-atmega: remove special case for jiminy-mega256rfr2 The board is deprecated, no need to ignore this board anymore here. Having the `arduino` and `periph_pwm` features is now required for all boards using 'arduino-atmega' (as it was except for that board). If this should change in the future, it should be defined either in each arduino board, in another board common, or per CPU_MODEL. --- boards/common/arduino-atmega/Makefile.features | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/boards/common/arduino-atmega/Makefile.features b/boards/common/arduino-atmega/Makefile.features index d47ec4565f..4a6e2bcd18 100644 --- a/boards/common/arduino-atmega/Makefile.features +++ b/boards/common/arduino-atmega/Makefile.features @@ -7,7 +7,5 @@ FEATURES_PROVIDED += periph_timer FEATURES_PROVIDED += periph_uart # Various other features (if any) -ifeq (,$(filter jiminy-mega256rfr2,$(BOARD))) - FEATURES_PROVIDED += arduino - FEATURES_PROVIDED += periph_pwm -endif +FEATURES_PROVIDED += arduino +FEATURES_PROVIDED += periph_pwm