Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ESP-IDF Release v4.0 Support & Open PR Consolidation #79

Open
wants to merge 49 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
acf567a
Adding CMake support #68
mica-angeli Sep 8, 2019
b5b2f44
Fix compile errors. ESP-WROVER-KIT 4.1 menuconfig
Sep 8, 2019
d2913dd
Make invert and RST pins configurable.
jeremyjh Sep 8, 2019
3dfc5b2
Update demo for current framework.
jeremyjh Sep 14, 2019
84fe000
Add SPIFFS Kconfig; use idf_register_component
jeremyjh Sep 15, 2019
3b62707
Silence warnings. C++ compatibility.
jeremyjh Sep 15, 2019
ab5ef94
Remove unused imports. SPIFFS config has moved.
jeremyjh Sep 15, 2019
1e04a2b
Make height/width configurable and namespace the globals.
jeremyjh Sep 15, 2019
7d13ee8
Move display configuration into the library component.
jeremyjh Sep 15, 2019
abdebcc
Fix default and docs for SPIFFS.
jeremyjh Sep 15, 2019
6167d6e
Update to release/v4.0 and document idf_register_component installation.
jeremyjh Sep 15, 2019
c222304
Make all pins configurable.
jeremyjh Sep 15, 2019
bead8c0
Namespace all global variables.
jeremyjh Sep 15, 2019
e145cba
Remaining fixups from open PRs.
jeremyjh Sep 15, 2019
e098c86
Range needs to be in base 10.
jeremyjh Sep 15, 2019
3b1b357
Fixup touchscreen config notes.
jeremyjh Sep 15, 2019
a98a448
Make X/Y case consistent with other globals.
jeremyjh Sep 16, 2019
2017ad3
README tweaks.
jeremyjh Sep 16, 2019
855a17f
Expose RGB in config. Switch order around a bit.
jeremyjh Sep 17, 2019
c94fd5a
use config to feed default dimensions
jeremyjh Sep 19, 2019
fe621a5
Touch controller should be a choice. Remove config ifdefs.
jeremyjh Sep 20, 2019
c349761
Fix touch config; hide unused menuconfigs
jeremyjh Sep 22, 2019
cf34710
Fix invertDisplay. resolves #1
jeremyjh Oct 2, 2019
dd5ecde
Fix IDF 4.x compatibility
frhun Mar 21, 2020
fd47bd9
Add TTGO T-Display
frhun Mar 21, 2020
0933f83
Merge pull request #3 from frhun/ttgo-t-display
jeremyjh Mar 22, 2020
76208ed
Adding default inversion option
frhun Mar 22, 2020
2ba5509
Adding coordinate offsets
frhun Mar 22, 2020
8d7dc5a
More direct color inversion option naming
frhun Mar 25, 2020
a06a578
Merge pull request #4 from frhun/ttgo-t-display
jeremyjh Mar 26, 2020
17fc226
cmake: Declare nvs_flash as a dependency, instead of pushing absolute…
projectgus Jun 24, 2020
3a841fa
Merge pull request #10 from projectgus/bugfix/cmake_component_depende…
jeremyjh Jun 24, 2020
8016437
Adding support for the TTGO T-WRISTBAND support
gameofyou Jun 30, 2020
35be976
Merge pull request #11 from gameofyou/master
jeremyjh Jun 30, 2020
f4e07be
Fix const correctness in TFT functions
mlepage-google Jul 8, 2020
11d56bb
Fix typos in README
mlepage-google Jul 8, 2020
c12e296
Merge pull request #17 from mlepage-google/fix-const-correctness
jeremyjh Jul 9, 2020
42cadf2
Merge pull request #18 from mlepage-google/fix-typos-in-readme
jeremyjh Jul 9, 2020
3351a89
Add const qualifier to temp pointer to fix warning
mlepage-google Jul 23, 2020
a1ece2c
Merge pull request #21 from mlepage-google/master
jeremyjh Jul 24, 2020
82427a3
Remove tftspi.h from demo
jeremyjh Jun 2, 2021
fac22b3
Update README Regarding Current Status
jeremyjh Jun 2, 2021
9283df8
tftspi.h doesn't need to include itself.
jeremyjh Jun 2, 2021
f401699
Fixes for compiling with esp-idf v5.0
shubhamdp Jan 23, 2023
3344a81
Merge pull request #27 from shubhamdp/esp_idf_v5_0
jeremyjh Jan 23, 2023
a9482e3
Use the newer spi_flash APIs for read/write/erase flash operations
shubhamdp Jul 31, 2023
a6299b6
Merge pull request #28 from shubhamdp/support-idf-v5.1
jeremyjh Aug 1, 2023
edbb14c
Fix warnings when building with esp-idf v5.2.1
shubhamdp Jun 18, 2024
d99f5ef
Merge pull request #29 from shubhamdp/fix_warnings
jeremyjh Jun 19, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Adding default inversion option
This adds a define, that the program can use, if the display needs to
be inverted by default.
frhun committed Mar 22, 2020

Verified

This commit was signed with the committer’s verified signature.
jeertmans Jérome Eertmans
commit 76208ed35a740e123c8de3a06c4867f9a2067bec
2 changes: 2 additions & 0 deletions components/tft/tftspi.h
Original file line number Diff line number Diff line change
@@ -165,6 +165,8 @@
#define TFT_INVERT_ROTATION 0
#define TFT_INVERT_ROTATION1 1
#define TFT_RGB_BGR 0x00
//To be used by user application for initialization
#define TFT_ALLWAYS_INVERTED

#define USE_TOUCH TOUCH_TYPE_NONE

3 changes: 3 additions & 0 deletions main/tft_demo.c
Original file line number Diff line number Diff line change
@@ -1344,6 +1344,9 @@ void app_main()

printf("SPI: display init...\r\n");
TFT_display_init();
#ifdef TFT_ALLWAYS_INVERTED
TFT_invertDisplay(1);
#endif
printf("OK\r\n");
#if USE_TOUCH == TOUCH_TYPE_STMPE610
stmpe610_Init();