Ivan Grokhotkov
Ivan Grokhotkov
Thanks @tore-espressif! The PRs opened by dependabot have two problems now: 1. The PR updates the submodule to the latest commit, not to the latest tag (issue https://github.com/dependabot/dependabot-core/issues/1639 noted above)....
Given the above limitations, I'm thinking of adding a custom CI workflow instead of dependabot... This workflow could also update our idf_component.yml files and make the PRs mergeable.
This might be worth revisiting, especially since https://github.com/espressif/idf-extra-components/pull/146 adds two libraries which are known to sometimes have CVEs reported for them. It would be good to be able to get...
Not yet, but this is something we are planning to implement!
@ucfncouch This is still in the works, currently blocked on an upstream PR. We speed things up, we are going to release opencv component to components.espressif.com first, and handle upstreaming...
@ucfncouch OpenCV component has been published: https://components.espressif.com/components/espressif/opencv. Please give it a try, feedback is welcome!
Thanks for the tip @ahmetcobanoglu, we'll fix that as well as other related issues and will release the new version soon.
@lijunru-hub In v4.4 you can do it as done [here](https://github.com/espressif/esp-idf/blob/5f257494c5866e5f9965c54c907c2588f3496ad1/components/newlib/CMakeLists.txt#L48-L49) and [here](https://github.com/espressif/esp-idf/blob/5f257494c5866e5f9965c54c907c2588f3496ad1/components/newlib/assert.c#L94-L97). Note that you need one such hook symbol per object file.
This is probably becoming more relevant, as the number of components in the repo has increased and we do a lot of unnecessary builds/tests when only one of the components...
On ESP32-C2, C6 and P4, there is an alternative floating point library ([rvfplib](https://github.com/pulp-platform/RVfplib)) in ROM. You can try enabling it using CONFIG_COMPILER_FLOAT_LIB_FROM_RVFPLIB option in menuconfig. (You can also post a...