<?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: Stop mode in S32K</title>
    <link>https://community.nxp.com/t5/S32K/Stop-mode/m-p/1799917#M31330</link>
    <description>&lt;P&gt;Hello, I'm trying to use the S32K148 to enter stop mode and wake up with a CAN interrupt. I activated the pretend networking and CanIcom to select a source of wake-up from EcuM.&lt;/P&gt;&lt;P&gt;In debugging, I can see that I enter stop mode 1, but I never succeed in waking up while sending CAN messages (the CAN bus is always heavy when I try to send CAN messages). I don't know what I have to do to exit stop mode.&lt;/P&gt;</description>
    <pubDate>Thu, 01 Feb 2024 13:04:26 GMT</pubDate>
    <dc:creator>amZ1</dc:creator>
    <dc:date>2024-02-01T13:04:26Z</dc:date>
    <item>
      <title>Stop mode</title>
      <link>https://community.nxp.com/t5/S32K/Stop-mode/m-p/628554#M286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please explain me what are the steps to enter into stop mode ? Currently, I write "1" into SLEEPDEEP. SMC registers (STOPCTRL and STOPM)&amp;nbsp;are configured to enter to STOP&amp;nbsp;mode when Sleep-On-Exit or Sleep-Now mode is entered with SLEEPDEEP = 1 (cf datasheet). But what is actually Sleep-On-Exit and Sleep-Now ? and how can we set them ?&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Feb 2017 14:16:19 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Stop-mode/m-p/628554#M286</guid>
      <dc:creator>stabilo</dc:creator>
      <dc:date>2017-02-13T14:16:19Z</dc:date>
    </item>
    <item>
      <title>Re: Stop mode</title>
      <link>https://community.nxp.com/t5/S32K/Stop-mode/m-p/628555#M287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sleep-On-Exit and Sleep-Now are ARM core stop modes. Both modes wake up the MCU when an interrupt occurs. The only difference between these two modes is that Sleep-On-Exit returns back to the stop mode when exiting an interrupt handler.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sleep-Now is set by default. To set Sleep-On-Exit use:&lt;/P&gt;&lt;P&gt;S32_SCB-&amp;gt;SCR |= S32_SCB_SCR_SLEEPONEXIT_MASK;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The example project attached shows all steps to enter various stop modes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2017 13:35:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Stop-mode/m-p/628555#M287</guid>
      <dc:creator>danielmartynek</dc:creator>
      <dc:date>2017-02-15T13:35:46Z</dc:date>
    </item>
    <item>
      <title>Re: Stop mode</title>
      <link>https://community.nxp.com/t5/S32K/Stop-mode/m-p/628556#M288</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help. I have one additional question: what happen if PSTOPO is set to 0 ? (normal Stop mode). Because in this mode, the consumption is very low and&amp;nbsp;I still can wake up from sleep using an internal timer or by port interrupt. When I use STOP1 or STOP2 mode, the consumption is too high.&amp;nbsp; How can I reduce the consumption if I use STOP1 or STOP2 ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2017 10:55:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Stop-mode/m-p/628556#M288</guid>
      <dc:creator>stabilo</dc:creator>
      <dc:date>2017-02-16T10:55:26Z</dc:date>
    </item>
    <item>
      <title>Re: Stop mode</title>
      <link>https://community.nxp.com/t5/S32K/Stop-mode/m-p/628557#M289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN&gt;Hi&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;According to the datasheet, if&lt;/SPAN&gt; Normal Stop Mode is set (PMCTRL[STOPM = 0b000]), the STOPO bits in the STOPCTRL register must be used to select the variants of stop - STOP1/STOP2. STOPO(0b00) is reserved.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The consumption varies depending on peripherals you use. See chapter 33.8 Module operation in available low power modes in the datasheet. And compare VLPS and STOP mode.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Daniel &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Feb 2017 15:11:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Stop-mode/m-p/628557#M289</guid>
      <dc:creator>danielmartynek</dc:creator>
      <dc:date>2017-02-16T15:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: Stop mode</title>
      <link>https://community.nxp.com/t5/S32K/Stop-mode/m-p/628558#M290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;In my datasheet (revA), I can configure the normal stop mode and it works:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="stopmode.JPG"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/13613iC733E751AA9C4658/image-size/large?v=v2&amp;amp;px=999" role="button" title="stopmode.JPG" alt="stopmode.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;So I don't know if it is an error in the datasheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem with the VLPS stop mode is that I cannot wake up using an external interrupt for example.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Feb 2017 12:40:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Stop-mode/m-p/628558#M290</guid>
      <dc:creator>stabilo</dc:creator>
      <dc:date>2017-02-17T12:40:10Z</dc:date>
    </item>
    <item>
      <title>Re: Stop mode</title>
      <link>https://community.nxp.com/t5/S32K/Stop-mode/m-p/628559#M291</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I checked all reference manuals and only S32K144_0N77P_Mask_only RM and RevA, which is also for N77P, support the option. Whereas Rev1.0 and Rev2.0 (for newer 0N47T mask set) don’t.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="STOPO.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/14296iEE5A5B419BE10634/image-size/large?v=v2&amp;amp;px=999" role="button" title="STOPO.png" alt="STOPO.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="StopoNote.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/14321i41F7E6955AF09CC4/image-size/large?v=v2&amp;amp;px=999" role="button" title="StopoNote.png" alt="StopoNote.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I’ll try to find more information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2017 10:45:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Stop-mode/m-p/628559#M291</guid>
      <dc:creator>danielmartynek</dc:creator>
      <dc:date>2017-02-20T10:45:13Z</dc:date>
    </item>
    <item>
      <title>Re: Stop mode</title>
      <link>https://community.nxp.com/t5/S32K/Stop-mode/m-p/628560#M292</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;BR /&gt;Does the CAN peripheral needs the bus clock to wakeup from stop mode ? When i'm using the STOP2 mode, the MCU can be woken up by a CAN message, but when using STOP1 mode, the MCU never wakes up. I need to optimize the current consumption during STOP mode, and when the bus clock is disabled, I save 200uA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Mar 2017 10:32:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Stop-mode/m-p/628560#M292</guid>
      <dc:creator>stabilo</dc:creator>
      <dc:date>2017-03-15T10:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: Stop mode</title>
      <link>https://community.nxp.com/t5/S32K/Stop-mode/m-p/628561#M293</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;As per the reference manual you can use Pretended Networking (for CAN0 only) which should be supported in both modes STOP1/STOP2.&lt;/P&gt;&lt;P&gt;Pretended Networking mode adds specific wake up functionality in Stop modes. CHI sub-block clocks are shut down and CAN_PE sub-block is kept clocked, so that the Rx receive process is still active to filter incoming messages. Upon detecting a wake-up event, a Wake-up interrupt is issued to the system.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Mar 2017 13:57:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Stop-mode/m-p/628561#M293</guid>
      <dc:creator>danielmartynek</dc:creator>
      <dc:date>2017-03-15T13:57:23Z</dc:date>
    </item>
    <item>
      <title>Re: Stop mode</title>
      <link>https://community.nxp.com/t5/S32K/Stop-mode/m-p/628562#M294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Do you have any additional information about the "Normal stop mode" ? I am currently using 0N77P and I don't understand why my consumption is higher when I use the stop mode 1 or the stop mode 2. When using VLPS, is possible to wakeup using LPIT or PORT interrupt ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Mar 2017 07:35:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Stop-mode/m-p/628562#M294</guid>
      <dc:creator>stabilo</dc:creator>
      <dc:date>2017-03-30T07:35:01Z</dc:date>
    </item>
    <item>
      <title>Re: Stop mode</title>
      <link>https://community.nxp.com/t5/S32K/Stop-mode/m-p/628563#M295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately, I don’t have any information.&lt;/P&gt;&lt;P&gt;If you look at current S32K1xx Data Sheet, which you can find on the product page, the typical power consumption (chapter 4.7) is given only for VLPS(39.1uA), STOP1(7mA) and STOP2(7.7mA).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You should be able to wake up from VLPS using GPIO, ADC, CMP and LPTMR instead of LPIT.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Mar 2017 10:47:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Stop-mode/m-p/628563#M295</guid>
      <dc:creator>danielmartynek</dc:creator>
      <dc:date>2017-03-31T10:47:23Z</dc:date>
    </item>
    <item>
      <title>Re: Stop mode</title>
      <link>https://community.nxp.com/t5/S32K/Stop-mode/m-p/628564#M296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The RAM is still active in VLPS mode, I mean when the MCU wakes up, the content of the RAM is not lost ?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Apr 2017 09:05:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Stop-mode/m-p/628564#M296</guid>
      <dc:creator>stabilo</dc:creator>
      <dc:date>2017-04-13T09:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: Stop mode</title>
      <link>https://community.nxp.com/t5/S32K/Stop-mode/m-p/628565#M297</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;Yes, RAM retained in all modes, see Table 34-1 in the RM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Apr 2017 12:58:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Stop-mode/m-p/628565#M297</guid>
      <dc:creator>danielmartynek</dc:creator>
      <dc:date>2017-04-13T12:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: Stop mode</title>
      <link>https://community.nxp.com/t5/S32K/Stop-mode/m-p/1799917#M31330</link>
      <description>&lt;P&gt;Hello, I'm trying to use the S32K148 to enter stop mode and wake up with a CAN interrupt. I activated the pretend networking and CanIcom to select a source of wake-up from EcuM.&lt;/P&gt;&lt;P&gt;In debugging, I can see that I enter stop mode 1, but I never succeed in waking up while sending CAN messages (the CAN bus is always heavy when I try to send CAN messages). I don't know what I have to do to exit stop mode.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2024 13:04:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/Stop-mode/m-p/1799917#M31330</guid>
      <dc:creator>amZ1</dc:creator>
      <dc:date>2024-02-01T13:04:26Z</dc:date>
    </item>
  </channel>
</rss>

