-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ci): Build i2c_example only for IDF >= 5.2
Our CI was broken for some time and did not catch this issue.
- Loading branch information
1 parent
8d9f7b8
commit 43616b0
Showing
2 changed files
with
19 additions
and
2 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
7 changes: 5 additions & 2 deletions
7
components/esp_lvgl_port/examples/i2c_oled/main/CMakeLists.txt
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,2 +1,5 @@ | ||
idf_component_register(SRCS "i2c_oled_example_main.c" "lvgl_demo_ui.c" | ||
INCLUDE_DIRS ".") | ||
idf_component_register( | ||
SRCS "i2c_oled_example_main.c" "lvgl_demo_ui.c" | ||
INCLUDE_DIRS "." | ||
REQUIRES driver | ||
) |