diff options
Diffstat (limited to 'os/hal/ports/STM32/LLD/USBv1')
-rw-r--r-- | os/hal/ports/STM32/LLD/USBv1/driver.mk | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/os/hal/ports/STM32/LLD/USBv1/driver.mk b/os/hal/ports/STM32/LLD/USBv1/driver.mk new file mode 100644 index 000000000..1a6d86228 --- /dev/null +++ b/os/hal/ports/STM32/LLD/USBv1/driver.mk @@ -0,0 +1,9 @@ +ifeq ($(USE_SMART_BUILD),yes)
+ifneq ($(findstring HAL_USE_USB TRUE,$(HALCONF)),)
+PLATFORMSRC += $(CHIBIOS)/os/hal/ports/STM32/LLD/USBv1/hal_usb_lld.c
+endif
+else
+PLATFORMSRC += $(CHIBIOS)/os/hal/ports/STM32/LLD/USBv1/hal_usb_lld.c
+endif
+
+PLATFORMINC += $(CHIBIOS)/os/hal/ports/STM32/LLD/USBv1
|