1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

boards/stm32f429i-disc1: disable tinyusb feature for stm32f429i-disco

This commit is contained in:
Gunar Schorcht 2022-12-12 06:35:00 +01:00
parent 0b1b7e8408
commit b805709791
2 changed files with 5 additions and 2 deletions

View File

@ -23,7 +23,7 @@ config BOARD_STM32F429I_DISC1
# Put other features for this board (in alphabetical order)
select HAS_RIOTBOOT
select HAS_TINYUSB_DEVICE
select HAS_TINYUSB_DEVICE if !BOARD_STM32F429I_DISCO
# Clock configuration
select BOARD_HAS_HSE

View File

@ -11,4 +11,7 @@ FEATURES_PROVIDED += periph_usbdev
# Put other features for this board (in alphabetical order)
FEATURES_PROVIDED += riotboot
FEATURES_PROVIDED += tinyusb_device
ifneq (,$(filter stm32f429i-disc1,$(BOARD)))
FEATURES_PROVIDED += tinyusb_device
endif