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.
This commit is contained in:
Gaëtan Harter 2019-10-08 17:06:41 +02:00 committed by Alexandre Abadie
parent 589d7e5a46
commit ec93d4c1c4
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -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