Skip to content
Snippets Groups Projects
Commit 71393933 authored by Francisco Acosta's avatar Francisco Acosta Committed by kYc0o
Browse files

boards: include potential features from CPU for atmega boards

Features must be provided by the board if they're actually
available on board. Other features might be provided by the
CPU.

Some grouping is also removed as it is not necessary.
parent d208cba4
No related branches found
No related tags found
No related merge requests found
...@@ -11,6 +11,3 @@ ifeq (,$(filter jiminy-mega256rfr2,$(BOARD))) ...@@ -11,6 +11,3 @@ ifeq (,$(filter jiminy-mega256rfr2,$(BOARD)))
FEATURES_PROVIDED += arduino FEATURES_PROVIDED += arduino
FEATURES_PROVIDED += periph_pwm FEATURES_PROVIDED += periph_pwm
endif endif
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = avr8
# This board is based on an atmega CPU, thus import the features from it
include $(RIOTBOARD)/common/arduino-atmega/Makefile.features include $(RIOTBOARD)/common/arduino-atmega/Makefile.features
# Put defined MCU peripherals here (in alphabetical order) # Put defined MCU peripherals here (in alphabetical order)
# Peripherals are defined in common/arduino-atmega/Makefile.features # Peripherals are defined in common/arduino-atmega/Makefile.features
# Add only additional Peripherals # Add only additional Peripherals
# The board MPU family (used for grouping by the CI system) -include $(RIOTCPU)/atmega256rfr2/Makefile.features
FEATURES_MCU_GROUP = avr6
include $(RIOTCPU)/atmega256rfr2/Makefile.features
...@@ -8,7 +8,4 @@ FEATURES_PROVIDED += periph_uart ...@@ -8,7 +8,4 @@ FEATURES_PROVIDED += periph_uart
# Various other features (if any) # Various other features (if any)
# The board MPU family (used for grouping by the CI system) -include $(RIOTCPU)/atmega1284p/Makefile.features
FEATURES_MCU_GROUP = avr8
include $(RIOTCPU)/atmega1284p/Makefile.features
...@@ -8,7 +8,4 @@ FEATURES_PROVIDED += periph_uart ...@@ -8,7 +8,4 @@ FEATURES_PROVIDED += periph_uart
# Various other features (if any) # Various other features (if any)
# The board MPU family (used for grouping by the CI system) -include $(RIOTCPU)/atmega1281/Makefile.features
FEATURES_MCU_GROUP = avr8
include $(RIOTCPU)/atmega1281/Makefile.features
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment