Basically i glued Peter Drescher and Simon Ford libs in a GraphicsDisplay class, then derived TFT or LCD class (which inherits Protocols class), then the most derived ones (Inits), which are per-display and are the only part needed to be adapted to diff hw.

Dependents:   testUniGraphic_150217 maze_TFT_MMA8451Q TFT_test_frdm-kl25z TFT_test_NUCLEO-F411RE ... more

Revision:
34:c66986d80f72
Parent:
29:866213bb9bf0
--- a/Inits/ILI9327.cpp	Mon Feb 06 12:29:33 2017 +0000
+++ b/Inits/ILI9327.cpp	Tue Jan 25 17:57:55 2022 +0000
@@ -68,7 +68,7 @@
 void ILI9327::init()
 {
     wr_cmd8(0x11);
-    wait_ms(150);
+    thread_sleep_for(150);
     
     wr_cmd8(0xF3); //Set EQ 
     wr_data8(0x08);    
@@ -148,6 +148,6 @@
     wr_data8(0x80);  // enable
     
     wr_cmd8(0x29);  // Set_display_on  
-    wait_ms(150);
+    thread_sleep_for(150);
     
 }
\ No newline at end of file