1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #10078 from cladmi/pr/make/ensure_board_includes_cpu_features

boards: always include cpu features
This commit is contained in:
Kevin "Bear Puncher" Weiss 2018-10-12 08:04:51 +02:00 committed by GitHub
commit ee3ebe17f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
116 changed files with 122 additions and 115 deletions

View File

@ -246,6 +246,13 @@ include $(RIOTBOARD)/$(BOARD)/Makefile.include
INCLUDES += -I$(RIOTCPU)/$(CPU)/include
include $(RIOTCPU)/$(CPU)/Makefile.include
# Sanity check
# The check is only done after 'include $(RIOTBOARD)/$(BOARD)/Makefile.include'
# because we need to have the 'CPU' variable defined
ifeq (,$(filter $(RIOTCPU)/$(CPU)/Makefile.features,$(MAKEFILE_LIST)))
$(error $$(RIOTCPU)/$$(CPU)/Makefile.features must have been included by the board / board common Makefile.features)
endif
# Assume GCC/GNU as supported toolchain if CPU's Makefile.include doesn't
# provide this macro
TOOLCHAINS_SUPPORTED ?= gnu

View File

@ -12,4 +12,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m0_2
-include $(RIOTCPU)/nrf51/Makefile.features
include $(RIOTCPU)/nrf51/Makefile.features

View File

@ -1,3 +1,3 @@
include $(RIOTBOARD)/common/arduino-atmega/Makefile.features
-include $(RIOTCPU)/atmega328p/Makefile.features
include $(RIOTCPU)/atmega328p/Makefile.features

View File

@ -1,3 +1,3 @@
include $(RIOTBOARD)/common/arduino-atmega/Makefile.features
-include $(RIOTCPU)/atmega2560/Makefile.features
include $(RIOTCPU)/atmega2560/Makefile.features

View File

@ -1,3 +1,3 @@
include $(RIOTBOARD)/common/arduino-mkr/Makefile.features
-include $(RIOTCPU)/samd21/Makefile.features
include $(RIOTCPU)/samd21/Makefile.features

View File

@ -1,3 +1,3 @@
include $(RIOTBOARD)/common/arduino-mkr/Makefile.features
-include $(RIOTCPU)/samd21/Makefile.features
include $(RIOTCPU)/samd21/Makefile.features

View File

@ -1,3 +1,3 @@
include $(RIOTBOARD)/common/arduino-mkr/Makefile.features
-include $(RIOTCPU)/samd21/Makefile.features
include $(RIOTCPU)/samd21/Makefile.features

View File

@ -1,3 +1,3 @@
include $(RIOTBOARD)/common/arduino-atmega/Makefile.features
-include $(RIOTCPU)/atmega328p/Makefile.features
include $(RIOTCPU)/atmega328p/Makefile.features

View File

@ -14,4 +14,4 @@ FEATURES_PROVIDED += arduino
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m0_2
-include $(RIOTCPU)/samd21/Makefile.features
include $(RIOTCPU)/samd21/Makefile.features

View File

@ -10,4 +10,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = arm7
-include $(RIOTCPU)/lpc2387/Makefile.features
include $(RIOTCPU)/lpc2387/Makefile.features

View File

@ -9,4 +9,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m0_1
-include $(RIOTCPU)/stm32l0/Makefile.features
include $(RIOTCPU)/stm32l0/Makefile.features

View File

@ -9,4 +9,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_2
-include $(RIOTCPU)/stm32l4/Makefile.features
include $(RIOTCPU)/stm32l4/Makefile.features

View File

@ -11,4 +11,4 @@ FEATURES_PROVIDED += periph_pwm
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m0_1
-include $(RIOTCPU)/nrf51/Makefile.features
include $(RIOTCPU)/nrf51/Makefile.features

View File

@ -12,4 +12,4 @@ FEATURES_PROVIDED += emulator_renode
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m3_1
-include $(RIOTCPU)/cc2538/Makefile.features
include $(RIOTCPU)/cc2538/Makefile.features

View File

@ -6,4 +6,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m3_1
-include $(RIOTCPU)/cc26x0/Makefile.features
include $(RIOTCPU)/cc26x0/Makefile.features

View File

@ -6,4 +6,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m3_1
-include $(RIOTCPU)/cc26x0/Makefile.features
include $(RIOTCPU)/cc26x0/Makefile.features

View File

@ -7,4 +7,4 @@ FEATURES_PROVIDED += periph_rtc
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = msp430
-include $(RIOTCPU)/cc430/Makefile.features
include $(RIOTCPU)/cc430/Makefile.features

View File

@ -13,4 +13,4 @@ FEATURES_PROVIDED += arduino
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m3_1
-include $(RIOTCPU)/sam3/Makefile.features
include $(RIOTCPU)/sam3/Makefile.features

View File

@ -1 +1 @@
-include $(RIOTCPU)/msp430fxyz/Makefile.features
include $(RIOTCPU)/msp430fxyz/Makefile.features

View File

@ -13,4 +13,4 @@ FEATURES_PROVIDED += radio_nrfble
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_3
-include $(RIOTCPU)/nrf52/Makefile.features
include $(RIOTCPU)/nrf52/Makefile.features

View File

@ -10,4 +10,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m3_2
-include $(RIOTCPU)/stm32f1/Makefile.features
include $(RIOTCPU)/stm32f1/Makefile.features

View File

@ -7,4 +7,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = msp430
-include $(RIOTCPU)/msp430fxyz/Makefile.features
include $(RIOTCPU)/msp430fxyz/Makefile.features

View File

@ -8,4 +8,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_1
-include $(RIOTCPU)/lm4f120/Makefile.features
include $(RIOTCPU)/lm4f120/Makefile.features

View File

@ -6,4 +6,4 @@ FEATURES_PROVIDED += periph_gpio periph_gpio_irq
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_1
-include $(RIOTCPU)/stm32f4/Makefile.features
include $(RIOTCPU)/stm32f4/Makefile.features

View File

@ -12,4 +12,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m0_2
-include $(RIOTCPU)/samd21/Makefile.features
include $(RIOTCPU)/samd21/Makefile.features

View File

@ -9,4 +9,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m3_1
-include $(RIOTCPU)/stm32f1/Makefile.features
include $(RIOTCPU)/stm32f1/Makefile.features

View File

@ -9,4 +9,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_2
-include $(RIOTCPU)/efm32/Makefile.features
include $(RIOTCPU)/efm32/Makefile.features

View File

@ -1,3 +1,3 @@
include $(RIOTBOARD)/common/iotlab/Makefile.features
-include $(RIOTCPU)/stm32f1/Makefile.features
include $(RIOTCPU)/stm32f1/Makefile.features

View File

@ -1,3 +1,3 @@
include $(RIOTBOARD)/common/iotlab/Makefile.features
-include $(RIOTCPU)/stm32f1/Makefile.features
include $(RIOTCPU)/stm32f1/Makefile.features

View File

@ -7,4 +7,4 @@ include $(RIOTBOARD)/common/arduino-atmega/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = avr6
-include $(RIOTCPU)/atmega256rfr2/Makefile.features
include $(RIOTCPU)/atmega256rfr2/Makefile.features

View File

@ -8,4 +8,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m3_2
-include $(RIOTCPU)/stm32l1/Makefile.features
include $(RIOTCPU)/stm32l1/Makefile.features

View File

@ -6,4 +6,4 @@ FEATURES_PROVIDED += periph_spi
FEATURES_PROVIDED += periph_timer
FEATURES_PROVIDED += periph_uart
-include $(RIOTCPU)/stm32l1/Makefile.features
include $(RIOTCPU)/stm32l1/Makefile.features

View File

@ -8,4 +8,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m3_1
-include $(RIOTCPU)/stm32f1/Makefile.features
include $(RIOTCPU)/stm32f1/Makefile.features

View File

@ -6,4 +6,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m3_1
-include $(RIOTCPU)/lpc1768/Makefile.features
include $(RIOTCPU)/lpc1768/Makefile.features

View File

@ -11,4 +11,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = avr8
-include $(RIOTCPU)/atmega1284p/Makefile.features
include $(RIOTCPU)/atmega1284p/Makefile.features

View File

@ -10,4 +10,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m0_1
-include $(RIOTCPU)/nrf51/Makefile.features
include $(RIOTCPU)/nrf51/Makefile.features

View File

@ -4,4 +4,4 @@ FEATURES_PROVIDED += periph_timer
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = mips32r2
-include $(RIOTCPU)/mips32r2_generic/Makefile.features
include $(RIOTCPU)/mips32r2_generic/Makefile.features

View File

@ -9,4 +9,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = msp430
-include $(RIOTCPU)/msp430fxyz/Makefile.features
include $(RIOTCPU)/msp430fxyz/Makefile.features

View File

@ -7,4 +7,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = msp430
-include $(RIOTCPU)/msp430fxyz/Makefile.features
include $(RIOTCPU)/msp430fxyz/Makefile.features

View File

@ -9,4 +9,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = arm7
-include $(RIOTCPU)/lpc2387/Makefile.features
include $(RIOTCPU)/lpc2387/Makefile.features

View File

@ -11,4 +11,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_1
-include $(RIOTCPU)/stm32f4/Makefile.features
include $(RIOTCPU)/stm32f4/Makefile.features

View File

@ -11,4 +11,4 @@ FEATURES_PROVIDED += ethernet
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = x86
-include $(RIOTCPU)/native/Makefile.features
include $(RIOTCPU)/native/Makefile.features

View File

@ -9,4 +9,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m0_1
-include $(RIOTCPU)/nrf51/Makefile.features
include $(RIOTCPU)/nrf51/Makefile.features

View File

@ -10,4 +10,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m0_2
-include $(RIOTCPU)/nrf51/Makefile.features
include $(RIOTCPU)/nrf51/Makefile.features

View File

@ -12,4 +12,4 @@ include $(RIOTBOARD)/common/nucleo64/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m0_1
-include $(RIOTCPU)/stm32f0/Makefile.features
include $(RIOTCPU)/stm32f0/Makefile.features

View File

@ -13,4 +13,4 @@ include $(RIOTBOARD)/common/nucleo32/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m0_1
-include $(RIOTCPU)/stm32f0/Makefile.features
include $(RIOTCPU)/stm32f0/Makefile.features

View File

@ -13,4 +13,4 @@ include $(RIOTBOARD)/common/nucleo32/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m0_1
-include $(RIOTCPU)/stm32f0/Makefile.features
include $(RIOTCPU)/stm32f0/Makefile.features

View File

@ -13,4 +13,4 @@ include $(RIOTBOARD)/common/nucleo64/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m0_1
-include $(RIOTCPU)/stm32f0/Makefile.features
include $(RIOTCPU)/stm32f0/Makefile.features

View File

@ -13,4 +13,4 @@ include $(RIOTBOARD)/common/nucleo64/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m0_1
-include $(RIOTCPU)/stm32f0/Makefile.features
include $(RIOTCPU)/stm32f0/Makefile.features

View File

@ -14,4 +14,4 @@ include $(RIOTBOARD)/common/nucleo64/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m0_1
-include $(RIOTCPU)/stm32f0/Makefile.features
include $(RIOTCPU)/stm32f0/Makefile.features

View File

@ -12,4 +12,4 @@ include $(RIOTBOARD)/common/nucleo64/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m3_1
-include $(RIOTCPU)/stm32f1/Makefile.features
include $(RIOTCPU)/stm32f1/Makefile.features

View File

@ -13,4 +13,4 @@ include $(RIOTBOARD)/common/nucleo144/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m3_2
-include $(RIOTCPU)/stm32f2/Makefile.features
include $(RIOTCPU)/stm32f2/Makefile.features

View File

@ -13,4 +13,4 @@ include $(RIOTBOARD)/common/nucleo64/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_2
-include $(RIOTCPU)/stm32f3/Makefile.features
include $(RIOTCPU)/stm32f3/Makefile.features

View File

@ -12,4 +12,4 @@ include $(RIOTBOARD)/common/nucleo32/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_2
-include $(RIOTCPU)/stm32f3/Makefile.features
include $(RIOTCPU)/stm32f3/Makefile.features

View File

@ -13,4 +13,4 @@ include $(RIOTBOARD)/common/nucleo64/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_2
-include $(RIOTCPU)/stm32f3/Makefile.features
include $(RIOTCPU)/stm32f3/Makefile.features

View File

@ -12,4 +12,4 @@ include $(RIOTBOARD)/common/nucleo144/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_3
-include $(RIOTCPU)/stm32f3/Makefile.features
include $(RIOTCPU)/stm32f3/Makefile.features

View File

@ -12,4 +12,4 @@ include $(RIOTBOARD)/common/nucleo64/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_2
-include $(RIOTCPU)/stm32f3/Makefile.features
include $(RIOTCPU)/stm32f3/Makefile.features

View File

@ -15,4 +15,4 @@ include $(RIOTBOARD)/common/nucleo64/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_3
-include $(RIOTCPU)/stm32f4/Makefile.features
include $(RIOTCPU)/stm32f4/Makefile.features

View File

@ -10,4 +10,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_3
-include $(RIOTCPU)/stm32f4/Makefile.features
include $(RIOTCPU)/stm32f4/Makefile.features

View File

@ -11,4 +11,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_3
-include $(RIOTCPU)/stm32f4/Makefile.features
include $(RIOTCPU)/stm32f4/Makefile.features

View File

@ -14,4 +14,4 @@ include $(RIOTBOARD)/common/nucleo144/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_3
-include $(RIOTCPU)/stm32f4/Makefile.features
include $(RIOTCPU)/stm32f4/Makefile.features

View File

@ -16,4 +16,4 @@ include $(RIOTBOARD)/common/nucleo144/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_3
-include $(RIOTCPU)/stm32f4/Makefile.features
include $(RIOTCPU)/stm32f4/Makefile.features

View File

@ -14,4 +14,4 @@ include $(RIOTBOARD)/common/nucleo144/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_3
-include $(RIOTCPU)/stm32f4/Makefile.features
include $(RIOTCPU)/stm32f4/Makefile.features

View File

@ -15,4 +15,4 @@ include $(RIOTBOARD)/common/nucleo64/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_3
-include $(RIOTCPU)/stm32f4/Makefile.features
include $(RIOTCPU)/stm32f4/Makefile.features

View File

@ -13,4 +13,4 @@ include $(RIOTBOARD)/common/nucleo144/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_3
-include $(RIOTCPU)/stm32f4/Makefile.features
include $(RIOTCPU)/stm32f4/Makefile.features

View File

@ -11,4 +11,4 @@ include $(RIOTBOARD)/common/nucleo144/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m7
-include $(RIOTCPU)/stm32f7/Makefile.features
include $(RIOTCPU)/stm32f7/Makefile.features

View File

@ -10,4 +10,4 @@ include $(RIOTBOARD)/common/nucleo144/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m7
-include $(RIOTCPU)/stm32f7/Makefile.features
include $(RIOTCPU)/stm32f7/Makefile.features

View File

@ -10,4 +10,4 @@ include $(RIOTBOARD)/common/nucleo144/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m7
-include $(RIOTCPU)/stm32f7/Makefile.features
include $(RIOTCPU)/stm32f7/Makefile.features

View File

@ -13,4 +13,4 @@ include $(RIOTBOARD)/common/nucleo32/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m0_1
-include $(RIOTCPU)/stm32l0/Makefile.features
include $(RIOTCPU)/stm32l0/Makefile.features

View File

@ -12,4 +12,4 @@ include $(RIOTBOARD)/common/nucleo64/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m0_1
-include $(RIOTCPU)/stm32l0/Makefile.features
include $(RIOTCPU)/stm32l0/Makefile.features

View File

@ -14,4 +14,4 @@ include $(RIOTBOARD)/common/nucleo64/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m0_1
-include $(RIOTCPU)/stm32l0/Makefile.features
include $(RIOTCPU)/stm32l0/Makefile.features

View File

@ -15,4 +15,4 @@ include $(RIOTBOARD)/common/nucleo64/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m3_2
-include $(RIOTCPU)/stm32l1/Makefile.features
include $(RIOTCPU)/stm32l1/Makefile.features

View File

@ -12,4 +12,4 @@ include $(RIOTBOARD)/common/nucleo32/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_1
-include $(RIOTCPU)/stm32l4/Makefile.features
include $(RIOTCPU)/stm32l4/Makefile.features

View File

@ -13,4 +13,4 @@ include $(RIOTBOARD)/common/nucleo64/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_2
-include $(RIOTCPU)/stm32l4/Makefile.features
include $(RIOTCPU)/stm32l4/Makefile.features

View File

@ -13,4 +13,4 @@ include $(RIOTBOARD)/common/nucleo64/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_2
-include $(RIOTCPU)/stm32l4/Makefile.features
include $(RIOTCPU)/stm32l4/Makefile.features

View File

@ -14,4 +14,4 @@ include $(RIOTBOARD)/common/nucleo64/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_2
-include $(RIOTCPU)/stm32l4/Makefile.features
include $(RIOTCPU)/stm32l4/Makefile.features

View File

@ -13,4 +13,4 @@ include $(RIOTBOARD)/common/nucleo144/Makefile.features
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_3
-include $(RIOTCPU)/stm32l4/Makefile.features
include $(RIOTCPU)/stm32l4/Makefile.features

View File

@ -12,4 +12,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m3_2
-include $(RIOTCPU)/stm32l1/Makefile.features
include $(RIOTCPU)/stm32l1/Makefile.features

View File

@ -6,4 +6,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m3_1
-include $(RIOTCPU)/stm32f1/Makefile.features
include $(RIOTCPU)/stm32f1/Makefile.features

View File

@ -9,4 +9,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m3_2
-include $(RIOTCPU)/cc2538/Makefile.features
include $(RIOTCPU)/cc2538/Makefile.features

View File

@ -9,4 +9,4 @@ FEATURES_PROVIDED += periph_adc
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m3_2
-include $(RIOTCPU)/cc2538/Makefile.features
include $(RIOTCPU)/cc2538/Makefile.features

View File

@ -6,4 +6,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = mips32r2
-include $(RIOTCPU)/mips_pic32mx/Makefile.features
include $(RIOTCPU)/mips_pic32mx/Makefile.features

View File

@ -6,4 +6,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = mips32r2
-include $(RIOTCPU)/mips_pic32mz/Makefile.features
include $(RIOTCPU)/mips_pic32mz/Makefile.features

View File

@ -9,4 +9,4 @@ FEATURES_PROVIDED += periph_adc
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m3_2
-include $(RIOTCPU)/cc2538/Makefile.features
include $(RIOTCPU)/cc2538/Makefile.features

View File

@ -9,4 +9,4 @@ FEATURES_PROVIDED += periph_adc
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m3_2
-include $(RIOTCPU)/cc2538/Makefile.features
include $(RIOTCPU)/cc2538/Makefile.features

View File

@ -9,4 +9,4 @@ FEATURES_PROVIDED += periph_adc
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m3_2
-include $(RIOTCPU)/cc2538/Makefile.features
include $(RIOTCPU)/cc2538/Makefile.features

View File

@ -10,4 +10,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_3
-include $(RIOTCPU)/nrf52/Makefile.features
include $(RIOTCPU)/nrf52/Makefile.features

View File

@ -12,4 +12,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m0_2
-include $(RIOTCPU)/samd21/Makefile.features
include $(RIOTCPU)/samd21/Makefile.features

View File

@ -11,4 +11,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m0_2
-include $(RIOTCPU)/saml21/Makefile.features
include $(RIOTCPU)/saml21/Makefile.features

View File

@ -12,4 +12,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m0_2
-include $(RIOTCPU)/samd21/Makefile.features
include $(RIOTCPU)/samd21/Makefile.features

View File

@ -12,4 +12,4 @@ FEATURES_PROVIDED += periph_uart
FEATURES_MCU_GROUP = cortex_m0_2
# samr30 is a specific flavor of saml21
-include $(RIOTCPU)/saml21/Makefile.features
include $(RIOTCPU)/saml21/Makefile.features

View File

@ -6,4 +6,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m3_1
-include $(RIOTCPU)/lpc1768/Makefile.features
include $(RIOTCPU)/lpc1768/Makefile.features

View File

@ -10,4 +10,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m0_2
-include $(RIOTCPU)/samd21/Makefile.features
include $(RIOTCPU)/samd21/Makefile.features

View File

@ -11,4 +11,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_2
-include $(RIOTCPU)/efm32/Makefile.features
include $(RIOTCPU)/efm32/Makefile.features

View File

@ -11,4 +11,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_2
-include $(RIOTCPU)/efm32/Makefile.features
include $(RIOTCPU)/efm32/Makefile.features

View File

@ -11,4 +11,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_2
-include $(RIOTCPU)/efm32/Makefile.features
include $(RIOTCPU)/efm32/Makefile.features

View File

@ -11,4 +11,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_2
-include $(RIOTCPU)/efm32/Makefile.features
include $(RIOTCPU)/efm32/Makefile.features

View File

@ -6,4 +6,4 @@ FEATURES_PROVIDED += periph_uart
# The board MCU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m4_1
-include $(RIOTCPU)/ezr32wg/Makefile.features
include $(RIOTCPU)/ezr32wg/Makefile.features

View File

@ -11,4 +11,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m0_2
-include $(RIOTCPU)/samd21/Makefile.features
include $(RIOTCPU)/samd21/Makefile.features

View File

@ -11,4 +11,4 @@ FEATURES_PROVIDED += periph_uart
# The board MPU family (used for grouping by the CI system)
FEATURES_MCU_GROUP = cortex_m0_2
-include $(RIOTCPU)/samd21/Makefile.features
include $(RIOTCPU)/samd21/Makefile.features

Some files were not shown because too many files have changed in this diff Show More