Commit ef93dbe6 authored by Bodmer's avatar Bodmer

Make ST7789 drivers consistent

Simplified driver ST7789_2_DRIVER not supports 135 x 240 display.
This will not fix #763 since user specifies alternative ST7789_DRIVER which already supports 135x240 displays.
parent 49cef1f3
...@@ -5,8 +5,16 @@ ...@@ -5,8 +5,16 @@
switch (rotation) { switch (rotation) {
case 0: // Portrait case 0: // Portrait
#ifdef CGRAM_OFFSET #ifdef CGRAM_OFFSET
colstart = 0; if (_init_width == 135)
rowstart = 0; {
colstart = 52;
rowstart = 40;
}
else
{
colstart = 0;
rowstart = 0;
}
#endif #endif
writedata(TFT_MAD_COLOR_ORDER); writedata(TFT_MAD_COLOR_ORDER);
...@@ -16,8 +24,16 @@ ...@@ -16,8 +24,16 @@
case 1: // Landscape (Portrait + 90) case 1: // Landscape (Portrait + 90)
#ifdef CGRAM_OFFSET #ifdef CGRAM_OFFSET
colstart = 0; if (_init_width == 135)
rowstart = 0; {
colstart = 40;
rowstart = 53;
}
else
{
colstart = 0;
rowstart = 0;
}
#endif #endif
writedata(TFT_MAD_MX | TFT_MAD_MV | TFT_MAD_COLOR_ORDER); writedata(TFT_MAD_MX | TFT_MAD_MV | TFT_MAD_COLOR_ORDER);
...@@ -27,8 +43,16 @@ ...@@ -27,8 +43,16 @@
case 2: // Inverter portrait case 2: // Inverter portrait
#ifdef CGRAM_OFFSET #ifdef CGRAM_OFFSET
colstart = 0; if (_init_width == 135)
rowstart = 80; {
colstart = 53;
rowstart = 40;
}
else
{
colstart = 0;
rowstart = 80;
}
#endif #endif
writedata(TFT_MAD_MX | TFT_MAD_MY | TFT_MAD_COLOR_ORDER); writedata(TFT_MAD_MX | TFT_MAD_MY | TFT_MAD_COLOR_ORDER);
...@@ -37,8 +61,16 @@ ...@@ -37,8 +61,16 @@
break; break;
case 3: // Inverted landscape case 3: // Inverted landscape
#ifdef CGRAM_OFFSET #ifdef CGRAM_OFFSET
colstart = 80; if (_init_width == 135)
rowstart = 0; {
colstart = 40;
rowstart = 52;
}
else
{
colstart = 80;
rowstart = 0;
}
#endif #endif
writedata(TFT_MAD_MV | TFT_MAD_MY | TFT_MAD_COLOR_ORDER); writedata(TFT_MAD_MV | TFT_MAD_MY | TFT_MAD_COLOR_ORDER);
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
#ifndef _TFT_eSPIH_ #ifndef _TFT_eSPIH_
#define _TFT_eSPIH_ #define _TFT_eSPIH_
#define TFT_ESPI_VERSION "2.2.21" #define TFT_ESPI_VERSION "2.2.22"
/*************************************************************************************** /***************************************************************************************
** Section 1: Load required header files ** Section 1: Load required header files
......
{ {
"name": "TFT_eSPI", "name": "TFT_eSPI",
"version": "2.2.21", "version": "2.2.22",
"keywords": "Arduino, tft, ePaper, display, STM32, ESP8266, NodeMCU, ESP32, M5Stack, ILI9341, ST7735, ILI9163, S6D02A1, ILI9486, ST7789, RM68140", "keywords": "Arduino, tft, ePaper, display, STM32, ESP8266, NodeMCU, ESP32, M5Stack, ILI9341, ST7735, ILI9163, S6D02A1, ILI9486, ST7789, RM68140",
"description": "A TFT and ePaper SPI graphics library with optimisation for ESP8266, ESP32 and STM32", "description": "A TFT and ePaper SPI graphics library with optimisation for ESP8266, ESP32 and STM32",
"repository": "repository":
......
name=TFT_eSPI name=TFT_eSPI
version=2.2.21 version=2.2.22
author=Bodmer author=Bodmer
maintainer=Bodmer maintainer=Bodmer
sentence=TFT graphics library for Arduino processors with performance optimisation for STM32, ESP8266 and ESP32 sentence=TFT graphics library for Arduino processors with performance optimisation for STM32, ESP8266 and ESP32
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment