File tree Expand file tree Collapse file tree 2 files changed +19
-2
lines changed
esp_lvgl_port/examples/i2c_oled/main Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,21 @@ components/esp_lvgl_port:
44 - " components/esp_lvgl_port/**"
55 - " components/lcd_touch/esp_lcd_touch_tt21100/**"
66 - " components/lcd_touch/esp_lcd_touch_gt1151/**"
7+
8+ components/esp_lvgl_port/examples/i2c_oled :
9+ depends_filepatterns :
10+ - " components/esp_lvgl_port/**"
711 - " components/lcd/sh1107/**"
12+ disable :
13+ - if : (IDF_VERSION_MAJOR == 5 and IDF_VERSION_MINOR < 2) or IDF_VERSION_MAJOR < 5
14+ reason : Requires I2C Driver-NG which was introduced in v5.2
15+
16+ components/esp_lvgl_port/test_apps/simd :
17+ depends_filepatterns :
18+ - " components/esp_lvgl_port/**"
19+ enable :
20+ - if : IDF_TARGET in ["esp32", "esp32s3"]
21+ reason : Supports only xtensa targets
822
923components/ds18b20 :
1024 depends_filepatterns :
Original file line number Diff line number Diff line change 1- idf_component_register(SRCS "i2c_oled_example_main.c" "lvgl_demo_ui.c"
2- INCLUDE_DIRS "." )
1+ idf_component_register(
2+ SRCS "i2c_oled_example_main.c" "lvgl_demo_ui.c"
3+ INCLUDE_DIRS "."
4+ REQUIRES driver
5+ )
You can’t perform that action at this time.
0 commit comments