Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2105 | - | 1 | #ifndef _MAIN_H |
2 | #define _MAIN_H |
||
3 | |||
4 | #include </usr/include/python2.7/Python.h> |
||
5 | //#include <stdio.h> //included in python |
||
6 | //#include <string.h> //included in python |
||
7 | #include <stdint.h> |
||
8 | #include <termios.h> |
||
9 | #include <fcntl.h> |
||
10 | #include <unistd.h> |
||
11 | #include <sys/mman.h> |
||
12 | #include <sys/types.h> |
||
13 | #include <sys/time.h> |
||
14 | #include <linux/i2c-dev.h> |
||
15 | #include <pthread.h> |
||
16 | #include "types.h" |
||
17 | #include "uart.h" |
||
18 | #include "gpio.h" |
||
19 | #include "processing.h" |
||
20 | #include "timer.h" |
||
21 | #include "flightcontrol.h" |
||
22 | #include "flowcam.h" |
||
23 | |||
24 | //extern void usleep(int); |
||
25 | volatile int Motors_On; |
||
26 | |||
27 | volatile u8 global_temp; |
||
28 | |||
29 | #endif //_MAIN_H |