Skip to content

Commit da349a5

Browse files
committed
Minor changes
1 parent da2239f commit da349a5

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Extensions/Sprite.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -1679,7 +1679,6 @@ int16_t TFT_eSprite::drawChar(uint16_t uniCode, int32_t x, int32_t y, uint8_t fo
16791679
if ((font>2) && (font<9))
16801680
{
16811681
// This is slower than above but is more convenient for the RLE fonts
1682-
// flash_address = pgm_read_dword( pgm_read_dword( &(fontdata[font].chartbl ) ) + uniCode*sizeof(void *) );
16831682
flash_address = pgm_read_dword( (const void*)pgm_read_dword( &(fontdata[font].chartbl ) ) + uniCode*sizeof(void *) );
16841683
width = pgm_read_byte( (uint8_t *)pgm_read_dword( &(fontdata[font].widthtbl ) ) + uniCode );
16851684
height= pgm_read_byte( &fontdata[font].height );

TFT_eSPI.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -3389,7 +3389,7 @@ void TFT_eSPI::pushColors(uint8_t *data, uint32_t len)
33893389
while (len--) {tft_Write_8(*data); data++;}
33903390
#elif defined (ILI9488_DRIVER)
33913391
uint16_t color;
3392-
while (len>1) {color = (*data++) | ((*data++)<<8); tft_Write_16(color); len-=2;}
3392+
while (len>1) {color = (*data++); color |= ((*data++)<<8); tft_Write_16(color); len-=2;}
33933393
#else
33943394
#if (SPI_FREQUENCY == 80000000)
33953395
while ( len >=64 ) {spi.writePattern(data, 64, 1); data += 64; len -= 64; }
@@ -4270,7 +4270,6 @@ int16_t TFT_eSPI::drawChar(uint16_t uniCode, int32_t x, int32_t y, uint8_t font)
42704270
{
42714271
if ((font>2) && (font<9))
42724272
{
4273-
//flash_address = pgm_read_dword( pgm_read_dword( &(fontdata[font].chartbl ) ) + uniCode*sizeof(void *) );
42744273
flash_address = pgm_read_dword( (const void*)pgm_read_dword( &(fontdata[font].chartbl ) ) + uniCode*sizeof(void *) );
42754274
width = pgm_read_byte( (uint8_t *)pgm_read_dword( &(fontdata[font].widthtbl ) ) + uniCode );
42764275
height= pgm_read_byte( &fontdata[font].height );

examples/Test and diagnostics/Read_User_Setup/Read_User_Setup.ino

+2
Original file line numberDiff line numberDiff line change
@@ -149,5 +149,7 @@ int8_t getPinName(int8_t pin)
149149
if (pin == 1) return 10;
150150
if (pin == 9) return 11;
151151
if (pin == 10) return 12;
152+
153+
return -1; // Invalid pin
152154
}
153155

library.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "TFT_eSPI",
3-
"version": "1.4.10",
3+
"version": "1.4.11",
44
"keywords": "tft, ePaper, display, ESP8266, NodeMCU, ESP32, M5Stack, ILI9341, ST7735, ILI9163, S6D02A1, ILI9486, ST7789",
55
"description": "A TFT and ePaper SPI graphics library for ESP8266 and ESP32",
66
"repository":

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=TFT_eSPI
2-
version=1.4.10
2+
version=1.4.11
33
author=Bodmer
44
maintainer=Bodmer
55
sentence=A fast TFT graphics library for ESP8266 and ESP32 processors for the Arduino IDE

0 commit comments

Comments
 (0)