Adding missing defines for CMSIS and Keil OS
This commit is contained in:
parent
00aeab86eb
commit
96a912bbc0
2 changed files with 5 additions and 0 deletions
|
@ -36,6 +36,7 @@
|
|||
//#define GFX_USE_OS_RAWRTOS FALSE
|
||||
//#define GFX_USE_OS_ARDUINO FALSE
|
||||
//#define GFX_USE_OS_KEIL FALSE
|
||||
//#define GFX_USE_OS_CMSIS FALSE
|
||||
//#define GFX_USE_OS_RAW32 FALSE
|
||||
// #define INTERRUPTS_OFF() optional_code
|
||||
// #define INTERRUPTS_ON() optional_code
|
||||
|
|
|
@ -474,6 +474,10 @@
|
|||
#include "src/gos/gos_ecos.h"
|
||||
#elif GFX_USE_OS_ARDUINO
|
||||
#include "src/gos/gos_arduino.h"
|
||||
#elif GFX_USE_OS_CMSIS
|
||||
#include "src/gos/gos_cmsis.h"
|
||||
#elif GFX_USE_OS_KEIL
|
||||
#include "src/gos/gos_keil.h"
|
||||
#else
|
||||
#error "Your operating system is not supported yet"
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue