<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Wireless MCU中的主题 Re: Zigbee OTA application</title>
    <link>https://community.nxp.com/t5/Wireless-MCU/Zigbee-OTA-application/m-p/1084074#M9855</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;A _jive_internal="true" class="" data-content-finding="Community" data-userid="227541" data-username="deepanrajanbarasan" href="https://community.nxp.com/people/deepanrajanbarasan"&gt;Deepanraj Anbarasan&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if you still facing the OTA issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mario&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 May 2020 18:30:31 GMT</pubDate>
    <dc:creator>mario_castaneda</dc:creator>
    <dc:date>2020-05-14T18:30:31Z</dc:date>
    <item>
      <title>Zigbee OTA application</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/Zigbee-OTA-application/m-p/1084065#M9846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are using nxp Zigbee device as co-ordinator which is flashed with control bridge application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let us know how to generate .ota file for the 3rd party sensor so that we can update the sensor from nxp coordinator.&lt;/P&gt;&lt;P&gt;Also with reference to ZWGUI tool we have implemented source code to do the OTA process.&amp;nbsp;&lt;/P&gt;&lt;P&gt;When we do OTA with the ZWGUI tool to the end sensor it takes around 20 mins to complete. but the same thing we have implemented in which it takes around 1hr to complete the OTA and the end device is not updated with the latest firmware also.&lt;/P&gt;&lt;P&gt;Once after the OTA is complete we receive the end response. But as soon as we receive the end response we get the OTA Block response from the end device and the whole process begin again.&lt;/P&gt;&lt;P&gt;Is there any command to stop the OTA process from the end sensor or the co-ordinator to identify not to send response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let us debug this issue.Provide your feedback&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Deepanraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2020 11:46:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/Zigbee-OTA-application/m-p/1084065#M9846</guid>
      <dc:creator>deepanrajanbara</dc:creator>
      <dc:date>2020-04-27T11:46:03Z</dc:date>
    </item>
    <item>
      <title>Re: Zigbee OTA application</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/Zigbee-OTA-application/m-p/1084066#M9847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deepanraj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you tested this OTA update requires the same&amp;nbsp;OTA cluster in the end device, in this case. Look at the&amp;nbsp;E_SL_MSG_BLOCK_SEND routine in the app_Zns_cmds.c&amp;nbsp; file&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please look at the commands that you could send to the Control Bridge.&lt;/P&gt;&lt;PRE class="language-c line-numbers"&gt;&lt;CODE&gt;    &lt;SPAN class="comment token"&gt;/* OTA Cluster */&lt;/SPAN&gt;
    E_SL_MSG_LOAD_NEW_IMAGE                                     &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;  &lt;SPAN class="number token"&gt;0x0500&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
    E_SL_MSG_BLOCK_REQUEST                                      &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;  &lt;SPAN class="number token"&gt;0x8501&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
    E_SL_MSG_BLOCK_SEND                                         &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;  &lt;SPAN class="number token"&gt;0x0502&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
    E_SL_MSG_UPGRADE_END_REQUEST                                &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;  &lt;SPAN class="number token"&gt;0x8503&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
    E_SL_MSG_UPGRADE_END_RESPONSE                               &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;  &lt;SPAN class="number token"&gt;0x0504&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
    E_SL_MSG_IMAGE_NOTIFY                                       &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;  &lt;SPAN class="number token"&gt;0x0505&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
    E_SL_MSG_SEND_WAIT_FOR_DATA_PARAMS                          &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;  &lt;SPAN class="number token"&gt;0x0506&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
    E_SL_MSG_SEND_RAW_APS_DATA_PACKET                           &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;  &lt;SPAN class="number token"&gt;0x0530&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mario&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2020 00:42:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/Zigbee-OTA-application/m-p/1084066#M9847</guid>
      <dc:creator>mario_castaneda</dc:creator>
      <dc:date>2020-04-29T00:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: Zigbee OTA application</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/Zigbee-OTA-application/m-p/1084067#M9848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually we are following the same and the end device also supports OTA cluster. Our issue is that it takes longer time to complete the update. Also after the update is complete the END OTA Request status is as 0x95 which corresponds to ABORT. Also let us know, How to generate the .ota file since we are only able to generate .zigbee file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help us know what is the reason for this ABORT status code and how can we correct this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Deepanraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2020 04:51:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/Zigbee-OTA-application/m-p/1084067#M9848</guid>
      <dc:creator>deepanrajanbara</dc:creator>
      <dc:date>2020-04-29T04:51:00Z</dc:date>
    </item>
    <item>
      <title>Re: Zigbee OTA application</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/Zigbee-OTA-application/m-p/1084068#M9849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After OTA is complete the End request status is 0x95. Please let us know what could be the cause of this issue.&amp;nbsp;&lt;/P&gt;&lt;P&gt;What could be the reason for the end device to returns 0x95.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Apr 2020 06:24:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/Zigbee-OTA-application/m-p/1084068#M9849</guid>
      <dc:creator>deepanrajanbara</dc:creator>
      <dc:date>2020-04-30T06:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: Zigbee OTA application</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/Zigbee-OTA-application/m-p/1084069#M9850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deepanraj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible that you could provide your sniffer log of all of this process? I know that it could be very long, but it will help us to debug your issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mario&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Apr 2020 16:39:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/Zigbee-OTA-application/m-p/1084069#M9850</guid>
      <dc:creator>mario_castaneda</dc:creator>
      <dc:date>2020-04-30T16:39:34Z</dc:date>
    </item>
    <item>
      <title>Re: Zigbee OTA application</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/Zigbee-OTA-application/m-p/1084070#M9851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mario,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the support, Actually due to the lockdown we do not have the sniffer setup with us. Please let us know, whether this issue is related to the&amp;nbsp;&lt;SPAN style="color: #555555; background-color: #ffffff;"&gt;timeout value while waiting for block response. Also how to increase the timeout value in this case. Does the timeout value need to be increased in the co-ordinator or end device side.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #555555; background-color: #ffffff;"&gt;Thank you,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #555555; background-color: #ffffff;"&gt;Deepanraj.A&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2020 05:51:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/Zigbee-OTA-application/m-p/1084070#M9851</guid>
      <dc:creator>deepanrajanbara</dc:creator>
      <dc:date>2020-05-04T05:51:56Z</dc:date>
    </item>
    <item>
      <title>Re: Zigbee OTA application</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/Zigbee-OTA-application/m-p/1084071#M9852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deepanraj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have a USB JN516x Dongle? However, you could program one of your JN devices with the sniffer SW that we provide.&amp;nbsp;C:\NXP\bstudio_nxp\sdk\JN-SW-4170\Tools\JennicSniffer&lt;/P&gt;&lt;P&gt;Note: The JN Sniffer only works with the Ubiqua Software&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have to be sure what is happening, and the sniffer could provide a better reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mario&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 May 2020 18:53:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/Zigbee-OTA-application/m-p/1084071#M9852</guid>
      <dc:creator>mario_castaneda</dc:creator>
      <dc:date>2020-05-04T18:53:02Z</dc:date>
    </item>
    <item>
      <title>Re: Zigbee OTA application</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/Zigbee-OTA-application/m-p/1084072#M9853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mario,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find the sniffer logs attached and below is the transport key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #555555; background-color: #ffffff; font-size: 14px; margin: 1.5em 0px;"&gt;Trust Centre Key&lt;/P&gt;&lt;P style="color: #555555; background-color: #ffffff; font-size: 14px; margin: 1.5em 0px;"&gt;5a6967426565416c6c69616e63653039&lt;/P&gt;&lt;P style="color: #555555; background-color: #ffffff; font-size: 14px; margin: 1.5em 0px;"&gt;Transport Keys&lt;/P&gt;&lt;P style="color: #555555; background-color: #ffffff; font-size: 14px; margin: 1.5em 0px;"&gt;f1029f587d1e0bd4c9fa3710d596230c&lt;/P&gt;&lt;P style="color: #555555; background-color: #ffffff; font-size: 14px; margin: 1.5em 0px;"&gt;3643acc192ef684dae5be4998a8720a5&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Deepanraj.A&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 May 2020 09:17:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/Zigbee-OTA-application/m-p/1084072#M9853</guid>
      <dc:creator>deepanrajanbara</dc:creator>
      <dc:date>2020-05-06T09:17:26Z</dc:date>
    </item>
    <item>
      <title>Re: Zigbee OTA application</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/Zigbee-OTA-application/m-p/1084073#M9854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deepanraj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am sorry, I think the sniffer log has some issues, I can not see the packets correctly, could you please share it again?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mario&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 May 2020 04:03:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/Zigbee-OTA-application/m-p/1084073#M9854</guid>
      <dc:creator>mario_castaneda</dc:creator>
      <dc:date>2020-05-08T04:03:14Z</dc:date>
    </item>
    <item>
      <title>Re: Zigbee OTA application</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/Zigbee-OTA-application/m-p/1084074#M9855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;A _jive_internal="true" class="" data-content-finding="Community" data-userid="227541" data-username="deepanrajanbarasan" href="https://community.nxp.com/people/deepanrajanbarasan"&gt;Deepanraj Anbarasan&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if you still facing the OTA issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mario&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2020 18:30:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/Zigbee-OTA-application/m-p/1084074#M9855</guid>
      <dc:creator>mario_castaneda</dc:creator>
      <dc:date>2020-05-14T18:30:31Z</dc:date>
    </item>
    <item>
      <title>Re: Zigbee OTA application</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/Zigbee-OTA-application/m-p/1084075#M9856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mario,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The issue is fixed it was due to some bytes mismatch.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Deepanraj.A&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2020 09:31:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/Zigbee-OTA-application/m-p/1084075#M9856</guid>
      <dc:creator>deepanrajanbara</dc:creator>
      <dc:date>2020-05-15T09:31:30Z</dc:date>
    </item>
  </channel>
</rss>

