1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/pkg/tinyusb/hw/Makefile
Dylan Laduranty 35b5e2556e pkg/tinyusb: add SAM0-based MCU support
Signed-off-by: Dylan Laduranty <dylan.laduranty@mesotic.com>
2022-10-05 19:23:37 +02:00

10 lines
152 B
Makefile

MODULE = tinyusb_hw
ifneq (,$(filter saml21 samd5x samd21,$(CPU)))
SRC = hw_sam0.c
else
SRC = hw_$(CPU).c
endif
include $(RIOTBASE)/Makefile.base