summaryrefslogtreecommitdiffstats
path: root/tmk_core
diff options
context:
space:
mode:
authorShihpin Tseng <deftsp@gmail.com>2019-02-08 17:12:43 +0100
committerDrashna Jaelre <drashna@live.com>2019-02-15 06:06:26 +0100
commit68fad7b777e629b9837b1f60080a21386002c444 (patch)
treed682ca3deb0e5f8f4f3f32f2a8e6f49cedfd8f2e /tmk_core
parent7c2bee8b8848d2dbfb3ff1f9d5bdd7558fd74b26 (diff)
downloadqmk_firmware-68fad7b777e629b9837b1f60080a21386002c444.tar.gz
qmk_firmware-68fad7b777e629b9837b1f60080a21386002c444.tar.xz
Enable custom chibios sub-platform
Diffstat (limited to 'tmk_core')
-rw-r--r--tmk_core/chibios.mk8
1 files changed, 6 insertions, 2 deletions
diff --git a/tmk_core/chibios.mk b/tmk_core/chibios.mk
index 0f665450a..01edebfd7 100644
--- a/tmk_core/chibios.mk
+++ b/tmk_core/chibios.mk
@@ -39,9 +39,13 @@ include $(STARTUP_MK)
# HAL-OSAL files (optional).
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))","")
-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
include $(PLATFORM_MK)