Skip to content

Commit

Permalink
Merge pull request #10078 from cladmi/pr/make/ensure_board_includes_c…
Browse files Browse the repository at this point in the history
…pu_features

boards: always include cpu features
  • Loading branch information
MrKevinWeiss authored Oct 12, 2018
2 parents 746d3e1 + b450141 commit ee3ebe1
Show file tree
Hide file tree
Showing 116 changed files with 122 additions and 115 deletions.
7 changes: 7 additions & 0 deletions Makefile.include
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion boards/airfy-beacon/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/arduino-duemilanove/Makefile.features
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include $(RIOTBOARD)/common/arduino-atmega/Makefile.features

-include $(RIOTCPU)/atmega328p/Makefile.features
include $(RIOTCPU)/atmega328p/Makefile.features
2 changes: 1 addition & 1 deletion boards/arduino-mega2560/Makefile.features
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include $(RIOTBOARD)/common/arduino-atmega/Makefile.features

-include $(RIOTCPU)/atmega2560/Makefile.features
include $(RIOTCPU)/atmega2560/Makefile.features
2 changes: 1 addition & 1 deletion boards/arduino-mkr1000/Makefile.features
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include $(RIOTBOARD)/common/arduino-mkr/Makefile.features

-include $(RIOTCPU)/samd21/Makefile.features
include $(RIOTCPU)/samd21/Makefile.features
2 changes: 1 addition & 1 deletion boards/arduino-mkrfox1200/Makefile.features
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include $(RIOTBOARD)/common/arduino-mkr/Makefile.features

-include $(RIOTCPU)/samd21/Makefile.features
include $(RIOTCPU)/samd21/Makefile.features
2 changes: 1 addition & 1 deletion boards/arduino-mkrzero/Makefile.features
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include $(RIOTBOARD)/common/arduino-mkr/Makefile.features

-include $(RIOTCPU)/samd21/Makefile.features
include $(RIOTCPU)/samd21/Makefile.features
2 changes: 1 addition & 1 deletion boards/arduino-uno/Makefile.features
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include $(RIOTBOARD)/common/arduino-atmega/Makefile.features

-include $(RIOTCPU)/atmega328p/Makefile.features
include $(RIOTCPU)/atmega328p/Makefile.features
2 changes: 1 addition & 1 deletion boards/arduino-zero/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/avsextrem/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/b-l072z-lrwan1/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/b-l475e-iot01a/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/calliope-mini/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/cc2538dk/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/cc2650-launchpad/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/cc2650stk/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/chronos/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/common/arduino-due/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/common/msb-430/Makefile.features
Original file line number Diff line number Diff line change
@@ -1 +1 @@
-include $(RIOTCPU)/msp430fxyz/Makefile.features
include $(RIOTCPU)/msp430fxyz/Makefile.features
2 changes: 1 addition & 1 deletion boards/common/nrf52xxxdk/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/common/stm32f103c8/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/common/wsn430/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/ek-lm4f120xl/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/f4vi1/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/feather-m0/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/fox/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/ikea-tradfri/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/iotlab-a8-m3/Makefile.features
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include $(RIOTBOARD)/common/iotlab/Makefile.features

-include $(RIOTCPU)/stm32f1/Makefile.features
include $(RIOTCPU)/stm32f1/Makefile.features
2 changes: 1 addition & 1 deletion boards/iotlab-m3/Makefile.features
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include $(RIOTBOARD)/common/iotlab/Makefile.features

-include $(RIOTCPU)/stm32f1/Makefile.features
include $(RIOTCPU)/stm32f1/Makefile.features
2 changes: 1 addition & 1 deletion boards/jiminy-mega256rfr2/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/limifrog-v1/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/lobaro-lorabox/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/maple-mini/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/mbed_lpc1768/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/mega-xplained/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/microbit/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/mips-malta/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/msb-430/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/msb-430h/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/msba2/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/msbiot/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/native/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/nrf51dongle/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/nrf6310/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/nucleo-f030r8/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/nucleo-f031k6/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/nucleo-f042k6/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/nucleo-f070rb/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/nucleo-f072rb/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/nucleo-f091rc/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/nucleo-f103rb/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/nucleo-f207zg/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/nucleo-f302r8/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/nucleo-f303k8/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/nucleo-f303re/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/nucleo-f303ze/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/nucleo-f334r8/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/nucleo-f401re/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/nucleo-f410rb/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/nucleo-f411re/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/nucleo-f412zg/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/nucleo-f413zh/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/nucleo-f429zi/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/nucleo-f446re/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/nucleo-f446ze/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/nucleo-f722ze/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion boards/nucleo-f746zg/Makefile.features
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading

0 comments on commit ee3ebe1

Please sign in to comment.