pause values somehow reasonable for flash and ram usage
[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 "uart.h"
24 #include "buttons.h"
25 #include "spi.h"
26 #include "display.h"
27 #include "flash.h"
28 #include "pffs.h"
29
30 // font/logo
31 #include "default_font.h"
32 #include "default_logo.h"
33
34 /*
35  * defines
36  */
37
38  /*
39   * function prototypes
40   */
41
42  #endif