Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
TFT_eSPI
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
TFT_eSPI
Commits
5e62875f
Commit
5e62875f
authored
Nov 25, 2018
by
Bodmer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix issue #256
Parallel compatibility lost during recent updates. Now working again.
parent
a0e2bc97
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
6 deletions
+8
-6
TFT_eSPI.cpp
TFT_eSPI.cpp
+1
-1
TFT_eSPI.h
TFT_eSPI.h
+5
-3
library.json
library.json
+1
-1
library.properties
library.properties
+1
-1
No files found.
TFT_eSPI.cpp
View file @
5e62875f
...
...
@@ -4928,7 +4928,7 @@ void writeBlock(uint16_t color, uint32_t repeat)
void
writeBlock
(
uint16_t
color
,
uint32_t
repeat
)
{
uint32_t
color32
=
SPI
_32
(
color
,
color
);
uint32_t
color32
=
COL
_32
(
color
,
color
);
if
(
repeat
>
31
)
// Revert legacy toggle buffer change
{
...
...
TFT_eSPI.h
View file @
5e62875f
...
...
@@ -226,10 +226,12 @@
#ifdef ESP8266
// Concatenate two 16 bit values for the SPI 32 bit register write
#define SPI_32(H,L) ( (H)<<16 | (L) )
#define COL_32(H,L) ( (H)<<16 | (L) )
#else
// Swap byte order for concatenated 16 bit window address or colors
// AB CD -> DCBA for SPI 32 bit register write
#define SPI_32(H,L) ( ((H)<<8 | (H)>>8) | (((L)<<8 | (L)>>8)<<16 ) )
#define SPI_32(H,L) ( (H)<<16 | (L) )
// 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 ) )
#endif
#if defined (ESP32) && defined (ESP32_PARALLEL)
...
...
library.json
View file @
5e62875f
{
"name"
:
"TFT_eSPI"
,
"version"
:
"1.3.
1
"
,
"version"
:
"1.3.
2
"
,
"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"
:
...
...
library.properties
View file @
5e62875f
name
=
TFT_eSPI
version
=
1.3.
1
version
=
1.3.
2
author
=
Bodmer
maintainer
=
Bodmer
sentence
=
A fast TFT graphics library for ESP8266 and ESP32 processors for the Arduino IDE
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment