X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fdrv%2Flcd_rit128x96.h;h=04b8e38810bf30c8586e48553f3a71c422c8e648;hb=41718ab2098bd5640da265c34f1ecb79a4123d39;hp=7f6074737b68e988b262c3b3a827a3a7987f5154;hpb=8926dddf3194ac009128a7636d44f6f4efc568f3;p=bertos.git diff --git a/bertos/drv/lcd_rit128x96.h b/bertos/drv/lcd_rit128x96.h index 7f607473..04b8e388 100644 --- a/bertos/drv/lcd_rit128x96.h +++ b/bertos/drv/lcd_rit128x96.h @@ -31,20 +31,26 @@ * --> * * \brief OLED-RIT-128x96 (P14201) graphic display driver + * + * $WIZ$ module_name = "lcd_rit128x96" + * $WIZ$ module_hw = "bertos/hw/hw_rit128x96.h" */ #ifndef LCD_LM3S_H #define LCD_LM3S_H #include /* Bitmap */ -#include + +#include #define LCD_WIDTH 128 #define LCD_HEIGHT 96 -void rit128x96_lcd_blitBitmap(const Bitmap *bm); -void rit128x96_lcd_on(void); -void rit128x96_lcd_off(void); -void rit128x96_lcd_init(void); +void rit128x96_blitRaw(const uint8_t *data, + uint8_t x, uint8_t y, uint8_t width, uint8_t height); +void rit128x96_blitBitmap(const Bitmap *bm); +void rit128x96_on(void); +void rit128x96_off(void); +void rit128x96_init(void); #endif /* LCD_LM3S_H */