You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. Run TC-SU-4.1 and step 9 will fail update-state-progress always return null
Writing value to mParams.totalFileBytes when OTA header received is missing
Platform
cc13x2_cc26x2
Platform Version(s)
No response
Type
Manually tested with SDK
(Optional) If manually tested please explain why this is only manually tested
Found in SVE2
Anything else?
from OTAImageProcessor.h
* Called to check the current download status of the OTA image download.
*/
virtual app::DataModel::Nullable<uint8_t> GetPercentComplete()
{
return mParams.totalFileBytes > 0
? app::DataModel::Nullable<uint8_t>(static_cast<uint8_t>((mParams.downloadedBytes * 100) / mParams.totalFileBytes))
: app::DataModel::Nullable<uint8_t>{};
}
The text was updated successfully, but these errors were encountered:
Reproduction steps
1. Run TC-SU-4.1 and step 9 will fail update-state-progress always return null Writing value to mParams.totalFileBytes when OTA header received is missing
Platform
cc13x2_cc26x2
Platform Version(s)
No response
Type
Manually tested with SDK
(Optional) If manually tested please explain why this is only manually tested
Found in SVE2
Anything else?
from OTAImageProcessor.h
The text was updated successfully, but these errors were encountered: