doc
This commit is contained in:
parent
0bb6473f88
commit
6e893c7efd
3 changed files with 19 additions and 0 deletions
|
@ -18,6 +18,7 @@
|
||||||
|
|
||||||
/* The operating system to use. One of these must be defined - preferably in your Makefile */
|
/* 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_CHIBIOS TRUE
|
||||||
|
//#define GFX_USE_OS_FREERTOS TRUE
|
||||||
//#define GFX_USE_OS_WIN32 TRUE
|
//#define GFX_USE_OS_WIN32 TRUE
|
||||||
//#define GFX_USE_OS_LINUX TRUE
|
//#define GFX_USE_OS_LINUX TRUE
|
||||||
//#define GFX_USE_OS_OSX TRUE
|
//#define GFX_USE_OS_OSX TRUE
|
||||||
|
|
|
@ -27,6 +27,23 @@
|
||||||
#ifndef GFX_USE_OS_CHIBIOS
|
#ifndef GFX_USE_OS_CHIBIOS
|
||||||
#define GFX_USE_OS_CHIBIOS FALSE
|
#define GFX_USE_OS_CHIBIOS FALSE
|
||||||
#endif
|
#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
|
* @brief Use Win32
|
||||||
* @details Defaults to FALSE
|
* @details Defaults to FALSE
|
||||||
|
|
|
@ -12,6 +12,7 @@ FIX: Console does not execute gwinPrintf() anymore if not visible
|
||||||
FEATURE: Added gwinGetColor() and gwinGetBgColor()
|
FEATURE: Added gwinGetColor() and gwinGetBgColor()
|
||||||
FEATURE: Console does now have an optional buffer (GWIN_CONSOLE_USE_HISTORY)
|
FEATURE: Console does now have an optional buffer (GWIN_CONSOLE_USE_HISTORY)
|
||||||
FEATURE: Added smooth scrolling to list widget
|
FEATURE: Added smooth scrolling to list widget
|
||||||
|
FEATURE: Added FreeRTOS port
|
||||||
|
|
||||||
|
|
||||||
*** changes after 1.9 ***
|
*** changes after 1.9 ***
|
||||||
|
|
Loading…
Add table
Reference in a new issue