changing circuitry to disable RTC, update initialization to match
[fw/openalt] / main.h
1 #ifndef _MAIN_H_
2 #define _MAIN_H_
3
4 //
5 //
6 //
7 #define __VERSION "1.20"
8
9 //
10 //
11 //
12 typedef enum
13 {
14   TASKHANDLE_GPS = 0,
15   TASKHANDLE_SENSORS,
16   TASKHANDLE_MONITOR,
17   TASKHANDLE_LED,
18   TASKHANDLE_LAST
19 }
20 taskHandle_e;
21
22 extern xTaskHandle taskHandles [TASKHANDLE_LAST];
23
24 #endif