BeRTOS
|
00001 00042 #ifndef LCD_HX8347_H 00043 #define LCD_HX8347_H 00044 00045 #include <gfx/gfx.h> /* Bitmap */ 00046 00047 #include <cpu/types.h> 00048 00049 #define LCD_WIDTH 320 00050 #define LCD_HEIGHT 240 00051 00052 void lcd_hx8347_init(void); 00053 void lcd_hx8347_on(void); 00054 void lcd_hx8347_off(void); 00055 void lcd_hx8347_blitBitmap(const Bitmap *bm); 00056 void lcd_hx8347_blitBitmap24(int x, int y, int width, int height, const char *bmp); 00057 00058 #endif /* LCD_HX8347_H */