/** * \file * * * \author Bernie Innocenti * \author Stefano Fedrigo * * \brief Displaytech 32122A LCD driver * * $WIZ$ module_name = "lcd_32122a" * $WIZ$ module_hw = "bertos/hw/hw_lcd_32122a.h" * $WIZ$ module_configuration = "bertos/cfg/cfg_lcd_32122a.h" * $WIZ$ module_depends = "timer", "pwm" */ #ifndef DRV_LCD_32122A_H #define DRV_LCD_32122A_H /* Display bitmap dims */ #define LCD_WIDTH 122 #define LCD_HEIGHT 32 #include /* Bitmap */ #warning __FILTER_NEXT_WARNING__ #warning this drive is untested.. void lcd_32122_init(void); void lcd_32122_setPwm(int duty); void lcd_32122_blitBitmap(const Bitmap *bm); #endif /* DRV_LCD_32122A_H */