mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 10:39:09 +00:00
Enable custom chibios sub-platform
This commit is contained in:
parent
7c2bee8b88
commit
68fad7b777
1 changed files with 6 additions and 2 deletions
|
@ -39,9 +39,13 @@ include $(STARTUP_MK)
|
||||||
# HAL-OSAL files (optional).
|
# HAL-OSAL files (optional).
|
||||||
include $(CHIBIOS)/os/hal/hal.mk
|
include $(CHIBIOS)/os/hal/hal.mk
|
||||||
|
|
||||||
PLATFORM_MK = $(CHIBIOS)/os/hal/ports/$(MCU_FAMILY)/$(MCU_SERIES)/platform.mk
|
ifeq ("$(PLATFORM_NAME)","")
|
||||||
|
PLATFORM_NAME = platform
|
||||||
|
endif
|
||||||
|
|
||||||
|
PLATFORM_MK = $(CHIBIOS)/os/hal/ports/$(MCU_FAMILY)/$(MCU_SERIES)/$(PLATFORM_NAME).mk
|
||||||
ifeq ("$(wildcard $(PLATFORM_MK))","")
|
ifeq ("$(wildcard $(PLATFORM_MK))","")
|
||||||
PLATFORM_MK = $(CHIBIOS_CONTRIB)/os/hal/ports/$(MCU_FAMILY)/$(MCU_SERIES)/platform.mk
|
PLATFORM_MK = $(CHIBIOS_CONTRIB)/os/hal/ports/$(MCU_FAMILY)/$(MCU_SERIES)/$(PLATFORM_NAME).mk
|
||||||
endif
|
endif
|
||||||
include $(PLATFORM_MK)
|
include $(PLATFORM_MK)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue