OTA_FR running error

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
Anonymous
Not applicable

I have been testing the ota.fr (WICED OTA Upgrade and Factory Reset (SDK 3.5.2) ) on USI-BM-22,

Connected to the otp web server, and the file was opened *.stripped.elf proceeded to "start upgrade".

but no progress can be shown,no information from log when I click "start upgrade".

What is the reason? SDK : 3.5.2 serial flash : SST26VF064B-104I/SM

0 Likes
4 Replies
Anonymous
Not applicable

Hello ,

I have same problem.

0 Likes
joMa_1809706
Level 4
Level 4
10 likes received First like received First like given

some very old browsers don't support the Slice function that chunks the payload

Anonymous
Not applicable

Hello jmartin

i use google chrome Version 55.0.2883.87 m and Mozilla Firefox but problem is same.

0 Likes
Anonymous
Not applicable

Please refer below

File : wiced_dct_external_common.c

Function : static wiced_result_t wiced_dct_load( const image_location_t* dct_location )

    size   = prog_header.data_size_in_file;

    offset = prog_header.data_offset;

    while ( size > 0 )

    {

        uint32_t write_size = MIN(sizeof(buff), size);

#if 0

        if (wiced_apps_read( dct_location, buff, offset, write_size) != 0)  // Origianl SDK source code, BUG

#else

        if (wiced_apps_read( dct_location, buff, offset, write_size) == 0)  // Use this one

#endif

TKS

0 Likes