Skip to content

Commit ff02ec7

Browse files
authored
Merge pull request #681 from espressif/ci/fix_noglib
fix(ci): Fixed noglib generating
2 parents 21c6cd0 + 6a60ba2 commit ff02ec7

File tree

4 files changed

+23
-22
lines changed

4 files changed

+23
-22
lines changed

.github/ci/bsp_noglib.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,14 @@ def select_bsp_config_no_graphic_lib(bsp_path):
3535

3636
def remove_esp_lvgl_port(bsp_path):
3737
manager = ManifestManager(bsp_path, 'bsp')
38+
deps = manager.manifest.dependencies
3839
try:
39-
del manager.manifest_tree["dependencies"]["espressif/esp_lvgl_port"]
40+
del deps["espressif/esp_lvgl_port"]
4041
except KeyError:
4142
print("{}: could not remove esp_lvgl_port".format(str(bsp_path)))
4243
return 1
4344
try:
44-
del manager.manifest_tree["dependencies"]["lvgl/lvgl"]
45+
del deps["lvgl/lvgl"]
4546
except KeyError:
4647
print("{}: no lvgl dependency found".format(str(bsp_path)))
4748
manager.manifest_tree["description"] = manager.manifest_tree["description"] + ' with no graphical library'
@@ -58,7 +59,7 @@ def remove_esp_lvgl_port(bsp_path):
5859
def remove_examples(bsp_path):
5960
manager = ManifestManager(bsp_path, 'bsp')
6061
try:
61-
del manager.manifest_tree["examples"]
62+
del manager.manifest.examples
6263
except KeyError:
6364
print("{}: no examples section found".format(str(bsp_path)))
6465
return 0

bsp/esp32_p4_eye/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
version: "2.0.0"
2+
version: "2.0.0~1"
33
description: Board Support Package (BSP) for ESP32-P4-EYE
44
url: https://github.com/espressif/esp-bsp/tree/master/bsp/esp32_p4_eye
55

bsp/esp32_p4_function_ev_board/README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -96,29 +96,29 @@ This BSP supports HDMI converter Lontium LT8912B. Follow these rules for using i
9696

9797
## LVGL Benchmark
9898

99-
**DATE:** 27.10.2025 03:03
99+
**DATE:** 07.11.2025 09:03
100100

101101
**LVGL version:** 9.4.0
102102

103103
| Name | Avg. CPU | Avg. FPS | Avg. time | render time | flush time |
104104
| ---- | :------: | :------: | :-------: | :---------: | :--------: |
105-
| Empty screen | 55% | 88 | 5 | 4 | 1 |
105+
| Empty screen | 61% | 88 | 5 | 3 | 2 |
106106
| Moving wallpaper | 89% | 71 | 10 | 7 | 3 |
107-
| Single rectangle | 23% | 89 | 1 | 1 | 0 |
108-
| Multiple rectangles | 40% | 90 | 2 | 2 | 0 |
109-
| Multiple RGB images | 23% | 94 | 1 | 1 | 0 |
110-
| Multiple ARGB images | 52% | 90 | 6 | 6 | 0 |
111-
| Rotated ARGB images | 77% | 76 | 10 | 10 | 0 |
112-
| Multiple labels | 92% | 61 | 14 | 13 | 1 |
113-
| Screen sized text | 99% | 14 | 68 | 66 | 2 |
114-
| Multiple arcs | 97% | 46 | 18 | 15 | 3 |
115-
| Containers | 31% | 90 | 3 | 3 | 0 |
116-
| Containers with overlay | 94% | 28 | 31 | 29 | 2 |
117-
| Containers with opa | 36% | 91 | 5 | 5 | 0 |
118-
| Containers with opa_layer | 60% | 72 | 13 | 13 | 0 |
119-
| Containers with scrolling | 97% | 29 | 31 | 29 | 2 |
120-
| Widgets demo | 98% | 17 | 50 | 48 | 2 |
121-
| All scenes avg. | 66% | 65 | 16 | 15 | 1 |
107+
| Single rectangle | 23% | 88 | 1 | 1 | 0 |
108+
| Multiple rectangles | 39% | 90 | 2 | 2 | 0 |
109+
| Multiple RGB images | 31% | 96 | 2 | 2 | 0 |
110+
| Multiple ARGB images | 58% | 93 | 6 | 6 | 0 |
111+
| Rotated ARGB images | 87% | 61 | 14 | 14 | 0 |
112+
| Multiple labels | 92% | 61 | 12 | 12 | 0 |
113+
| Screen sized text | 99% | 13 | 70 | 67 | 3 |
114+
| Multiple arcs | 98% | 47 | 18 | 16 | 2 |
115+
| Containers | 29% | 87 | 2 | 2 | 0 |
116+
| Containers with overlay | 88% | 28 | 32 | 30 | 2 |
117+
| Containers with opa | 41% | 89 | 4 | 4 | 0 |
118+
| Containers with opa_layer | 62% | 72 | 12 | 12 | 0 |
119+
| Containers with scrolling | 96% | 29 | 30 | 28 | 2 |
120+
| Widgets demo | 99% | 17 | 49 | 48 | 1 |
121+
| All scenes avg. | 68% | 64 | 15 | 15 | 0 |
122122

123123

124124

bsp/esp32_p4_function_ev_board/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "5.1.0"
1+
version: "5.1.0~1"
22
description: Board Support Package (BSP) for ESP32-P4 Function EV Board (preview)
33
url: https://github.com/espressif/esp-bsp/tree/master/bsp/esp32_p4_function_ev_board
44

0 commit comments

Comments
 (0)