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
612e7634
Commit
612e7634
authored
May 11, 2021
by
Bodmer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused macros
parent
6b408803
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
14 deletions
+0
-14
Processors/TFT_eSPI_ESP32.h
Processors/TFT_eSPI_ESP32.h
+0
-6
TFT_Drivers/SSD1351_Defines.h
TFT_Drivers/SSD1351_Defines.h
+0
-8
No files found.
Processors/TFT_eSPI_ESP32.h
View file @
612e7634
...
...
@@ -453,12 +453,6 @@
// Write 32 bits
#define tft_Write_32(C) TFT_WRITE_BITS(C, 32)
// Write two address coordinates
#define tft_Write_16C(C,D) TFT_WRITE_BITS((uint16_t)(D)<<8 | (C), 16)
// Write same value twice
#define tft_Write_16D(C) TFT_WRITE_BITS((uint16_t)(C)<<8 | (C), 16)
// Write two address coordinates
#define tft_Write_32C(C,D) TFT_WRITE_BITS((uint16_t)((D)<<8 | (D)>>8)<<16 | (uint16_t)((C)<<8 | (C)>>8), 32)
...
...
TFT_Drivers/SSD1351_Defines.h
View file @
612e7634
...
...
@@ -5,14 +5,6 @@
#define TFT_HEIGHT 128
#endif
#ifndef tft_Write_16D
#define tft_Write_16C(C) tft_Write_8(C); tft_Write_8(C);
#endif
#ifndef tft_Write_16C
#define tft_Write_16C(C,D) tft_Write_8(C); tft_Write_8(D);
#endif
// Delay between some initialisation commands
#define TFT_INIT_DELAY 0x80
...
...
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