diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/gos/options.h | 17 |
1 files changed, 17 insertions, 0 deletions
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 */ |