first pseudo flash filesystem code (not working yet)
[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 display_bl_init(void);
16 void display_bl_toggle(void);
17 void display_bl_on(void);
18 void display_bl_off(void);
19
20 #endif