/** * \file * * * \brief Himax HX8347 LCD controller driver * * \author Stefano Fedrigo * * $WIZ$ module_name = "lcd_hx8347" * $WIZ$ module_hw = "bertos/hw/hw_hx8347.h" * $WIZ$ module_depends = "timer" */ #ifndef LCD_HX8347_H #define LCD_HX8347_H #include /* Bitmap */ #include #define LCD_WIDTH 320 #define LCD_HEIGHT 240 void lcd_hx8347_init(void); void lcd_hx8347_on(void); void lcd_hx8347_off(void); void lcd_hx8347_blitBitmap(const Bitmap *bm); void lcd_hx8347_blitBitmap24(int x, int y, int width, int height, const char *bmp); #endif /* LCD_HX8347_H */