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

pkg/tinyusb: remove some error checks from Makefiles

Some error checks had to be removed to get `make  info-boards-supported` working.
This commit is contained in:
Gunar Schorcht 2022-09-30 15:22:56 +02:00
parent 9cf0119233
commit bb883cdef3
2 changed files with 5 additions and 14 deletions

View File

@ -23,10 +23,11 @@ FEATURES_PROVIDED += cpu_$(CPU)
# Features that are conflicting for all architectures
FEATURES_CONFLICT += picolibc:newlib
FEATURES_CONFLICT_MSG += "Only one standard C library can be used"
FEATURES_CONFLICT_MSG += "Only one standard C library can be used."
FEATURES_CONFLICT += periph_gpio_irq:periph_gpio_ll_irq
FEATURES_CONFLICT_MSG += "Only one GPIO IRQ implementation can be used"
FEATURES_CONFLICT_MSG += "Only one GPIO IRQ implementation can be used."
FEATURES_CONFLICT += periph_usbdev:tinyusb
FEATURES_CONFLICT_MSG += "Package tinyUSB is not yet compatible with periph/usbdev"
FEATURES_CONFLICT += periph_usbdev:tinyusb_device
FEATURES_CONFLICT += periph_usbdev:tinyusb_host
FEATURES_CONFLICT_MSG += "Package tinyUSB is not yet compatible with periph_usbdev."

View File

@ -1,9 +1,3 @@
# Package tinyUSB has its own USB device driver. Therefore, it cannot be used
# together with periph/usbdev for now.
ifneq (,$(filter periph_usbdev,$(USEMODULE)))
$(error "Package tinyUSB is not yet compatible with periph/usbdev")
endif
# tinyUSB mutexes use priority inheritance
# USEMODULE += core_mutex_priority_inheritance
@ -64,11 +58,7 @@ else ifeq (stm32,$(CPU))
else ifneq (,$(filter f0 f1 g4 l0 wb,$(CPU_FAM)))
# TODO not yet working, the driver has to be ported
USEMODULE += tinyusb_portable_stm32_fsdev
else
$(error STM32 family not supported)
endif
else
$(error CPU $(CPU) or CPU family $(CPU_FAM) not supported)
endif
# other module dependencies