From e01ea43baf5c75bfe9e4217909c2d1d94b811b4c Mon Sep 17 00:00:00 2001 From: Bodmer Date: Sun, 25 Nov 2018 03:47:54 +0000 Subject: [PATCH] Fix SPI incompatibility I fixed the parallel and broke the SPI, now both work! --- TFT_eSPI.h | 6 +++++- library.json | 2 +- library.properties | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/TFT_eSPI.h b/TFT_eSPI.h index 2af6786..8f31f29 100644 --- a/TFT_eSPI.h +++ b/TFT_eSPI.h @@ -228,7 +228,11 @@ #define SPI_32(H,L) ( (H)<<16 | (L) ) #define COL_32(H,L) ( (H)<<16 | (L) ) #else - #define SPI_32(H,L) ( (H)<<16 | (L) ) + #ifdef ESP32_PARALLEL + #define SPI_32(H,L) ( (H)<<16 | (L) ) + #else + #define SPI_32(H,L) ( ((H)<<8 | (H)>>8) | (((L)<<8 | (L)>>8)<<16 ) ) + #endif // Swap byte order for concatenated 16 bit colors // AB CD -> DCBA for 32 bit register write #define COL_32(H,L) ( ((H)<<8 | (H)>>8) | (((L)<<8 | (L)>>8)<<16 ) ) diff --git a/library.json b/library.json index 7540093..786075d 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "TFT_eSPI", - "version": "1.3.2", + "version": "1.3.3", "keywords": "tft, ePaper, display, ESP8266, NodeMCU, ESP32, M5Stack, ILI9341, ST7735, ILI9163, S6D02A1, ILI9486, ST7789", "description": "A TFT and ePaper SPI graphics library for ESP8266 and ESP32", "repository": diff --git a/library.properties b/library.properties index fd3be61..a9e0071 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=TFT_eSPI -version=1.3.2 +version=1.3.3 author=Bodmer maintainer=Bodmer sentence=A fast TFT graphics library for ESP8266 and ESP32 processors for the Arduino IDE