Skip to content

Commit dd70eb9

Browse files
committed
Merge branch 'bugfix/fix_some_errors_and_support_esp32h4_for_esp_image_effects' into 'master'
Fixed some bugs and support esp32h4 for esp-image_effects See merge request adf/esp-adf-libs!288
2 parents 79c1769 + 8c28b5b commit dd70eb9

File tree

13 files changed

+14
-7
lines changed

13 files changed

+14
-7
lines changed

esp_image_effects/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## v1.0.1
4+
5+
### Features
6+
7+
- Added support for the **ESP32-H4** chip
8+
9+
### Bug Fixes
10+
11+
- Fixed compatibility issues when using **ESP-IDF versions earlier than v5.5**
12+
- Fixed a **memory leak** in the `scale` module
13+
314
## v1.0.0
415

516
### Features

esp_image_effects/CMakeLists.txt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
11
idf_component_register(INCLUDE_DIRS "include")
2-
if("${IDF_VERSION_MAJOR}.${IDF_VERSION_MINOR}" VERSION_GREATER "5.3")
3-
if (${IDF_TARGET} STREQUAL "esp32p4")
4-
message(FATAL_ERROR "If use esp32p4, please use idf v5.3.")
5-
endif()
6-
endif()
72
target_link_libraries(${COMPONENT_LIB} INTERFACE "-L ${CMAKE_CURRENT_SOURCE_DIR}/lib/${CONFIG_IDF_TARGET}")
83
target_link_libraries(${COMPONENT_LIB} INTERFACE esp_image_effects)

esp_image_effects/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ For more details on API usage, please refer to the source files in `test_app/mai
5757
| ESP32-C3 || x |
5858
| ESP32-C5 || x |
5959
| ESP32-C6 || x |
60-
| ESP32-P4 |||
60+
| ESP32-P4 || x |
61+
| ESP32-H4 || x |
6162

6263
# FAQ
6364

esp_image_effects/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Espressif image effects
55
issues: https://github.com/espressif/esp-adf/issues
66
repository: https://github.com/espressif/esp-adf-libs.git
77
url: https://github.com/espressif/esp-adf-libs/tree/master/esp_image_effects
8-
version: 1.0.0
8+
version: 1.0.1
99
tags:
1010
- multimedia
1111
- scale
67 KB
Binary file not shown.
1.04 KB
Binary file not shown.
48.7 KB
Binary file not shown.
960 Bytes
Binary file not shown.
48.9 KB
Binary file not shown.
267 KB
Binary file not shown.

0 commit comments

Comments
 (0)