-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #232 from Lzw655/feature/update_lcd_drivers
Update LCD drivers
- Loading branch information
Showing
41 changed files
with
1,739 additions
and
346 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
idf_component_register( | ||
SRCS | ||
"esp_lcd_gc9503.c" | ||
INCLUDE_DIRS | ||
"include" | ||
PRIV_REQUIRES | ||
"driver" | ||
REQUIRES | ||
"esp_lcd") | ||
idf_component_register(SRCS "esp_lcd_gc9503.c" | ||
INCLUDE_DIRS "include" | ||
PRIV_REQUIRES "driver" | ||
REQUIRES "esp_lcd") | ||
|
||
include(package_manager) | ||
cu_pkg_define_version(${CMAKE_CURRENT_LIST_DIR}) |
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,7 +1,8 @@ | ||
version: "2.0.0" | ||
version: "2.1.0" | ||
targets: | ||
- esp32s3 | ||
description: ESP LCD GC9503 | ||
url: https://github.com/espressif/esp-bsp/tree/master/components/lcd/esp_lcd_gc9503 | ||
dependencies: | ||
idf: ">=5.0" | ||
idf: ">=5.0.4" | ||
cmake_utilities: "0.*" |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# The following lines of boilerplate have to be in your project's CMakeLists | ||
# in this exact order for cmake to work correctly | ||
cmake_minimum_required(VERSION 3.5) | ||
set(EXTRA_COMPONENT_DIRS "$ENV{IDF_PATH}/tools/unit-test-app/components") | ||
include($ENV{IDF_PATH}/tools/cmake/project.cmake) | ||
project(test_esp_lcd_gc9503) |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
idf_component_register(SRCS "test_esp_lcd_gc9503.c") |
12 changes: 12 additions & 0 deletions
12
components/lcd/esp_lcd_gc9503/test_apps/main/idf_component.yml
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
## IDF Component Manager Manifest File | ||
dependencies: | ||
idf: ">=5.0.0" | ||
esp_lcd_panel_io_additions: | ||
version: "^1" | ||
public: true | ||
esp_io_expander_tca9554: | ||
version: "^1" | ||
public: true | ||
esp_lcd_gc9503: | ||
version: "*" | ||
override_path: "../../../esp_lcd_gc9503" |
Oops, something went wrong.