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:
137:9e09f6081ef1
Parent:
136:224e03d5c31f
Child:
140:33ca352755a2
--- a/RA8875.h	Wed Nov 16 02:48:45 2016 +0000
+++ b/RA8875.h	Thu Dec 08 12:29:54 2016 +0000
@@ -2266,10 +2266,10 @@
     /// foreground and background color registers, and others. Those must be set
     /// outside of this API.
     ///
-    /// @param[in] dstLayer layer [5B.7]. layer value is 0 or 1 repreenting layer 1 and 2.
+    /// @param[in] dstLayer layer [5B.7]. layer value is 0 or 1 representing layer 1 and 2.
     /// @param[in] dstDataSelect [50.5] defines the destination data type 0: block, 1: linear.
     /// @param[in] dstPoint [58-5B] is a point_t defining the destination coordinate.
-    /// @param[in] srcLayer layer [57.7]. layer value is 0 or 1 repreenting layer 1 and 2.
+    /// @param[in] srcLayer layer [57.7]. layer value is 0 or 1 representing layer 1 and 2.
     /// @param[in] srcDataSelect [50.6] defines the source data type 0: block, 1: linear.
     /// @param[in] srcPoint [54-57] is a point_t defining the source coordinate.
     /// @param[in] bte_width [5C-5D]. operation width.
@@ -2282,7 +2282,7 @@
     ///
     RetCode_t BlockMove(uint8_t dstLayer, uint8_t dstDataSelect, point_t dstPoint,
         uint8_t srcLayer, uint8_t srcDataSelect, point_t srcPoint,
-        uint16_t bte_width, uint16_t bte_height,
+        dim_t bte_width, dim_t bte_height,
         uint8_t bte_op_code, uint8_t bte_rop_code);