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 @@ -27,6 +27,23 @@ #ifndef GFX_USE_OS_CHIBIOS #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 ***