cad2e7646cf770e7768d4dd3818df54cc7b07a34
[my-code/arm.git] / betty / display.h
1 /*
2  * display.h - header file for the display handling
3  *
4  * author: hackbard@hackdaworld.org
5  *
6  */
7
8 #ifndef DISPLAY_H
9 #define DISPLAY_H
10
11 #include "lpc2xxx.h"
12 #include "types.h"
13
14 /* function prototypes */
15 void bl_init(void);
16 void bl_toggle(void);
17 void bl_on(void);
18 void bl_off(void);
19
20 #endif