compilation errors fixed, debug now!
[my-code/arm.git] / betty / betty.h
1 /*
2  * betty.h - betty alternative firmware header file
3  *
4  * author: hackbard@hackdaworld.org
5  *
6  */
7
8 #ifndef BETTY_H
9 #define BETTY_H
10
11 /*
12  * includes
13  */
14
15 // processor
16 #include "lpc2xxx.h"
17
18 // types
19 #include "types.h"
20
21 // api
22 #include "system.h"
23 #include "functions.h"
24 #include "uart.h"
25 #include "buttons.h"
26 #include "spi.h"
27 #include "display.h"
28 #include "flash.h"
29 #include "pffs.h"
30 #include "interrupts.h"
31
32 // font/logo
33 #include "default_font.h"
34 #include "default_logo.h"
35
36 /*
37  * defines
38  */
39
40  /*
41   * function prototypes
42   */
43
44  #endif