From 467d1dc3c51f4ede6ac2cdf82a2c493d5eb6c243 Mon Sep 17 00:00:00 2001 From: Bodmer Date: Mon, 26 Nov 2018 19:50:52 +0000 Subject: [PATCH] Fix issue #260 --- TFT_eSPI.h | 2 +- library.json | 2 +- library.properties | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/TFT_eSPI.h b/TFT_eSPI.h index 1dcb28c..78c1816 100644 --- a/TFT_eSPI.h +++ b/TFT_eSPI.h @@ -228,7 +228,7 @@ #define SPI_32(H,L) ( (H)<<16 | (L) ) #define COL_32(H,L) ( (H)<<16 | (L) ) #else - #ifdef ESP32_PARALLEL + #ifdef ESP32_PARALLEL || defined (ILI9488_DRIVER) #define SPI_32(H,L) ( (H)<<16 | (L) ) #else #define SPI_32(H,L) ( ((H)<<8 | (H)>>8) | (((L)<<8 | (L)>>8)<<16 ) ) diff --git a/library.json b/library.json index 83de892..6eaff8a 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "TFT_eSPI", - "version": "1.3.5", + "version": "1.3.6", "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 9f33bfb..b3ab068 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=TFT_eSPI -version=1.3.5 +version=1.3.6 author=Bodmer maintainer=Bodmer sentence=A fast TFT graphics library for ESP8266 and ESP32 processors for the Arduino IDE