aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2018-07-07 17:05:18 +1000
committerinmarket <andrewh@inmarket.com.au>2018-07-07 17:05:18 +1000
commite2fb6820d013420bf9a69ac5b8955f9ebb6af4f0 (patch)
treed1df5479f32a0e47f8db07031a48bb88f0fc3a27 /tools
parent41271d632b74f5cf47c30d3b699eb6b2786f2136 (diff)
downloaduGFX-e2fb6820d013420bf9a69ac5b8955f9ebb6af4f0.tar.gz
uGFX-e2fb6820d013420bf9a69ac5b8955f9ebb6af4f0.tar.bz2
uGFX-e2fb6820d013420bf9a69ac5b8955f9ebb6af4f0.zip
Add support for ChibiOS V5 - Thanks Vrollei
Diffstat (limited to 'tools')
-rw-r--r--tools/gmake_scripts/os_chibios.mk6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/gmake_scripts/os_chibios.mk b/tools/gmake_scripts/os_chibios.mk
index 31e450fc..82a102d7 100644
--- a/tools/gmake_scripts/os_chibios.mk
+++ b/tools/gmake_scripts/os_chibios.mk
@@ -9,7 +9,7 @@
# Requirements:
#
-# CHIBIOS_VERSION Which version of ChibiOS is this (2, 3, 16, git) - default is 16
+# CHIBIOS_VERSION Which version of ChibiOS is this (2, 3, 4, 5, 16, git) - default is 16
# Note the 'git' option is one we try to keep up to date with the ChibiOS master
# If you find the 'git' option requires update please let us know.
#
@@ -19,6 +19,10 @@ ifeq ($(CHIBIOS_VERSION),2)
include $(GFXLIB)/tools/gmake_scripts/os_chibios_2.mk
else ifeq ($(CHIBIOS_VERSION),3)
include $(GFXLIB)/tools/gmake_scripts/os_chibios_3.mk
+else ifeq ($(CHIBIOS_VERSION),4)
+ include $(GFXLIB)/tools/gmake_scripts/os_chibios_3.mk
+else ifeq ($(CHIBIOS_VERSION),5)
+ include $(GFXLIB)/tools/gmake_scripts/os_chibios_3.mk
else ifeq ($(CHIBIOS_VERSION),16)
include $(GFXLIB)/tools/gmake_scripts/os_chibios_3.mk
else ifeq ($(CHIBIOS_VERSION),git)