This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS/CC3200: OTA application is not working in SDK CC3200SDK_1.1.0.

Part Number: CC3200
Other Parts Discussed in Thread: UNIFLASH

Tool/software: Code Composer Studio

I am getting this result again and again. Can I know, what is wrong here?

CC3200 OTA Update Application
*************************************************

App Version: 0.0.0
Nwp Version: 2.2.0.1.31.1.2.0.2.1.0.3.23
Wifi Status: Connected to ThingsCloud
NTP Server: dmz0.la-archdiocese.net
NTP Server IP: 
GTM Time: Tue Nov 28 2018 11:14:33
Local Time (+05:30): Tue Nov 28 2018 16:44:33
OTA Update Status: In Progress...[2J[H[?25l
*************************************************
CC3200 OTA Update Application
*************************************************

App Version: 0.0.0
Nwp Version: 2.2.0.1.31.1.2.0.2.1.0.3.23
Wifi Status: Connected to ThingsCloud
NTP Server: dmz0.la-archdiocese.net
NTP Server IP: 
GTM Time: Tue Nov 28 2018 11:14:33
Local Time (+05:30): Tue Nov 28 2018 16:44:33
OTA Update Status: Error Retrying...[2J[H[?25l

  • Hi,

    You need to use latest SDK (1.3.0) version. OTA update at SDK 1.1.0 is not functional anymore. At this version (1.1.0) of SDK is at OTA used Dropbox API which was deprecated from Dropbox side.

    Jan
  • Hi,

    I am getting the same issue with SDK 1.3.0.

    I am following the same steps which are given into the documentation.

    Nwp Version: 2.2.0.1.31.1.2.0.2.1.0.3.23



    Thanks

  • Hi,

    It seems that you not have updated latest version of ServicePack. Please use Uniflash and update NWP version by ServicePack. I am not sure if issue which you seen is related to not updated NWP version (probably not), but it is still very important step.

    Jan
  • Hi,

    I have updated the latest version of ServicePack.

    New nwp version is  2.11.0.1.31.1.5.0.2.1.0.3.37 .


    what can be other issues for error ?

    Thanks

  • Hi,

    Can you provide log what do you see now?

    Unfortunately  I don't use OTA at CC3200, from this reasons I am not able help you with this particular issue. Please wait for answer from TI side.

    Jan

  • Hi,

    I am getting:

    *************************************************
    CC3200 OTA Update Application
    *************************************************

    App Version: 0.0.0
    Nwp Version: 2.11.0.1.31.1.5.0.2.1.0.3.37
    Wifi Status: Connected to ThingsCloud
    NTP Server: dmz0.la-archdiocese.net
    NTP Server IP:
    GTM Time: Fri Dec 01 2018 10:00:00
    Local Time (+05:30): Fri Dec 01 2018 15:30:00
    OTA Update Status: In Progress...[2J[H[?25l
    *************************************************
    CC3200 OTA Update Application
    *************************************************

    App Version: 0.0.0
    Nwp Version: 2.11.0.1.31.1.5.0.2.1.0.3.37
    Wifi Status: Connected to ThingsCloud
    NTP Server: dmz0.la-archdiocese.net
    NTP Server IP:
    GTM Time: Fri Dec 01 2018 10:00:06
    Local Time (+05:30): Fri Dec 01 2018 15:30:06
    OTA Update Status: Error Retrying...[2J[H[?25l

  • Hi,

    Please enable the OTA library debug print: 

    1. uncomment the "#define DEBUG_PRINT" in "simplelink_extlib\include\extlibs_common.h" 

    2. Import the ota project, which is located under the "simplelink_extlib"

    3. Build the ota library

    4. Build the ota_update project (make sure the updated ota.a is linked, check in project properties/Build/Arm Linker/File Search Path)

    There is a known issue in regards to support of the long Dropbox URL links, which also requires a rebuild of the library:

    in "CdnClient_ConnectByUrl()" (CdnClient.c) , change the req_uri[] size from 512 to 640.

    You will need to rebuild the library and then the ota_update (step 2-4 above) in order to test this.

    br,

    Kobi

  • Hi,

    Below is the the full patch to solve the OTA issues in the CC3200 SDK 1.3:
    1. In "OtaHttp.h" (line 38):: replace the definition of HTTP_SEND_BUF_LEN from 512 to 1024 ("#define HTTP_SEND_BUF_LEN 1024")
    2. in "CdnClient.c" (line 50) :: within "CdnClient_ConnectByUrl()" , change the req_uri[] size from 512 to 640.
    3. in "ota_api.h" (line 85):: within the OtaFileMetadata_t definition, change the cdn_url[] size from 512 to 640.
    Then rebuild the ota library and the application (make sure the updated ota library is linked).

    Br,
    Kobi
  • Thanks,

    The OTA status is showing updated. But, the app version is showing the same.

    *************************************************

            CC3200 OTA Update Application      

    *************************************************

    App Version: 0.0.0

    Nwp Version: 2.11.0.1.31.1.5.0.2.1.0.3.37

    Wifi Status: Connected to ThingsCloud

    NTP Server: dmz0.la-archdiocese.net

    NTP Server IP: 209.151.225.100

    GTM Time: Tue Dec 05 2018 10:07:50

    Local Time (+05:30): Tue Dec 05 2018 15:37:50

    OTA Update Status: Completed

    ---------------------------------------------------------------------

    One more thing, shall I add the both files in dropbox (f00_sys_servicepack.signed.bin and f43_sys_servicepack.ucf files)?

  • Hi,

    Anyone is there?

    Thanks
  • Hi,

    Please open the OTA logs (as instructed above) to get more info on the sequence.
    If you followed the instructions in the OTA app notes and saw the successful completion, the new image should be triggered after the boot. Please make sure you put the right file ( with an updated version number) in the dropbox folder.
    For service pack uupdate you'll need both the image file and the signature (as you mentioned).

    Br,
    Kobi
  • Hi Kobi,

    I am following the all the steps of the OTA app notes. I have updated the buffer size of OtaHttp.h, CdnClient.c, ota_api.h, uncommented the "#define DEBUG_PRINT" and commented the "Message("\033[2J\033[H\033[?25l");". I am rebuilding the OTA app and OTA_update after changing of these things.

    I updated the token generated also.

    I generated the App in "App folder" section in Dropbox.

    My default Nwp version is 2.0.7.0.31.0.0.4.1.1.5.3.3. My service pack's Nwp version is 2.2.0.1.31.1.2.0.2.1.0.3.23. This should update into the application.

    I have uploaded the files in Dropbox which are:

    -------------------------------------------------------------------------------------

    Vid01_Pid00_Ver0000

    - f00_sys_servicepack.sig

    - f43_sys_servicepack.ucf

    -------------------------------------------------------------------------------------

    Vid01_Pid00_Ver0001

    - f80_sys_mcuimgA.bin

    #define OTA_VENDOR_STRING               "Vid01_Pid00_Ver01"

    #define APP_VER_BUILD           1

    ------------------------------------------------------------------------------------

    Vid01_Pid00_Ver0101

    - f80_sys_mcuimgA.bin

    #define OTA_VENDOR_STRING               "Vid01_Pid00_Ver00"

    #define APP_VER_BUILD           0

    -------------------------------------------------------------------------------------

    I am getting the notification of OTA update in OTA Update Status. But, I am not seeing anything into log file update of Nwp and App Version.

    App Version: 0.0.0
    Nwp Version: 2.0.7.0.31.0.0.4.1.1.5.3.3
    Wifi Status: Connected to ThingsCloud
    NTP Server: dmz0.la-archdiocese.net
    NTP Server IP: 209.151.225.100
    GTM Time: Wed Dec 06 2018 06:55:47
    Local Time (+05:30): Wed Dec 06 2018 12:25:47
    OTA Update Status: Completed

    Why this is not rebooting itself?

    At last, I pressed the SW2 button. After that, it is showing "rebooting" after pressing the SW2. But, the hardware got stuck. Nothing is happening after that. I had to format and re-flash the code after getting the stuck of hardware.

    App Version: 0.0.0
    Nwp Version: 2.0.7.0.31.0.0.4.1.1.5.3.3
    Wifi Status: Connected to ThingsCloud
    NTP Server: dmz0.la-archdiocese.net
    NTP Server IP: 209.151.225.100
    GTM Time: Wed Dec 06 2018 06:56:30
    Local Time (+05:30): Wed Dec 06 2018 12:26:30
    OTA Update Status: Completed Rebooting...

    Can I know which step, I am not following? Where am I wrong here? How much time does it take to reboot? I have gone through all the post of TI forum regarding this topic. But, none of solution is helpful for me.

    One thing more, I have observed that I am getting the error - 6 in iRet = sl_extLib_OtaRun(pvOtaApp); before completion of OTA update. After this error, I am getting the iRet  value 2. After that, I get the message of OTA completion.

  • Hi,

    Please provide the full terminal log of the OTA process (attach a text file).

    Br,

    Kobi

  • Hi,

    Thanks for reply.

    Please find the log file attached below. Please note that the notification of rebooting is showing when I press the SW2 otherwise not.

    The status of Nwp version and App version is not changing after getting the notification of completion.

    Thanks

    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 
    
    
    Wifi Status		: Power Off
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 0.0.0.0
    
    
    GTM Time		: -
    
    Local Time (+05:30)	: -
    
    
    OTA Update Status	: Press SW3 : Updates or SW2: Factory Reset
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connecting...
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 0.0.0.0
    
    
    GTM Time		: -
    
    Local Time (+05:30)	: -
    
    
    OTA Update Status	: Press SW3 : Updates or SW2: Factory Reset
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 0.0.0.0
    
    
    GTM Time		: -
    
    Local Time (+05:30)	: -
    
    
    OTA Update Status	: Press SW3 : Updates or SW2: Factory Reset
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 0.0.0.0
    
    
    GTM Time		: -
    
    Local Time (+05:30)	: -
    
    
    OTA Update Status	: Press SW3 : Updates or SW2: Factory Reset
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: -
    
    Local Time (+05:30)	: -
    
    
    OTA Update Status	: Press SW3 : Updates or SW2: Factory Reset
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:46:25
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:16:25
    
    
    OTA Update Status	: Press SW3 : Updates or SW2: Factory Reset
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:46:31
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:16:31
    
    
    OTA Update Status	: Press SW3 : Updates or SW2: Factory Reset
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:46:36
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:16:36
    
    
    OTA Update Status	: Press SW3 : Updates or SW2: Factory Reset
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:46:36
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:16:36
    
    
    OTA Update Status	: In Progress...
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:46:36
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:16:36
    
    
    OTA Update Status	: In Progress...
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:46:36
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:16:36
    
    
    OTA Update Status	: In Progress...
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:46:42
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:16:42
    
    
    OTA Update Status	: In Progress...
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:46:42
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:16:42
    
    
    OTA Update Status	: In Progress...
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:46:42
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:16:42
    
    
    OTA Update Status	: Error Retrying...
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:46:42
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:16:42
    
    
    OTA Update Status	: In Progress...
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:46:42
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:16:42
    
    
    OTA Update Status	: Error Retrying...
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:46:42
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:16:42
    
    
    OTA Update Status	: Completed
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:46:47
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:16:47
    
    
    OTA Update Status	: Completed
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:46:53
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:16:53
    
    
    OTA Update Status	: Completed
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:46:58
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:16:58
    
    
    OTA Update Status	: Completed
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:47:03
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:17:03
    
    
    OTA Update Status	: Completed
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:47:09
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:17:09
    
    
    OTA Update Status	: Completed
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:47:14
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:17:14
    
    
    OTA Update Status	: Completed
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:47:19
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:17:19
    
    
    OTA Update Status	: Completed
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:47:25
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:17:25
    
    
    OTA Update Status	: Completed
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:47:30
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:17:30
    
    
    OTA Update Status	: Completed
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:47:35
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:17:35
    
    
    OTA Update Status	: Completed
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:47:41
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:17:41
    
    
    OTA Update Status	: Completed
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:47:46
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:17:46
    
    
    OTA Update Status	: Completed
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:47:51
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:17:51
    
    
    OTA Update Status	: Completed
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:47:57
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:17:57
    
    
    OTA Update Status	: Completed
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:48:02
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:18:02
    
    
    OTA Update Status	: Completed Rebooting...
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 
    
    
    Wifi Status		: Power Off
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 0.0.0.0
    
    
    GTM Time		: -
    
    Local Time (+05:30)	: -
    
    
    OTA Update Status	: Press SW3 : Updates or SW2: Factory Reset
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connecting...
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 0.0.0.0
    
    
    GTM Time		: -
    
    Local Time (+05:30)	: -
    
    
    OTA Update Status	: Press SW3 : Updates or SW2: Factory Reset
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 0.0.0.0
    
    
    GTM Time		: -
    
    Local Time (+05:30)	: -
    
    
    OTA Update Status	: Press SW3 : Updates or SW2: Factory Reset
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 0.0.0.0
    
    
    GTM Time		: -
    
    Local Time (+05:30)	: -
    
    
    OTA Update Status	: Press SW3 : Updates or SW2: Factory Reset
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: -
    
    Local Time (+05:30)	: -
    
    
    OTA Update Status	: Press SW3 : Updates or SW2: Factory Reset
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:48:10
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:18:10
    
    
    OTA Update Status	: Press SW3 : Updates or SW2: Factory Reset
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:48:15
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:18:15
    
    
    OTA Update Status	: Press SW3 : Updates or SW2: Factory Reset
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:48:20
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:18:20
    
    
    OTA Update Status	: Press SW3 : Updates or SW2: Factory Reset
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:48:26
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:18:26
    
    
    OTA Update Status	: Press SW3 : Updates or SW2: Factory Reset
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:48:31
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:18:31
    
    
    OTA Update Status	: Press SW3 : Updates or SW2: Factory Reset
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:48:36
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:18:36
    
    
    OTA Update Status	: Press SW3 : Updates or SW2: Factory Reset
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:48:42
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:18:42
    
    
    OTA Update Status	: Press SW3 : Updates or SW2: Factory Reset
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:48:47
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:18:47
    
    
    OTA Update Status	: Press SW3 : Updates or SW2: Factory Reset
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:48:52
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:18:52
    
    
    OTA Update Status	: Press SW3 : Updates or SW2: Factory Reset
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:48:58
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:18:58
    
    
    OTA Update Status	: Press SW3 : Updates or SW2: Factory Reset
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:49:03
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:19:03
    
    
    OTA Update Status	: Press SW3 : Updates or SW2: Factory Reset
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:49:08
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:19:08
    
    
    OTA Update Status	: Press SW3 : Updates or SW2: Factory Reset
    
    
    
    		 *************************************************
    
    		         CC3200 OTA Update Application       
    
    		 *************************************************
    
    
    
    
    App Version		: 0.0.0
    
    Nwp Version		: 2.0.7.0.31.0.0.4.1.1.5.3.3
    
    
    Wifi Status		: Connected to ThingsCloud
    
    
    NTP Server		: dmz0.la-archdiocese.net
    
    NTP Server IP		: 209.151.225.100
    
    
    GTM Time		: Thu Dec 07 2018 04:49:14
    
    Local Time (+05:30)	: Thu Dec 07 2018 10:19:14
    
    
    OTA Update Status	: Press SW3 : Updates or SW2: Factory Reset

  • Hi,

    Your log doesn’t show the ota library messages.

    Please enable the ota logs as instructed  before.

    Build  the ota library first (with the DEBUG PRINT enabled) and then the OTA Update application and make sure the newly built ota.a (probably from your  workspace) is linked.

    Br,

    Kobi

  • Hi,

    I have resolved the issue. The issue was  I was calling the ota.a through file path but we have to define the path like "${workspace_loc:/ota/Release/ota.a}". We have to define the path of OTA log like this only.

    Now, everything is working fine.

    Thanks