-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
ESP:Use spiffs in ESP OTA Provider example #12400
ESP:Use spiffs in ESP OTA Provider example #12400
Conversation
We should use the function defination in /src/app/clusters/ota-requestor/ClusterInterface.cppconnectedhomeip/examples/ota-requestor-app/esp32/main/main.cpp Lines 186 to 195 in 45fdb17
This comment was generated by todo based on a
|
63131be
to
cb0ff38
Compare
We should use the function definition in /src/app/clusters/ota-requestor/ClusterInterface.cppconnectedhomeip/examples/ota-requestor-app/esp32/main/main.cpp Lines 186 to 195 in cb0ff38
This comment was generated by todo based on a
|
PR #12400: Size comparison from 02bd2c7 to 5a46c34 Full report (21 builds for efr32, k32w, linux, p6, qpg, telink)
|
5a46c34
to
dd2de3e
Compare
PR #12400: Size comparison from 61be6de to 471db62 Full report (38 builds for efr32, esp32, k32w, linux, mbed, nrfconnect, p6, qpg, telink)
|
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.
Fast tracking, given this is a platform maintainer updating their platform.
471db62
to
d17dfc1
Compare
PR #12400: Size comparison from 6f3b5a0 to d17dfc1 Full report (31 builds for efr32, esp32, k32w, mbed, nrfconnect, p6, qpg, telink)
|
PR #12400: Size comparison from 6f3b5a0 to 961cfaf Increases (5 builds for linux)
Full report (39 builds for efr32, esp32, k32w, linux, mbed, nrfconnect, p6, qpg, telink)
|
961cfaf
to
2727b16
Compare
PR #12400: Size comparison from dc10c82 to 2727b16 Full report (39 builds for efr32, esp32, k32w, linux, mbed, nrfconnect, p6, qpg, telink)
|
Problem
The ESP OTA Provider uses a different image file which has the image size information in the head of image file. We should use the same image file as the file used by the Linux OTA Provider.
Change overview
Use spiffs to store the image file so that we don't need using a special image file for our ESP OTA Provider.
Testing
Tested with the ESP OTA Requestor. The
QueryImage
andApplyUpdateRequest
commands worked well.