1 #ifndef __LCD_H__ 2 #define __LCD_H__ 3 4 /* Initialisation functions. */ 5 6 void lcd_init(void); 7 8 /* Output functions. */ 9 10 void test_pixel(unsigned short h, unsigned short v); 11 void clear_pixel(unsigned short h, unsigned short v); 12 13 void test_pattern(); 14 15 #endif /* __LCD_H__ */