-
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
[OIS] OTA requestor and DFU implementation #27573
[OIS] OTA requestor and DFU implementation #27573
Conversation
ATmobica
commented
Jun 30, 2023
- Provides the implementation of the OTA Image Processor class for Open IOT SDK platform
- Add Matter OTA support
- Add OTA Requestor example
PR #27573: Size comparison from 757f06a to 3e20ea9 Increases (4 builds for esp32, nrfconnect, psoc6)
Decreases (7 builds for bl602, bl702, bl702l, k32w, psoc6)
Full report (42 builds for bl602, bl702, bl702l, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg)
|
3e20ea9
to
9d37d0b
Compare
PR #27573: Size comparison from 5c7d81d to 9d37d0b Increases (1 build for cc32xx)
Full report (2 builds for cc32xx, mbed)
|
9d37d0b
to
c6db7e4
Compare
PR #27573: Size comparison from a8d7e41 to c6db7e4 Increases (5 builds for bl702l, esp32, psoc6, telink)
Decreases (11 builds for bl602, bl702, nrfconnect, qpg, telink)
Full report (58 builds for bl602, bl702, bl702l, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
c6db7e4
to
d48bcf2
Compare
568daa3
to
71b40f3
Compare
PR #27573: Size comparison from 53e06c7 to 71b40f3 Increases (12 builds for bl602, bl702, cc32xx, nrfconnect, psoc6, telink)
Decreases (11 builds for bl702l, psoc6, telink)
Full report (58 builds for bl602, bl702, bl702l, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
71b40f3
to
a3367c8
Compare
PR #27573: Size comparison from 488aabf to a3367c8 Increases (8 builds for esp32, psoc6, qpg, telink)
Decreases (13 builds for bl702, efr32, nrfconnect, psoc6, telink)
Full report (58 builds for bl602, bl702, bl702l, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
a3367c8
to
ca21ec2
Compare
PR #27573: Size comparison from 9bf0fe6 to ca21ec2 Increases (4 builds for bl602, esp32, psoc6)
Decreases (3 builds for bl702, cc32xx, cyw30739)
Full report (31 builds for bl602, bl702, bl702l, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg)
|
ca21ec2
to
f745bc1
Compare
PR #27573: Size comparison from 9bf0fe6 to f745bc1 Increases (13 builds for bl602, bl702, psoc6, telink)
Decreases (10 builds for bl702l, cyw30739, k32w, nrfconnect, psoc6, telink)
Full report (58 builds for bl602, bl702, bl702l, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
f745bc1
to
7bd98dd
Compare
PR #27573: Size comparison from ab4509c to 7bd98dd Increases (19 builds for bl702, bl702l, cc32xx, esp32, psoc6, qpg, telink)
Decreases (3 builds for psoc6, telink)
Full report (58 builds for bl602, bl702, bl702l, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
7bd98dd
to
d01b4ed
Compare
PR #27573: Size comparison from 01116da to d01b4ed Increases (10 builds for bl602, esp32, nrfconnect, telink)
Decreases (17 builds for bl702, bl702l, psoc6, qpg, telink)
Full report (58 builds for bl602, bl702, bl702l, cc32xx, cyw30739, efr32, esp32, k32w, linux, mbed, nrfconnect, psoc6, qpg, telink)
|
Provides the implementation of the OTA Image Processor class for Open IOT SDK platform. Signed-off-by: ATmobica <[email protected]>
Add Device Firmware Update manager class implementation. It provides firmware update functionality based on Matter OTA Requestor cluster. Add OTA enable support flag in Cmake build, passing it to Matter stack build. Add DFU manager to OIS platform code. Add post-build command to create OTA update image from signed binary. Extend OIS example documentation with TF-M and DFU support. Signed-off-by: ATmobica <[email protected]>
OIS implementation of OTA requestor example. Add new example to build script and VScode tasks. Signed-off-by: ATmobica <[email protected]>
Add updateBinaryPath, otaProvider and softwareVersion options to OIS integraiton test suite. Propagating them to fixtures module. Add terminal device implementation. Run Linux applications as subprocess, read/write process output/input. Add ota_provider fixture - run OTA provider application as terminal device. Signed-off-by: ATmobica <[email protected]>
Add OTA requestor integration test implementation. Add OTA requestor test options in run script. Extending OIS workflow with build the OTA requestor example, build the OTA provider (Linux), test OTA requestor example. Signed-off-by: ATmobica <[email protected]>
d01b4ed
to
1a4b5ba
Compare
@woody-apple To review. |
* [OIS] Add OTAImageProcessorImpl class Provides the implementation of the OTA Image Processor class for Open IOT SDK platform. Signed-off-by: ATmobica <[email protected]> * [OIS] Add Matter OTA support Add Device Firmware Update manager class implementation. It provides firmware update functionality based on Matter OTA Requestor cluster. Add OTA enable support flag in Cmake build, passing it to Matter stack build. Add DFU manager to OIS platform code. Add post-build command to create OTA update image from signed binary. Extend OIS example documentation with TF-M and DFU support. Signed-off-by: ATmobica <[email protected]> * [OIS] Add OTA Requestor application OIS implementation of OTA requestor example. Add new example to build script and VScode tasks. Signed-off-by: ATmobica <[email protected]> * [OIS] Extend integration tests suite Add updateBinaryPath, otaProvider and softwareVersion options to OIS integraiton test suite. Propagating them to fixtures module. Add terminal device implementation. Run Linux applications as subprocess, read/write process output/input. Add ota_provider fixture - run OTA provider application as terminal device. Signed-off-by: ATmobica <[email protected]> * [OIS] Add OTA requestor integration test and CI Add OTA requestor integration test implementation. Add OTA requestor test options in run script. Extending OIS workflow with build the OTA requestor example, build the OTA provider (Linux), test OTA requestor example. Signed-off-by: ATmobica <[email protected]> --------- Signed-off-by: ATmobica <[email protected]>