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
cfb4689c
Commit
cfb4689c
authored
Apr 24, 2022
by
Bodmer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch for ESP32 C3 - may or may not work!
I do NOT have and ESP32 C3 to test with!
parent
416a84e5
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1471 additions
and
0 deletions
+1471
-0
Processors/TFT_eSPI_ESP32_C3.c
Processors/TFT_eSPI_ESP32_C3.c
+859
-0
Processors/TFT_eSPI_ESP32_C3.h
Processors/TFT_eSPI_ESP32_C3.h
+608
-0
TFT_eSPI.cpp
TFT_eSPI.cpp
+2
-0
TFT_eSPI.h
TFT_eSPI.h
+2
-0
No files found.
Processors/TFT_eSPI_ESP32_C3.c
0 → 100644
View file @
cfb4689c
This diff is collapsed.
Click to expand it.
Processors/TFT_eSPI_ESP32_C3.h
0 → 100644
View file @
cfb4689c
This diff is collapsed.
Click to expand it.
TFT_eSPI.cpp
View file @
cfb4689c
...
...
@@ -19,6 +19,8 @@
#if defined (ESP32)
#if defined(CONFIG_IDF_TARGET_ESP32S3)
#include "Processors/TFT_eSPI_ESP32_S3.c"
#elif defined(CONFIG_IDF_TARGET_ESP32C3)
#include "Processors/TFT_eSPI_ESP32_C3.c"
#else
#include "Processors/TFT_eSPI_ESP32.c"
#endif
...
...
TFT_eSPI.h
View file @
cfb4689c
...
...
@@ -67,6 +67,8 @@
// Include the processor specific drivers
#if defined(CONFIG_IDF_TARGET_ESP32S3)
#include "Processors/TFT_eSPI_ESP32_S3.h"
#elif defined(CONFIG_IDF_TARGET_ESP32C3)
#include "Processors/TFT_eSPI_ESP32_C3.h"
#elif defined (ESP32)
#include "Processors/TFT_eSPI_ESP32.h"
#elif defined (ESP8266)
...
...
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