doc: Added group definitions for most common modules.
[bertos.git] / bertos / drv / lcd_ili9225.h
index 8df00aa18cf2bd5a679272fbcf7ef6810b4848e6..09cbf097643fc6ba82d1d4dfd884510987cd244b 100644 (file)
@@ -30,7 +30,7 @@
  *
  * -->
  *
- * \brief ILI9225B 176x220 graphic driver
+ * \brief ILI9225B 4 wire interface graphic driver
  *
  * $WIZ$ module_name = "lcd_ili9225"
  * $WIZ$ module_hw = "bertos/hw/hw_ili9225.h"
@@ -45,7 +45,6 @@
 
 #define LCD_WIDTH          176
 #define LCD_HEIGHT         220
-#define LCD_BACKLIGHT_MAX  15
 
 // Fwd decl
 struct KFile;
@@ -53,9 +52,9 @@ struct KFile;
 void lcd_ili9225_init(struct KFile *spi);
 void lcd_ili9225_on(void);
 void lcd_ili9225_off(void);
-void lcd_ili9225_backlight(unsigned level);
 void lcd_ili9225_blitRaw(const uint8_t *data,
                uint8_t x, uint8_t y, uint8_t width, uint8_t height);
 void lcd_ili9225_blitBitmap(const Bitmap *bm);
+void lcd_ili9225_blitBitmap24(int x, int y, int width, int height, const char *bmp);
 
 #endif /* LCD_ILI9225_H */