first pseudo flash filesystem code (not working yet)
[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 /*
31  * defines
32  */
33
34  /*
35   * function prototypes
36   */
37
38  #endif