aboutsummaryrefslogtreecommitdiffstats
path: root/src/gos/gos_rules.h
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2015-04-07 23:21:19 +1000
committerinmarket <andrewh@inmarket.com.au>2015-04-07 23:21:19 +1000
commit82cb03947c60477e54f46dd7ee8a9b685ad71d64 (patch)
tree4f00b78d4b57b7915397bb114b5743253ee81d24 /src/gos/gos_rules.h
parentbeacfaa9946014ca05e12eb740d1d33a1f5f996f (diff)
downloaduGFX-82cb03947c60477e54f46dd7ee8a9b685ad71d64.tar.gz
uGFX-82cb03947c60477e54f46dd7ee8a9b685ad71d64.tar.bz2
uGFX-82cb03947c60477e54f46dd7ee8a9b685ad71d64.zip
Add Arduino as a full GOS supported operating system (even though it is really just a special bare bones platform)
Diffstat (limited to 'src/gos/gos_rules.h')
-rw-r--r--src/gos/gos_rules.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gos/gos_rules.h b/src/gos/gos_rules.h
index 0a86f86e..6eea98c9 100644
--- a/src/gos/gos_rules.h
+++ b/src/gos/gos_rules.h
@@ -16,7 +16,7 @@
#ifndef _GOS_RULES_H
#define _GOS_RULES_H
-#if !GFX_USE_OS_CHIBIOS && !GFX_USE_OS_WIN32 && !GFX_USE_OS_LINUX && !GFX_USE_OS_OSX && !GFX_USE_OS_RAW32 && !GFX_USE_OS_FREERTOS && !GFX_USE_OS_ECOS && !GFX_USE_OS_RAWRTOS
+#if !GFX_USE_OS_CHIBIOS && !GFX_USE_OS_WIN32 && !GFX_USE_OS_LINUX && !GFX_USE_OS_OSX && !GFX_USE_OS_RAW32 && !GFX_USE_OS_FREERTOS && !GFX_USE_OS_ECOS && !GFX_USE_OS_RAWRTOS && !GFX_USE_OS_ARDUINO
#if GFX_DISPLAY_RULE_WARNINGS
#warning "GOS: No Operating System has been defined. ChibiOS (GFX_USE_OS_CHIBIOS) has been turned on for you."
#endif
@@ -24,7 +24,7 @@
#define GFX_USE_OS_CHIBIOS TRUE
#endif
-#if GFX_USE_OS_CHIBIOS + GFX_USE_OS_WIN32 + GFX_USE_OS_LINUX + GFX_USE_OS_OSX + GFX_USE_OS_RAW32 + GFX_USE_OS_FREERTOS + GFX_USE_OS_ECOS + GFX_USE_OS_RAWRTOS != 1 * TRUE
+#if GFX_USE_OS_CHIBIOS + GFX_USE_OS_WIN32 + GFX_USE_OS_LINUX + GFX_USE_OS_OSX + GFX_USE_OS_RAW32 + GFX_USE_OS_FREERTOS + GFX_USE_OS_ECOS + GFX_USE_OS_RAWRTOS + GFX_USE_OS_ARDUINO != 1 * TRUE
#error "GOS: More than one operation system has been defined as TRUE."
#endif