Library to control a Graphics TFT connected to 4-wire SPI - revised for the Raio RA8875 Display Controller.

Dependents:   FRDM_RA8875_mPaint RA8875_Demo RA8875_KeyPadDemo SignalGenerator ... more

Fork of SPI_TFT by Peter Drescher

See Components - RA8875 Based Display

Enhanced touch-screen support - where it previous supported both the Resistive Touch and Capacitive Touch based on the FT5206 Touch Controller, now it also has support for the GSL1680 Touch Controller.

Offline Help Manual (Windows chm)

/media/uploads/WiredHome/ra8875.zip.bin (download, rename to .zip and unzip)

Revision:
163:17526689a3ed
Parent:
125:7a0b70f56550
Child:
190:3132b7dfad82
--- a/Bitmap.h	Mon Feb 11 03:44:42 2019 +0000
+++ b/Bitmap.h	Wed Feb 13 04:20:12 2019 +0000
@@ -31,7 +31,7 @@
     uint16_t    bfReserved1;      ///< reserved placeholder for the structure footprint
     uint16_t    bfReserved2;      ///< reserved placeholder for the structure footprint
     uint32_t    bfOffBits;        ///< Offset to bitmap data 
-    } BITMAPFILEHEADER;
+    } BITMAPFILEHEADER;           // Size: 14B
 
 /// Bitmap information header
 typedef struct                    /**** BMP file info structure ****/
@@ -47,7 +47,7 @@
     int32_t     biYPelsPerMeter;  ///< Y pixels per meter 
     uint32_t    biClrUsed;        ///< Number of colors used 
     uint32_t    biClrImportant;   ///< Number of important colors 
-    } BITMAPINFOHEADER;
+    } BITMAPINFOHEADER;           // Size: 40B
 #pragma pop
 
 #define BF_TYPE 0x4D42            /* "MB" */