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)

Files at this revision

API Documentation at this revision

Comitter:
WiredHome
Date:
Mon Nov 19 02:21:41 2018 +0000
Parent:
155:b3f225ae572c
Child:
157:1565f38ca44b
Commit message:
Add a macro for backward compatibility

Changed in this revision

RA8875.h Show annotated file Show diff for this revision Revisions of this file
--- a/RA8875.h	Tue Nov 13 01:33:41 2018 +0000
+++ b/RA8875.h	Mon Nov 19 02:21:41 2018 +0000
@@ -75,6 +75,10 @@
 
 #define RA8875_DEFAULT_SPI_FREQ 5000000
 
+#ifndef MBED_ENCODE_VERSION
+#define MBED_ENCODE_VERSION(major, minor, patch) ((major)*10000 + (minor)*100 + (patch))
+#endif
+
 // Define this to enable code that monitors the performance of various
 // graphics commands.
 //#define PERF_METRICS