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:
parent
9cf0119233
commit
bb883cdef3
@ -23,10 +23,11 @@ FEATURES_PROVIDED += cpu_$(CPU)
|
|||||||
|
|
||||||
# Features that are conflicting for all architectures
|
# Features that are conflicting for all architectures
|
||||||
FEATURES_CONFLICT += picolibc:newlib
|
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 += 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 += periph_usbdev:tinyusb_device
|
||||||
FEATURES_CONFLICT_MSG += "Package tinyUSB is not yet compatible with periph/usbdev"
|
FEATURES_CONFLICT += periph_usbdev:tinyusb_host
|
||||||
|
FEATURES_CONFLICT_MSG += "Package tinyUSB is not yet compatible with periph_usbdev."
|
||||||
|
@ -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
|
# tinyUSB mutexes use priority inheritance
|
||||||
# USEMODULE += core_mutex_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)))
|
else ifneq (,$(filter f0 f1 g4 l0 wb,$(CPU_FAM)))
|
||||||
# TODO not yet working, the driver has to be ported
|
# TODO not yet working, the driver has to be ported
|
||||||
USEMODULE += tinyusb_portable_stm32_fsdev
|
USEMODULE += tinyusb_portable_stm32_fsdev
|
||||||
else
|
|
||||||
$(error STM32 family not supported)
|
|
||||||
endif
|
endif
|
||||||
else
|
|
||||||
$(error CPU $(CPU) or CPU family $(CPU_FAM) not supported)
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# other module dependencies
|
# other module dependencies
|
||||||
|
Loading…
Reference in New Issue
Block a user