Fix issue #260
This commit is contained in:
parent
beda811a3a
commit
467d1dc3c5
|
|
@ -228,7 +228,7 @@
|
||||||
#define SPI_32(H,L) ( (H)<<16 | (L) )
|
#define SPI_32(H,L) ( (H)<<16 | (L) )
|
||||||
#define COL_32(H,L) ( (H)<<16 | (L) )
|
#define COL_32(H,L) ( (H)<<16 | (L) )
|
||||||
#else
|
#else
|
||||||
#ifdef ESP32_PARALLEL
|
#ifdef ESP32_PARALLEL || defined (ILI9488_DRIVER)
|
||||||
#define SPI_32(H,L) ( (H)<<16 | (L) )
|
#define SPI_32(H,L) ( (H)<<16 | (L) )
|
||||||
#else
|
#else
|
||||||
#define SPI_32(H,L) ( ((H)<<8 | (H)>>8) | (((L)<<8 | (L)>>8)<<16 ) )
|
#define SPI_32(H,L) ( ((H)<<8 | (H)>>8) | (((L)<<8 | (L)>>8)<<16 ) )
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "TFT_eSPI",
|
"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",
|
"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",
|
"description": "A TFT and ePaper SPI graphics library for ESP8266 and ESP32",
|
||||||
"repository":
|
"repository":
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
name=TFT_eSPI
|
name=TFT_eSPI
|
||||||
version=1.3.5
|
version=1.3.6
|
||||||
author=Bodmer
|
author=Bodmer
|
||||||
maintainer=Bodmer
|
maintainer=Bodmer
|
||||||
sentence=A fast TFT graphics library for ESP8266 and ESP32 processors for the Arduino IDE
|
sentence=A fast TFT graphics library for ESP8266 and ESP32 processors for the Arduino IDE
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue