-
Notifications
You must be signed in to change notification settings - Fork 189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ESP32-P4 esp_brookesia_phone example broken because of breaking change in esp_ipa (AEGHB-942) #119
Comments
Yes... I was facing the same issue... build process was breaking because of esp:ipa error. I add the following lines in my main/idf_component and it solved it for me. |
Same error shows: |
Thanks, you solved this problem. |
Sorry, this is a compilation error caused by updates to esp_video and related components. We will update and fix this issue later. |
The compilation issue has been fixed. You can test the latest example. |
Just checked, the esp_brookesia_phone example is indeed building again on master. |
Answers checklist.
IDF version.
v5.5-dev-1050-gb5ac4fbdf9 but also on v5.4
Espressif SoC revision.
ESP32-P4 Function_EV_Board V1.4
Operating System used.
macOS
How did you build your project?
Command line with idf.py
If you are using Windows, please specify command line type.
None
Development Kit.
ESP32-P4 Function_EV_Board V1.4
Steps to reproduce.
cd examples/esp32-p4-function-ev-board/examples/esp_brookesia_phone
idf.py build
Build Logs.
More Information.
The esp32-p4-function-ev-board/examples/esp_brookesia_phone is broken because of a breaking change in the esp_ipa component.
The esp_ipa component has updated from
0.1.0
to0.2.0
and there are breaking changes which break this project, but the version of esp_ipa is not specified explicitly and there is no dependency lock so now the example is broken.Note, I also requested lock files to be added for all examples in #118 which could possibly also solve this already, but for this example specifically, I think the esp_ipa 0.1.0 dependency should better also be added to the idf_component.yml specification since it's used directly in this example project.
I added
espressif/esp_ipa: =0.1.0
at the end of my main/idf_component.yml which solves this issue for me.The text was updated successfully, but these errors were encountered: