-
Notifications
You must be signed in to change notification settings - Fork 7.4k
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
Update esp-insights version #10456
Update esp-insights version #10456
Conversation
👋 Hello Asc91, we appreciate your contribution to this project! Click to see more instructions ...
Review and merge process you can expect ...
|
In what case was your build failing? We are reluctant to touch esp-insights, because esp-rainmaker depends on it and it's very easy to break. |
You can also see in this PR that insights is updated to 1.2.1 automatically: #10454 , so when merged, the latest version will be used |
@@ -72,7 +72,7 @@ dependencies: | |||
rules: | |||
- if: "target != esp32c2" | |||
espressif/esp_insights: | |||
version: "^1.0.1" | |||
version: "^1.2.1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please also update esp_rainmaker
to 1.5.0
* fix(usb): Update tinyusb init call * Update esp-insights version (#10456) * Add support for WiFi to ESP32-P4 (#10463) * feat(p4): Add support for WiFi to ESP32-P4 Implements support for external MCU connected through SDIO * fix(p4): Init SDIO host properly on Network boot esp-hosted has one function marked as "constructor" that did not run in the boot phase of the chip. This calls the function when network is started * Fix RainMaker dependent versions because Matter requires Insights 1.0.1 * IDF release/v5.3 707d097b * ci(pre-commit): Apply automatic fixes --------- Co-authored-by: Mahesh Tupe <tupemahesh91@gmail.com> Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
* fix(usb): Use new tusb_init method * IDF release/v5.1 6dff5b8f * IDF release/v5.1 632e0c2a * Update esp-insights version (#10456) * Update TinyUSB init method * Update IDF libs size and checksum Comes also with updated TinyUSB --------- Co-authored-by: Mahesh Tupe <tupemahesh91@gmail.com>
Description of Change
Current esp_insights version in idf_component.yml (^1.0.1) pulls following versions of required components
esp_insights : 1.0.1
esp_diagnostics: 1.0.2
esp_diag_data_store : 1.0.2
With latest update to esp-insights and its components,
esp_insights: 1.0.1
is not compatible withesp_diag_data_store: 1.0.2
which causes compilation errors while building core.Updating
esp_insights
version to1.2.1
fixes the issue.Tests scenarios
Reproduced issue with Arduino-esp32 3.0.5 for ESP32 S3 and ESPC3 boards. After this change build was successful.
Related links
Latest Changes to esp-insights