summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
m---------lib/chibios0
m---------lib/chibios-contrib0
-rw-r--r--platforms/chibios/platform.mk9
3 files changed, 5 insertions, 4 deletions
diff --git a/lib/chibios b/lib/chibios
Subproject 11edb1610980f213b9f83161e1715a46fb7e4c5 Subproject be44b3305f9a9fe5f2f49a4e7b978db322dc463
diff --git a/lib/chibios-contrib b/lib/chibios-contrib
Subproject 9d7a7f904ed135e3459cf6d602db56a26872df6 Subproject 77cb0a4f7589f89e724f5e6ecb1d76d514dd121
diff --git a/platforms/chibios/platform.mk b/platforms/chibios/platform.mk
index b13eed39be..169707966f 100644
--- a/platforms/chibios/platform.mk
+++ b/platforms/chibios/platform.mk
@@ -258,8 +258,8 @@ endif
258 258
259# HAL-OSAL files (optional). 259# HAL-OSAL files (optional).
260include $(CHIBIOS)/os/hal/hal.mk 260include $(CHIBIOS)/os/hal/hal.mk
261-include $(CHIBIOS)/os/hal/osal/rt/osal.mk # ChibiOS <= 19.x 261include $(CHIBIOS)/os/oslib/oslib.mk
262-include $(CHIBIOS)/os/hal/osal/rt-nil/osal.mk # ChibiOS >= 20.x 262include $(CHIBIOS)/os/hal/osal/rt-nil/osal.mk
263# RTOS files (optional). 263# RTOS files (optional).
264include $(CHIBIOS)/os/rt/rt.mk 264include $(CHIBIOS)/os/rt/rt.mk
265# Other files (optional). 265# Other files (optional).
@@ -270,6 +270,7 @@ PLATFORM_SRC = \
270 $(KERNSRC) \ 270 $(KERNSRC) \
271 $(PORTSRC) \ 271 $(PORTSRC) \
272 $(OSALSRC) \ 272 $(OSALSRC) \
273 $(OSLIBSRC) \
273 $(HALSRC) \ 274 $(HALSRC) \
274 $(PLATFORMSRC) \ 275 $(PLATFORMSRC) \
275 $(BOARDSRC) \ 276 $(BOARDSRC) \
@@ -285,11 +286,11 @@ QUANTUM_LIB_SRC += $(STARTUPASM) $(PORTASM) $(OSALASM) $(PLATFORMASM)
285 286
286PLATFORM_SRC := $(patsubst $(TOP_DIR)/%,%,$(PLATFORM_SRC)) 287PLATFORM_SRC := $(patsubst $(TOP_DIR)/%,%,$(PLATFORM_SRC))
287 288
288EXTRAINCDIRS += $(CHIBIOS)/os/license $(CHIBIOS)/os/oslib/include \ 289EXTRAINCDIRS += $(CHIBIOS)/os/license \
289 $(TOP_DIR)/platforms/chibios/boards/$(BOARD)/configs \ 290 $(TOP_DIR)/platforms/chibios/boards/$(BOARD)/configs \
290 $(TOP_DIR)/platforms/chibios/boards/common/configs \ 291 $(TOP_DIR)/platforms/chibios/boards/common/configs \
291 $(HALCONFDIR) $(CHCONFDIR) \ 292 $(HALCONFDIR) $(CHCONFDIR) \
292 $(STARTUPINC) $(KERNINC) $(PORTINC) $(OSALINC) \ 293 $(STARTUPINC) $(KERNINC) $(PORTINC) $(OSALINC) $(OSLIBINC) \
293 $(HALINC) $(PLATFORMINC) $(BOARDINC) $(TESTINC) \ 294 $(HALINC) $(PLATFORMINC) $(BOARDINC) $(TESTINC) \
294 $(STREAMSINC) $(CHIBIOS)/os/various $(COMMON_VPATH) 295 $(STREAMSINC) $(CHIBIOS)/os/various $(COMMON_VPATH)
295 296