My controller identifies as an ILI9328, but only works if initialised as an ILI9325. This fork includes a fix to force 9325 initialization when a 9328 is detected.

Dependents:   TouchScreenCalibrate TouchScreenGUIDemo

Fork of UniGraphic by GraphicsDisplay

Revision:
34:091b954c3205
Parent:
11:b842b8e332cb
--- a/Inits/TFT_MIPI.cpp	Mon Apr 11 16:54:35 2016 +0000
+++ b/Inits/TFT_MIPI.cpp	Sun Jun 21 15:23:02 2020 +0100
@@ -101,9 +101,9 @@
     wr_cmd8(0x13); // Nomal Displaymode
     
     wr_cmd8(0x11);                     // sleep out
-    wait_ms(150);
+    ThisThread::sleep_for(150);
      
     wr_cmd8(0x29);                     // display on
-    wait_ms(150);
+    ThisThread::sleep_for(150);
 
 }
\ No newline at end of file