aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2014-02-01 17:08:14 +0100
committerJoel Bodenmann <joel@unormal.org>2014-02-01 17:08:14 +0100
commit6e893c7efd56a89b452e84421f5235e5cbaf6867 (patch)
tree9aad98d87bf6f49fca1e1666769d3303cde6ccf3
parent0bb6473f880e69c294f78972a04c286a088d15fb (diff)
downloaduGFX-6e893c7efd56a89b452e84421f5235e5cbaf6867.tar.gz
uGFX-6e893c7efd56a89b452e84421f5235e5cbaf6867.tar.bz2
uGFX-6e893c7efd56a89b452e84421f5235e5cbaf6867.zip
doc
-rw-r--r--gfxconf.example.h1
-rw-r--r--include/gos/options.h17
-rw-r--r--releases.txt1
3 files changed, 19 insertions, 0 deletions
diff --git a/gfxconf.example.h b/gfxconf.example.h
index e6a3381e..53aa187d 100644
--- a/gfxconf.example.h
+++ b/gfxconf.example.h
@@ -18,6 +18,7 @@
/* The operating system to use. One of these must be defined - preferably in your Makefile */
//#define GFX_USE_OS_CHIBIOS TRUE
+//#define GFX_USE_OS_FREERTOS TRUE
//#define GFX_USE_OS_WIN32 TRUE
//#define GFX_USE_OS_LINUX TRUE
//#define GFX_USE_OS_OSX TRUE
diff --git a/include/gos/options.h b/include/gos/options.h
index 4edb35d8..864cb832 100644
--- a/include/gos/options.h
+++ b/include/gos/options.h
@@ -28,6 +28,23 @@
#define GFX_USE_OS_CHIBIOS FALSE
#endif
/**
+ * @brief Use FreeRTOS
+ * @details Defaults to FALSE
+ */
+ #ifndef GFX_USE_OS_FREERTOS
+ #define GFX_USE_OS_FREERTOS FALSE
+ #endif
+ /**
+ * @brief Use Win32
+ * @details Defaults to FALSE
+ */
+ #ifndef GFX_USE_OS_WIN32
+ #define GFX_USE_OS_WIN32 FALSE
+ #endif
+ /**
+ * @brief Use a linux based system running X11
+ * @details Defaults to FALSE
+ /**
* @brief Use Win32
* @details Defaults to FALSE
*/
diff --git a/releases.txt b/releases.txt
index 2cf47a9a..ea3aa785 100644
--- a/releases.txt
+++ b/releases.txt
@@ -12,6 +12,7 @@ FIX: Console does not execute gwinPrintf() anymore if not visible
FEATURE: Added gwinGetColor() and gwinGetBgColor()
FEATURE: Console does now have an optional buffer (GWIN_CONSOLE_USE_HISTORY)
FEATURE: Added smooth scrolling to list widget
+FEATURE: Added FreeRTOS port
*** changes after 1.9 ***