diff options
author | Diego Ismirlian <dismirlian@gmail.com> | 2019-10-01 09:18:18 -0300 |
---|---|---|
committer | Diego Ismirlian <dismirlian@gmail.com> | 2019-10-01 09:18:18 -0300 |
commit | 2644acd83a14e8652e30d65ac934d95992175ea0 (patch) | |
tree | 741b09dde2d77aaab63f546acd871748eb08ee33 /testhal/STM32/STM32F4xx/USB_HOST/Makefile | |
parent | ebe30922cce9cb81e9a3d876056f295e0ca56a5f (diff) | |
download | ChibiOS-Contrib-2644acd83a14e8652e30d65ac934d95992175ea0.tar.gz ChibiOS-Contrib-2644acd83a14e8652e30d65ac934d95992175ea0.tar.bz2 ChibiOS-Contrib-2644acd83a14e8652e30d65ac934d95992175ea0.zip |
USBH: testhal: fix compile with ChibiOS 18.2
Diffstat (limited to 'testhal/STM32/STM32F4xx/USB_HOST/Makefile')
-rw-r--r-- | testhal/STM32/STM32F4xx/USB_HOST/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testhal/STM32/STM32F4xx/USB_HOST/Makefile b/testhal/STM32/STM32F4xx/USB_HOST/Makefile index 54c23ca..e38a6e5 100644 --- a/testhal/STM32/STM32F4xx/USB_HOST/Makefile +++ b/testhal/STM32/STM32F4xx/USB_HOST/Makefile @@ -97,7 +97,7 @@ include $(CHIBIOS)/os/common/startup/ARMCMx/compilers/GCC/mk/startup_stm32f4xx.m include $(CHIBIOS_CONTRIB)/os/hal/hal.mk
include $(CHIBIOS_CONTRIB)/os/hal/ports/STM32/STM32F4xx/platform.mk
include $(CHIBIOS)/os/hal/boards/ST_STM32F4_DISCOVERY/board.mk
-include $(CHIBIOS)/os/hal/osal/rt-nil/osal.mk
+include $(CHIBIOS)/os/hal/osal/rt/osal.mk
# RTOS files (optional).
include $(CHIBIOS)/os/rt/rt.mk
include $(CHIBIOS)/os/common/ports/ARMCMx/compilers/GCC/mk/port_v7m.mk
@@ -216,6 +216,6 @@ ULIBS = # End of user defines
##############################################################################
-RULESPATH = $(CHIBIOS)/os/common/startup/ARMCMx/compilers/GCC/mk
-include $(RULESPATH)/arm-none-eabi.mk
+RULESPATH = $(CHIBIOS)/os/common/startup/ARMCMx/compilers/GCC
+#include $(RULESPATH)/arm-none-eabi.mk
include $(RULESPATH)/rules.mk
|