TFTLCD with FastIO

Fork of TFTLCD by en 129

Revision:
20:4bdca8d8dadc
Parent:
12:d0978272a340
Child:
22:4c169297f374
--- a/ssd1289.h	Thu Dec 13 03:37:22 2012 +0000
+++ b/ssd1289.h	Fri Dec 21 06:05:15 2012 +0000
@@ -165,15 +165,16 @@
      * \remarks Addressing commands are controller-specific and this function needs to be
      *          implemented separately for each available controller.
      */
-    virtual void SetXY( uint16_t x1, uint16_t y1, uint16_t x2, uint16_t y2 );
+    virtual void SetXY( unsigned short x1, unsigned short y1, unsigned short x2, unsigned short y2 );
     
     /** Sets the color of the pixel at the address pointer of the controller.
      *
      * This function is to be provided by each implementation separately in
      * order to account for different color depth used by the controller.
      * \param color The color of the pixel.
+     * \param mode The depth (palette) of the color.
      */
-    virtual void SetPixelColor( unsigned int color );
+    virtual void SetPixelColor( unsigned int color, colordepth_t mode = RGB24 );
     
 private:
     DigitalOut  _lcd_pin_wr;