<?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>topic Re: How to view APS_ACK packet in Wireless MCU</title>
    <link>https://community.nxp.com/t5/Wireless-MCU/How-to-view-APS-ACK-packet/m-p/1050907#M9300</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Mario. Is it possible to configure a node to ignore acknowledgement requests? I am sending data from a control bridge to a dimmable light, the control bridge requests an acknowledgement from the dimmable&amp;nbsp; light but i want the dimmable light to ignore the acknowledgement request. Is it possible to achieve that? How?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Aug 2020 16:50:33 GMT</pubDate>
    <dc:creator>ode962</dc:creator>
    <dc:date>2020-08-07T16:50:33Z</dc:date>
    <item>
      <title>How to view APS_ACK packet</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/How-to-view-APS-ACK-packet/m-p/1050905#M9298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can I get the acknowledgement on a control bridge if I send data to a remote node using&amp;nbsp;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;ZPS_eAplAfUnicastAckDataReq( ). I tried the step in the Zigbee 3.0 user guide, but can’t seem to figure it out.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Aug 2020 05:24:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/How-to-view-APS-ACK-packet/m-p/1050905#M9298</guid>
      <dc:creator>ode962</dc:creator>
      <dc:date>2020-08-01T05:24:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to view APS_ACK packet</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/How-to-view-APS-ACK-packet/m-p/1050906#M9299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please look at the ZPS_EVENT_APS_DATA_ACKswitch case. Also, be sure that the&amp;nbsp;TRACE_ZCL is defined in the make file.&lt;/P&gt;&lt;PRE class="language-c line-numbers"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;void&lt;/SPAN&gt; APP_vHandleZclEvents &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt; ZPS_tsAfEvent&lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt;    psStackEvent &lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;switch&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt; psStackEvent&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;eType &lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
    &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
        &lt;SPAN class="keyword token"&gt;case&lt;/SPAN&gt; ZPS_EVENT_APS_DATA_ACK&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
            &lt;SPAN class="token function"&gt;vLog_Printf&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;TRACE_ZCL&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;LOG_DEBUG&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"\nACK: SEP=%d DEP=%d Profile=%04x Cluster=%04x\n"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
                    psStackEvent&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;uEvent&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;sApsDataAckEvent&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;u8SrcEndpoint&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
                    psStackEvent&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;uEvent&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;sApsDataAckEvent&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;u8DstEndpoint&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
                    psStackEvent&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;uEvent&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;sApsDataAckEvent&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;u16ProfileId&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
                    psStackEvent&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;uEvent&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;sApsDataAckEvent&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;u16ClusterId&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
            &lt;SPAN class="keyword token"&gt;break&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
     &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;

&lt;SPAN class="punctuation token"&gt;.&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;/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;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&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, 03 Aug 2020 17:34:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/How-to-view-APS-ACK-packet/m-p/1050906#M9299</guid>
      <dc:creator>mario_castaneda</dc:creator>
      <dc:date>2020-08-03T17:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to view APS_ACK packet</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/How-to-view-APS-ACK-packet/m-p/1050907#M9300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Mario. Is it possible to configure a node to ignore acknowledgement requests? I am sending data from a control bridge to a dimmable light, the control bridge requests an acknowledgement from the dimmable&amp;nbsp; light but i want the dimmable light to ignore the acknowledgement request. Is it possible to achieve that? How?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Aug 2020 16:50:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/How-to-view-APS-ACK-packet/m-p/1050907#M9300</guid>
      <dc:creator>ode962</dc:creator>
      <dc:date>2020-08-07T16:50:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to view APS_ACK packet</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/How-to-view-APS-ACK-packet/m-p/1050908#M9301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case, this ack depends on the Coordinator, so you have to send the packet without the ACK request.&lt;/P&gt;&lt;P&gt;You can not ignore this request because is part of the specification.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/109929i901D4399630BB7FE/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, you could try to send a broadcast with specific data and your device will poll for this information.&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>Tue, 11 Aug 2020 00:26:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/How-to-view-APS-ACK-packet/m-p/1050908#M9301</guid>
      <dc:creator>mario_castaneda</dc:creator>
      <dc:date>2020-08-11T00:26:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to view APS_ACK packet</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/How-to-view-APS-ACK-packet/m-p/1050909#M9302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok. Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Aug 2020 05:16:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/How-to-view-APS-ACK-packet/m-p/1050909#M9302</guid>
      <dc:creator>ode962</dc:creator>
      <dc:date>2020-08-11T05:16:03Z</dc:date>
    </item>
  </channel>
</rss>

