aboutsummaryrefslogtreecommitdiffstats
path: root/src/gos/sys_options.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gos/sys_options.h')
-rw-r--r--src/gos/sys_options.h18
1 files changed, 16 insertions, 2 deletions
diff --git a/src/gos/sys_options.h b/src/gos/sys_options.h
index ae9916ad..cfbed057 100644
--- a/src/gos/sys_options.h
+++ b/src/gos/sys_options.h
@@ -28,6 +28,13 @@
#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
*/
@@ -35,7 +42,7 @@
#define GFX_USE_OS_WIN32 FALSE
#endif
/**
- * @brief Use a linux based system running X11
+ * @brief Use a linux based system running X11
* @details Defaults to FALSE
*/
#ifndef GFX_USE_OS_LINUX
@@ -58,9 +65,16 @@
/**
* @}
*
- * @name GOS Optional Sizing Parameters
+ * @name GOS Optional Parameters
* @{
*/
+ /**
+ * @brief Should uGFX stuff be added to the FreeRTOS+Tracer
+ * @details Defaults to FALSE
+ */
+ #ifndef GFX_FREERTOS_USE_TRACE
+ #define GFX_FREERTOS_USE_TRACE FALSE
+ #endif
/** @} */
#endif /* _GOS_OPTIONS_H */