aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2014-02-02 19:31:33 +0100
committerJoel Bodenmann <joel@unormal.org>2014-02-02 19:31:33 +0100
commitb6daaabf32bf2092689e0732ca4486f25e80317f (patch)
treea256fb32027cf9dca94e974b5d270fb907b9520c
parentfca893ab832c7316f39dae6cc332cef74e364380 (diff)
downloaduGFX-b6daaabf32bf2092689e0732ca4486f25e80317f.tar.gz
uGFX-b6daaabf32bf2092689e0732ca4486f25e80317f.tar.bz2
uGFX-b6daaabf32bf2092689e0732ca4486f25e80317f.zip
fixed file inclusion
-rw-r--r--include/gos/gos.h2
-rw-r--r--src/gos/gos.mk1
2 files changed, 3 insertions, 0 deletions
diff --git a/include/gos/gos.h b/include/gos/gos.h
index 37335fbb..54529016 100644
--- a/include/gos/gos.h
+++ b/include/gos/gos.h
@@ -429,6 +429,8 @@
*/
#elif GFX_USE_OS_CHIBIOS
#include "gos/chibios.h"
+#elif GFX_USE_OS_FREERTOS
+ #include "gos/freertos.h"
#elif GFX_USE_OS_WIN32
#include "gos/win32.h"
#elif GFX_USE_OS_LINUX
diff --git a/src/gos/gos.mk b/src/gos/gos.mk
index 9db29fe2..8ef22121 100644
--- a/src/gos/gos.mk
+++ b/src/gos/gos.mk
@@ -1,4 +1,5 @@
GFXSRC += $(GFXLIB)/src/gos/chibios.c \
+ $(GFXLIB)/src/gos/freertos.c \
$(GFXLIB)/src/gos/win32.c \
$(GFXLIB)/src/gos/linux.c \
$(GFXLIB)/src/gos/osx.c \