FreeRTOS Emulator with SDL2 Based Graphics and Input Library  1.0
A POSIX wrapper to run FreeRTOS on an x86 machine with some basic input and output libraries aimed at making teaching FreeRTOS simpler.
main.h
Go to the documentation of this file.
1 
23 #ifndef __MAIN_H__
24 #define __MAIN_H__
25 
26 #include "FreeRTOS.h"
27 #include "semphr.h"
28 
29 #include "state_machine.h"
30 
31 extern SemaphoreHandle_t DrawSignal;
32 
33 #endif //__MAIN_H__
SemaphoreHandle_t DrawSignal
Definition: main.c:55
Util functions for creating and running a basic state machine based off of the state machine implemen...