aboutsummaryrefslogtreecommitdiffstats
path: root/src/gos/freertos.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gos/freertos.c')
-rw-r--r--src/gos/freertos.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/gos/freertos.c b/src/gos/freertos.c
index f2c03eec..dbdfd22e 100644
--- a/src/gos/freertos.c
+++ b/src/gos/freertos.c
@@ -18,13 +18,17 @@
#error "GOS: configUSE_MUTEXES must be defined in FreeRTOSConfig.h"
#endif
-#if configUSE_COUNTING_SEMAPHORES != 1
+#if configUSE_COUNTING_SEMAPHORES != 1
#error "GOS: configUSE_COUNTING_SEMAPHORES must be defined in FreeRTOSConfig.h"
#endif
void _gosInit(void)
{
- // The user must call vTaskStartScheduler() himself before he calls gfxInit().
+ #if !GFX_NO_OS_INIT
+ #error "GOS: Operating System initialization for FreeRTOS is not yet implemented in uGFX. Please set GFX_NO_OS_INIT to TRUE in your gfxconf.h"
+ #else
+ #warning "GOS: Operating System initialization has been turned off. Make sure you call vTaskStartScheduler() before gfxInit() in your application!"
+ #endif
}
void _gosDeinit(void)