<?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 S9KEAZ64 MSCAN proper steps for wake up  in Kinetis Microcontrollers</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/S9KEAZ64-MSCAN-proper-steps-for-wake-up/m-p/1097879#M57908</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all, firstly I would like to apologise if this question has already been answered. I have seen a lot of questions on these boards that are related to MSCAN but so far I have not found a question/answer that is exactly similar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PSEUDO CODE (steps before entering Stop mode):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Set SLPRQ = 1&lt;BR /&gt; 2) Wait until SLPAK == 1&lt;BR /&gt; 3) Set WUPE and WUPIE to 1&lt;BR /&gt; 4) 10 ms Delay (executing other tasks, ISRs)&lt;BR /&gt; 5) Enter STOP mode (interrupts are NOT globally disabled)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Usually the above steps in our source code allow the MSCAN to wake the S9KEAZ64 up from STOP mode. However I discovered that if a new CAN packet arrives during step #4 above, then MSCAN wakes up and automatically resets SLPRQ and SLPAK to 0. If this happens, MSCAN will not wake the MCU from STOP mode because SLPRQ and SLPAK are no&amp;nbsp;longer 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way of overcoming this? The delay in Step #4 is more than 10 milliseconds. Should I enter STOP mode immediately after SLPAK becomes 1? If so, what is the maximum delay that can be used.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Apr 2020 06:31:08 GMT</pubDate>
    <dc:creator>julian_yeoh</dc:creator>
    <dc:date>2020-04-15T06:31:08Z</dc:date>
    <item>
      <title>S9KEAZ64 MSCAN proper steps for wake up</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/S9KEAZ64-MSCAN-proper-steps-for-wake-up/m-p/1097879#M57908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all, firstly I would like to apologise if this question has already been answered. I have seen a lot of questions on these boards that are related to MSCAN but so far I have not found a question/answer that is exactly similar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PSEUDO CODE (steps before entering Stop mode):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Set SLPRQ = 1&lt;BR /&gt; 2) Wait until SLPAK == 1&lt;BR /&gt; 3) Set WUPE and WUPIE to 1&lt;BR /&gt; 4) 10 ms Delay (executing other tasks, ISRs)&lt;BR /&gt; 5) Enter STOP mode (interrupts are NOT globally disabled)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Usually the above steps in our source code allow the MSCAN to wake the S9KEAZ64 up from STOP mode. However I discovered that if a new CAN packet arrives during step #4 above, then MSCAN wakes up and automatically resets SLPRQ and SLPAK to 0. If this happens, MSCAN will not wake the MCU from STOP mode because SLPRQ and SLPAK are no&amp;nbsp;longer 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way of overcoming this? The delay in Step #4 is more than 10 milliseconds. Should I enter STOP mode immediately after SLPAK becomes 1? If so, what is the maximum delay that can be used.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2020 06:31:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/S9KEAZ64-MSCAN-proper-steps-for-wake-up/m-p/1097879#M57908</guid>
      <dc:creator>julian_yeoh</dc:creator>
      <dc:date>2020-04-15T06:31:08Z</dc:date>
    </item>
    <item>
      <title>Re: S9KEAZ64 MSCAN proper steps for wake up</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/S9KEAZ64-MSCAN-proper-steps-for-wake-up/m-p/1097880#M57909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Julian Yeoh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can refer to the solution mentioned in the AN2255. Let other CAN node don't send message within a few milliseconds.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="note AN2255.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/108116iB6A80801D5876B49/image-size/large?v=v2&amp;amp;px=999" role="button" title="note AN2255.png" alt="note AN2255.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Or can you ensure other interrupt don't happen during these steps. For example: Arrange this process in the rest of the time gap.&lt;/P&gt;&lt;P&gt;Or execute this process in a higher priority interrupt. For example: Systick interrupt&lt;/P&gt;&lt;P&gt;Or set a flag once you want to execute this process, check this flag at the bottom of other interrupt. If the flag was set, check the SLPAK again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Robin&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2020 11:25:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/S9KEAZ64-MSCAN-proper-steps-for-wake-up/m-p/1097880#M57909</guid>
      <dc:creator>Robin_Shen</dc:creator>
      <dc:date>2020-04-16T11:25:10Z</dc:date>
    </item>
    <item>
      <title>Re: S9KEAZ64 MSCAN proper steps for wake up</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/S9KEAZ64-MSCAN-proper-steps-for-wake-up/m-p/1097881#M57910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robin_Shen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Firstly I would like to thank you for your quick reply!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually&amp;nbsp;I have previously gone through the document&amp;nbsp;AN2255/D and it seems that&amp;nbsp;in a nutshell the solution is to simply check SLPAK again at the very "LAST MINUTE", even though we have already checked SLPAK before. However it seems like an important piece of information that is missing is the maximum allowed delay between checking SLPAK and entering STOP mode. Even if we write a very straightforward check in C such as shown below, the number of machine instructions that is consumed depends on the compiler. I tried to verify using the debugger and it seems like this problem can still occur :-(&amp;nbsp; &amp;nbsp;(although I am not sure if my method represents a real world scenario)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ( SLPAK == 1 )&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; // SLPAK can still change to&amp;nbsp;0 here even though the probability is very very very low&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; EXECUTE_STOP;&amp;nbsp; &amp;nbsp;// I put a breakpoint at this line - when it pauses I sent a CAN message - SLPAK becomes&amp;nbsp;0&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the question is:&lt;/P&gt;&lt;P&gt;What is the maximum permitted delay between checking that SLPAK is set and entering STOP mode? (how many MSCAN or CPU cycles...)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If anyone has this information could you please forward it to me. Thanks in advance :-)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Capture.PNG"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/108394iC3CBC17EDCB58CE2/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Figure 2 from document&amp;nbsp;AN2255/D&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2020 00:51:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/S9KEAZ64-MSCAN-proper-steps-for-wake-up/m-p/1097881#M57910</guid>
      <dc:creator>julian_yeoh</dc:creator>
      <dc:date>2020-04-20T00:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: S9KEAZ64 MSCAN proper steps for wake up</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/S9KEAZ64-MSCAN-proper-steps-for-wake-up/m-p/1097882#M57911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;I have consult this with AE team, here is the feedback from Enwei:&lt;/EM&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;1. In fact, the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="border: 0px; font-weight: bold;"&gt;&lt;STRONG&gt;AN2255&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;is very good reference and has explained the exact MSCAN low-power mode requirements and recommended program flowchart we can provide for our customer;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;2. Yes, as customer said, the MSCAN&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="border: 0px; font-weight: bold;"&gt;&lt;STRONG&gt;SLPAK&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;bit check（depends on user implementation C code and compiler optimization, several CPU cycles may need）and also the STOP assemble instruction（&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="border: 0px; font-weight: bold;"&gt;&lt;STRONG&gt;WFI&lt;/STRONG&gt;&lt;/SPAN&gt;,&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="border: 0px; font-weight: bold;"&gt;&lt;STRONG&gt;2&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;CPU cycles e&lt;SPAN class="" style="border: 0px; font-weight: inherit;"&gt;xcluding time spent waiting for an interrupt or event&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;) will still consume several CPU cycles before the CPU core really enter into STOP mode:&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_21.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/64105iF32D65DE6BCC95AD/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_21.png" alt="pastedImage_21.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;3. for customer's question:"What is the maximum permitted delay between checking that SLPAK is set and entering STOP mode? (how many MSCAN or CPU cycles...)", the max delay here is equal to the minimum time between SLPAK set and be cleaned again（the next CAN frame arrive and wake up the MSCAN ）, so it actual means next CAN frame arrival interval--the&lt;SPAN style="border: 0px; font-weight: bold;"&gt;&lt;STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Inter-frame space&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;defined in BOSCH CAN spec.&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_6.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/64148iD018DEE86A773551/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_6.png" alt="pastedImage_6.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;If current CAN node is not a error passive node, the minimum inter-frame space is&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="border: 0px; font-weight: bold;"&gt;&lt;STRONG&gt;3&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;bit intermission + Bus idle (an arbitration length,&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="border: 0px; font-weight: bold;"&gt;&lt;STRONG&gt;12&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;bit for standard frame with 11-bit ID):&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_8.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/64316iE7E6299BBAF02D83/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_8.png" alt="pastedImage_8.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;so the the minimum time interval is&lt;SPAN style="border: 0px; font-weight: bold;"&gt;&lt;STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;15 * CAN bus bit period,&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #ff6600; border: 0px; font-weight: inherit;"&gt;which depends on the CAN bus communication baud rate you are using.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;for example, a&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="border: 0px; font-weight: bold;"&gt;&lt;STRONG&gt;500kbit/s&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;CAN bus, the bit period is 1/500KHz = 2us, so the the minimum time interval is&lt;SPAN style="border: 0px; font-weight: bold;"&gt;&lt;STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;15 * CAN bus bit period&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;=&lt;SPAN style="border: 0px; font-weight: bold;"&gt;&lt;STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;30us&lt;/STRONG&gt;&lt;/SPAN&gt;.&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;Based on the above discussion, let's consider a typical configuration of KEA part with MSCAN, use&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="border: 0px; font-weight: bold;"&gt;&lt;STRONG&gt;FEE&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;mode to generate a 40MHz CPU core clock with a 8MHz external crystal as reference, the CPU instruction cycle will be 1/40MHz = 25ns, so&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="border: 0px; font-weight: bold;"&gt;&lt;STRONG&gt;30us&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;is 30/0.025 =&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="border: 0px; font-weight: bold;"&gt;&lt;STRONG&gt;1250&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;instruction cycles, CPU can run ~1000 assembly instructions(for most CM0+ Thumb-2 ISA are single-cycle）for many low-power preparation works.&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="border: 0px; font-weight: bold;"&gt;&lt;STRONG&gt;PS&lt;/STRONG&gt;&lt;/SPAN&gt;: the debug breakpoint customer made is meaningless for KEA CPU core is running with MIPS，the breakpoint cannot simulate the fast case in real world.&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;Based on the above, the following two suggestions for customer reference,&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;1. make the MSCAN sleep request and ACK check at the last of MCU low-power mode preparation, and simplify the step 3 as much as possible to short the time(suggest to configure the MSCAN wake up feature when MSCAN initialization, for MSCAN wake up feature only works in MSCAN sleep/shutdown mode, and does not work in normal mode):&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_26.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/64533iC9878AC1B212F345/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_26.png" alt="pastedImage_26.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;2. as said in&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="border: 0px; font-weight: bold;"&gt;&lt;STRONG&gt;AN2255&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;, at high-level application, it is suggested that the CAN network operational modes are handled by network management software(&lt;SPAN style="color: #ff6600; border: 0px; font-weight: inherit;"&gt;for most automotive ECU, CAN network management is a MUST&lt;/SPAN&gt;). For example, a specific message can be broadcast telling every node to go into sleep mode at the same time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Apr 2020 06:09:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/S9KEAZ64-MSCAN-proper-steps-for-wake-up/m-p/1097882#M57911</guid>
      <dc:creator>Robin_Shen</dc:creator>
      <dc:date>2020-04-23T06:09:11Z</dc:date>
    </item>
    <item>
      <title>Re: S9KEAZ64 MSCAN proper steps for wake up</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/S9KEAZ64-MSCAN-proper-steps-for-wake-up/m-p/1097883#M57912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, that was a lengthy explanation, but I think you did not understand my main question. :-)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Capture2.PNG"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/90113iE40CE158D6CC0B9E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture2.PNG" alt="Capture2.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think that even with a very fast CPU, SLPAK can still change from a 1 to a 0 at the above location. Could you please confirm this? We just need to know whether&amp;nbsp;it works 100% of the time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2020 04:48:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/S9KEAZ64-MSCAN-proper-steps-for-wake-up/m-p/1097883#M57912</guid>
      <dc:creator>julian_yeoh</dc:creator>
      <dc:date>2020-04-24T04:48:51Z</dc:date>
    </item>
    <item>
      <title>Re: S9KEAZ64 MSCAN proper steps for wake up</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/S9KEAZ64-MSCAN-proper-steps-for-wake-up/m-p/1097884#M57913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. It will. Just as the AN2255 said.&lt;BR /&gt;So you need to take the above measures to avoid it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2020 08:54:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/S9KEAZ64-MSCAN-proper-steps-for-wake-up/m-p/1097884#M57913</guid>
      <dc:creator>Robin_Shen</dc:creator>
      <dc:date>2020-04-24T08:54:14Z</dc:date>
    </item>
  </channel>
</rss>

