2017-02-14 13:09:59 +01:00
|
|
|
BOARD ?= stm32f4discovery
|
2023-05-10 11:12:39 +02:00
|
|
|
include ../Makefile.build_system_common
|
2014-11-24 14:22:30 +01:00
|
|
|
|
|
|
|
# The stm32f4discovery is the only board that provides known conflicting features,
|
|
|
|
# so using this compile test on other boards will not provide the expected warning.
|
|
|
|
BOARD_WHITELIST := stm32f4discovery
|
|
|
|
|
2016-11-08 18:37:08 +01:00
|
|
|
# These features have a chance to use/access the shared `SPI_DEV(0)` on
|
|
|
|
# stm32f4discovery, which would probably produce an unexpected behavior in the
|
|
|
|
# user application.
|
2014-11-24 14:22:30 +01:00
|
|
|
FEATURES_REQUIRED = periph_dac periph_spi
|
|
|
|
|
|
|
|
include $(RIOTBASE)/Makefile.include
|