<?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 use longer wakeup intervals in Wireless MCU</title>
    <link>https://community.nxp.com/t5/Wireless-MCU/How-to-use-longer-wakeup-intervals/m-p/1234618#M10788</link>
    <description>&lt;P&gt;Hi,&lt;SPAN&gt;Mario:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;The SDK version&amp;nbsp; is 2.6.1.Does the latest SDK fix this problem for me?&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 23 Feb 2021 00:34:04 GMT</pubDate>
    <dc:creator>lvdp</dc:creator>
    <dc:date>2021-02-23T00:34:04Z</dc:date>
    <item>
      <title>How to use longer wakeup intervals</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/How-to-use-longer-wakeup-intervals/m-p/1223664#M10677</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;We use JN5189 to develop a dormant device based on JN-AN-1246. I want the device to wake up every 12 hours, but PWR_eScheduleActivity uses wake-up timer1, only 28 bits, the maximum wake-up time can only be set to 8192S, if it needs to be longer What should I do?&lt;/P&gt;</description>
      <pubDate>Mon, 01 Feb 2021 02:22:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/How-to-use-longer-wakeup-intervals/m-p/1223664#M10677</guid>
      <dc:creator>lvdp</dc:creator>
      <dc:date>2021-02-01T02:22:14Z</dc:date>
    </item>
    <item>
      <title>How to use longer wakeup intervals</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/How-to-use-longer-wakeup-intervals/m-p/1224854#M10688</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/118423"&gt;@lvdp&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The sensor application note has been designed with a periodic reporting(maximum reporting interval/ sleep interval) of 1 minute and thus the end device time out (keep alive time) was kept as 2 minutes in Light sensor application note.&amp;nbsp;&lt;/SPAN&gt;If you modify the value for periodic reporting interval, the gateway/control bridge will not receive the poll request (keep-alive) from the sensor within 2 minutes and thus making the sensor leave network when it wakes up after 10 minutes. So, if periodic sleep is modified the end device time out should also be modified.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The parameter passed to the&amp;nbsp;ZPS_bAplAfSetEndDeviceTimeout decides the end device timeout , below are the values that this function can take:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;typedef enum {&lt;BR /&gt;ZED_TIMEOUT_10_SEC, // 0 -&amp;gt; 10 seconds&lt;BR /&gt;ZED_TIMEOUT_2_MIN, // 1 -&amp;gt; 2 minutes&lt;BR /&gt;ZED_TIMEOUT_4_MIN, // 2 -&amp;gt; 4 minutes&lt;BR /&gt;ZED_TIMEOUT_8_MIN, // 3 -&amp;gt; 8 minutes&lt;BR /&gt;ZED_TIMEOUT_16_MIN, // 4 -&amp;gt; 16 minutes&lt;BR /&gt;ZED_TIMEOUT_32_MIN, // 5 -&amp;gt; 32 minutes&lt;BR /&gt;ZED_TIMEOUT_64_MIN, // 6 -&amp;gt; 64 minutes&lt;BR /&gt;ZED_TIMEOUT_128_MIN, // 7 -&amp;gt; 128 minutes&lt;BR /&gt;ZED_TIMEOUT_256_MIN, // 8 -&amp;gt; 256 minutes (4 hrs 16 min)&lt;BR /&gt;ZED_TIMEOUT_512_MIN, // 9 -&amp;gt; 512 minutes (8 hrs 32 min)&lt;BR /&gt;ZED_TIMEOUT_1024_MIN, // 10 -&amp;gt; 1024 minutes (17 hrs 4 min)&lt;BR /&gt;ZED_TIMEOUT_2048_MIN, // 11 -&amp;gt; 2048 minutes (1 day 10 hrs 8 min)&lt;BR /&gt;ZED_TIMEOUT_4096_MIN, // 12 -&amp;gt; 4096 minutes (2 days 20 hrs 16 min)&lt;BR /&gt;ZED_TIMEOUT_8192_MIN, // 13 -&amp;gt; 8192 minutes (5 days 16 hrs 32 min)&lt;BR /&gt;ZED_TIMEOUT_16384_MIN, // 14 -&amp;gt; 16384 minutes (11 days 9 hrs 4 min)&lt;BR /&gt;ZED_TIMEOUT_INDEX_MAX,&lt;BR /&gt;ZED_TIMEOUT_UNDEFINED = 0xff&lt;BR /&gt;}teZedTimeout;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, for the 12 hours interval, the best suitable value is 1024 minutes.&lt;/P&gt;
&lt;P&gt;ZPS_bAplAfSetEndDeviceTimeout(&lt;SPAN&gt;ZED_TIMEOUT_2_MIN&lt;/SPAN&gt;);&lt;/P&gt;
&lt;P&gt;to&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;ZPS_bAplAfSetEndDeviceTimeout( ZED_TIMEOUT_1024_MIN);&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Mario&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2021 16:14:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/How-to-use-longer-wakeup-intervals/m-p/1224854#M10688</guid>
      <dc:creator>mario_castaneda</dc:creator>
      <dc:date>2021-02-02T16:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to use longer wakeup intervals</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/How-to-use-longer-wakeup-intervals/m-p/1225040#M10696</link>
      <description>&lt;P&gt;Hi,mario:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;We have set the device timeout period to ZED_TIMEOUT_4096_MIN.The current problem is that we use PWR_eScheduleActivity (&amp;amp;sWake, 1000*60*60*12, vWakeCallBack) to set the wake up every 12 hours, but the maximum allowable value of WAKE_UP_TIMER1 is exceeded, the final result is about 42 minutes to wake up.So is there any way to solve this problem?&lt;/P&gt;</description>
      <pubDate>Wed, 03 Feb 2021 00:33:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/How-to-use-longer-wakeup-intervals/m-p/1225040#M10696</guid>
      <dc:creator>lvdp</dc:creator>
      <dc:date>2021-02-03T00:33:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to use longer wakeup intervals</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/How-to-use-longer-wakeup-intervals/m-p/1229955#M10748</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am checking on this. I will get back to you as soon as possible.&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Mario&lt;/P&gt;</description>
      <pubDate>Thu, 11 Feb 2021 15:40:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/How-to-use-longer-wakeup-intervals/m-p/1229955#M10748</guid>
      <dc:creator>mario_castaneda</dc:creator>
      <dc:date>2021-02-11T15:40:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to use longer wakeup intervals</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/How-to-use-longer-wakeup-intervals/m-p/1234543#M10785</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/118423"&gt;@lvdp&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;I hope you are doing great. Sorry for the late update.&lt;/P&gt;
&lt;P&gt;Could you please confirm what is the SDK version that you are working on?&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Mario&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2021 18:27:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/How-to-use-longer-wakeup-intervals/m-p/1234543#M10785</guid>
      <dc:creator>mario_castaneda</dc:creator>
      <dc:date>2021-02-22T18:27:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to use longer wakeup intervals</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/How-to-use-longer-wakeup-intervals/m-p/1234618#M10788</link>
      <description>&lt;P&gt;Hi,&lt;SPAN&gt;Mario:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;The SDK version&amp;nbsp; is 2.6.1.Does the latest SDK fix this problem for me?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Feb 2021 00:34:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/How-to-use-longer-wakeup-intervals/m-p/1234618#M10788</guid>
      <dc:creator>lvdp</dc:creator>
      <dc:date>2021-02-23T00:34:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to use longer wakeup intervals</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/How-to-use-longer-wakeup-intervals/m-p/1236084#M10810</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/118423"&gt;@lvdp&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;I double-check this.&amp;nbsp;&lt;SPAN&gt;The end device could not sleep for 12 hours by using wake timer1 in our SDK, We recommend the device wake up&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;in several mins and then enter into sleep again.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Sorry for any inconvenience that this may cause you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Mario&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Feb 2021 19:57:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/How-to-use-longer-wakeup-intervals/m-p/1236084#M10810</guid>
      <dc:creator>mario_castaneda</dc:creator>
      <dc:date>2021-02-24T19:57:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to use longer wakeup intervals</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/How-to-use-longer-wakeup-intervals/m-p/1236180#M10812</link>
      <description>&lt;P&gt;alright, I understand. We currently set it to wake up every two hours and there is no problem. But in order to pursue lower power consumption, I would like to know whether it can be set to wake up every 12 hours. Finally, thank you for your answer.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2021 00:28:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/How-to-use-longer-wakeup-intervals/m-p/1236180#M10812</guid>
      <dc:creator>lvdp</dc:creator>
      <dc:date>2021-02-25T00:28:26Z</dc:date>
    </item>
  </channel>
</rss>

