Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2105 | - | 1 | #ifndef _MAIN_H |
2 | #define _MAIN_H |
||
3 | |||
4 | #include <curses.h> |
||
5 | #include <stdio.h> |
||
6 | #include <string.h> |
||
7 | #include <termios.h> |
||
8 | #include <stdlib.h> |
||
9 | #include <fcntl.h> |
||
10 | #include <unistd.h> |
||
11 | #include <sys/ioctl.h> |
||
12 | #include <linux/joystick.h> |
||
13 | #include <sys/mman.h> |
||
14 | #include <sys/types.h> |
||
15 | #include <sys/stat.h> |
||
16 | #include "frame.h" |
||
17 | #include "types.h" |
||
18 | #include "file.h" |
||
19 | #include "uart.h" |
||
20 | #include "gamepad.h" |
||
21 | #include "calibration.h" |
||
22 | #include "gpio.h" |
||
23 | |||
24 | extern void usleep(int); |
||
25 | |||
26 | #endif //_MAIN_H |