settings
[asdevice.git] / asdevice / device.h
blobd1202bacbc32a6fc9b7aae8312564e31d4f4684e
1 #ifndef DEVICE_H
2 #define DEVICE_H
4 #include <stdlib.h>
5 #include <avr/io.h>
7 #ifndef GLOBAL_H
8 #include "global.h"
9 #endif
10 #ifndef __PGMSPACE_H_
11 #include <avr/pgmspace.h>
12 #endif
13 #ifndef NAN
14 #include <math.h>
15 #endif
16 #ifndef LCD_H
17 #include "lcd.h"
18 #endif
19 #include "lcdconf.h"
20 #ifndef KEYPADCONF_H
21 #include "keypadconfig.h"
22 #endif
23 #ifndef SCREEN_H
24 #include "screen.h"
25 #endif
26 #ifndef DEVICE_TYPES_H
27 #include "devicetypes.h"
28 #endif
29 #ifndef RPRINTF_SIMPLE
30 #include "rprintf.h"
31 #endif
33 #endif