Update: I started playing with this one. Changed the solder jumpers and removed a 0res to convert to 4 wire SPI...
Found a library
https://github.com/jaretburkett/ILI9488
Which has some Teensy support, but for some reason

their version of graphic test does not compile:
Code:
#define TFT_CS PA1
#define TFT_DC PB3
#define TFT_LED PB0
#define TFT_RST PB4
Edited to real pin numbers, and does not compile on T4 as it has the normal issues, we see like:
Code:
C:\Users\kurte\Documents\Arduino\libraries\ILI9488\ILI9488.cpp:215:13: error: cannot convert 'volatile uint32_t* {aka volatile long unsigned int*}' to 'volatile uint8_t* {aka volatile unsigned char*}' in assignment
dcport = portOutputRegister(digitalPinToPort(_dc));
So to start off, I tried it on T3.6. Was able to get it to work, but the display does freeze up...
Next up I may make a version of my ili9341_t3n library to try it out... I noticed on the site:
https://www.instructables.com/id/Ard...LI9488-SPI-In/
That they recommend starting off with the Adafruit_ili9341 library and make a few changes to make it work...
Will have to double check all of the stuff for storing pixels and the like are similar enough.
The thing that made me concerned was comment in readme of the library I am playing with:
But I am not sure that is true as section 4.7.2 of the ILI9488 PDF I have) 4-Line Serial Interface, implies that they have the following data formats:
8 colors, RGG 1,1,1 bit input
65K color 565
262K color 6,6,6 input format...
But their subsections only show the 8 color and the 262K color data...