-
Notifications
You must be signed in to change notification settings - Fork 805
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feat/add_rgb_anti-tear_demo' into 'master'
feat(lcd): Added RGB anti-tearing demo See merge request ae_group/esp-iot-solution!960
- Loading branch information
Showing
52 changed files
with
2,482 additions
and
569 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,28 @@ | ||
# ChangeLog | ||
|
||
## v0.0.1 - 2023-09-12 | ||
## v1.0.1 - 2024-03-25 | ||
|
||
### Enhancements: | ||
### bugfix | ||
|
||
* Implement the driver for the ST7701(S) LCD controller | ||
* Support RGB interface | ||
* Fix the `mirror` function | ||
|
||
## v1.0.0 - 2023-11-03 | ||
|
||
### bugfix | ||
|
||
* Fix the incompatible dependent version of ESP-IDF | ||
* Fix missing dependency of `cmake_utilities` component | ||
* Check conflicting commands between initialization sequence and driver | ||
|
||
## v0.0.2 - 2023-10-26 | ||
|
||
### Enhancements: | ||
|
||
* Support to mirror by command | ||
|
||
## v1.0.0 - 2023-11-03 | ||
## v0.0.1 - 2023-09-12 | ||
|
||
### bugfix | ||
### Enhancements: | ||
|
||
* Fix the incompatible dependent version of ESP-IDF | ||
* Fix missing dependency of `cmake_utilities` component | ||
* Check conflicting commands between initialization sequence and driver | ||
* Implement the driver for the ST7701(S) LCD controller | ||
* Support RGB interface |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,3 @@ | ||
set(LV_DEMO_DIR ../managed_components/lvgl__lvgl/demos) | ||
file(GLOB_RECURSE LV_DEMOS_SOURCES ${LV_DEMO_DIR}/*.c) | ||
|
||
idf_component_register( | ||
SRCS "example_qspi_with_ram.c" ${LV_DEMOS_SOURCES} | ||
INCLUDE_DIRS "." ${LV_DEMO_DIR}) | ||
|
||
set_source_files_properties( | ||
${LV_DEMOS_SOURCES} | ||
PROPERTIES COMPILE_OPTIONS | ||
-DLV_LVGL_H_INCLUDE_SIMPLE) | ||
SRCS "example_qspi_with_ram.c" | ||
INCLUDE_DIRS ".") |
Oops, something went wrong.