<?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 achieve the KEA128 lowest static current in STOP mode in Kinetis Microcontrollers</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683053#M42058</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ruiju,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Use my test code in the above reply, download the code, then power off the board, power on it again, then test the power consumption.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I also have tested the TRK board, the power consumption is correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Kerry&lt;/P&gt;&lt;P&gt;&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>Tue, 15 May 2018 02:15:54 GMT</pubDate>
    <dc:creator>kerryzhou</dc:creator>
    <dc:date>2018-05-15T02:15:54Z</dc:date>
    <item>
      <title>how to achieve the KEA128 lowest static current in STOP mode</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683034#M42039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sir,&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm test the low power mode static current consume in STOP mode with&lt;STRONG&gt; FRDM-KEAZ128Q80&lt;/STRONG&gt; board and demo project--&lt;STRONG&gt;FRDM_KEA128_PMC&lt;/STRONG&gt;.zip in S32DS for ARM version from the demo board's Quick Start Package---&lt;STRONG&gt;FRDM-KEA-QSP&lt;/STRONG&gt;, attached for your reference. but I got &lt;STRONG&gt;over 220uA&lt;/STRONG&gt;( measured with my multimeter ) &amp;nbsp;at jumper J15 with R117 removed, during the STOP mode period in the first 3 seconds as the project configured:&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;int main (void)&lt;BR /&gt;{&lt;BR /&gt; uint8_t u8Ch;&lt;/P&gt;&lt;P&gt;/* Perform processor initialization */&lt;BR /&gt; ICS_ConfigType ICS_set={0}; /* Declaration of ICS_setup structure */&lt;BR /&gt; ICS_set.u8ClkMode=ICS_CLK_MODE_FEI; /* ICS in FLL engaged internal mode*/&lt;BR /&gt; ICS_set.bdiv=0;&lt;BR /&gt; ICS_Init(&amp;amp;ICS_set); /* Initialization of Core clock at 48 MHz, Bus clock 24 MHz*/&lt;/P&gt;&lt;P&gt;/* UART Initialization */&lt;BR /&gt; UART_ConfigType UART_Config={{0}};&lt;/P&gt;&lt;P&gt;UART_Config.sctrl1settings.bits.bM=0; /* 8 bit mode*/&lt;BR /&gt; UART_Config.sctrl1settings.bits.bPe=0; /* No hardware parity generation or checking*/&lt;BR /&gt; UART_Config.bSbns=0; /* One stop bit*/&lt;BR /&gt; UART_Config.sctrl2settings.bits.bRe=1; /* Enable Receiver*/&lt;BR /&gt; UART_Config.sctrl2settings.bits.bTe=1; /* Enable Transmitter*/&lt;BR /&gt; UART_Config.u32SysClkHz = 24000000; /* Bus clock in Hz*/&lt;BR /&gt; UART_Config.u32Baudrate = 115200; /* UART baud rate */&lt;/P&gt;&lt;P&gt;UART_Init(UART2,&amp;amp;UART_Config); /*Initialization of UART utilities*/&lt;/P&gt;&lt;P&gt;CONFIG_PIN_AS_GPIO(PTE,PTE7,OUTPUT); /*Config LED0 as output */&lt;/P&gt;&lt;P&gt;printf("\nRunning the FRDM_KEA128_PMC project.\n\r");&lt;/P&gt;&lt;P&gt;/* PMC Initialization */&lt;BR /&gt; PMC_ConfigType PMC_Config={{0}};&lt;/P&gt;&lt;P&gt;PMC_Config.sCtrlstatus.bits.bBandgapEn = 1; /* Enable Bandgap buffer */&lt;BR /&gt; PMC_Config.sCtrlstatus.bits.bLvdStopEn = 0; /* Disable Low-Voltage Detect(LVD) in Stop mode */&lt;BR /&gt; PMC_Config.sCtrlstatus.bits.bLvdRstEn = 0; /* LVD events do not generate hardware resets. */&lt;/P&gt;&lt;P&gt;PMC_Init(PMC, &amp;amp;PMC_Config); /* Initialization of PMC */&lt;BR /&gt; PMC_DisableLVWInterrupt(PMC); /* Disable hardware interrupt requests for LVWF */&lt;BR /&gt; u8Ch = PMC_GetLVWFlag(PMC); /* Get the lvw warning flag */&lt;/P&gt;&lt;P&gt;/* Initialize RTC */&lt;BR /&gt; RTC_ConfigType RTC_Config={0};&lt;/P&gt;&lt;P&gt;RTC_Config.u16ModuloValue = 3;&lt;BR /&gt; RTC_Config.bInterruptEn = 1; /* Enable interrupt */&lt;BR /&gt; RTC_Config.bClockSource = RTC_CLKSRC_1KHZ;/* Clock source is 1khz */&lt;BR /&gt; RTC_Config.bClockPrescaler = RTC_CLK_PRESCALER_1000; /* Prescaler is 100 */&lt;BR /&gt; RTC_SetCallback(RTC_Task);&lt;BR /&gt; RTC_Init(&amp;amp;RTC_Config); /* Initialization of RTC */&lt;/P&gt;&lt;P&gt;printf("\nEnter stop mode and will be woken up in about 4s by RTC IRQ.\n\r");&lt;BR /&gt; &lt;EM&gt;&lt;STRONG&gt;PMC_SetMode(PMC,PmcModeStop3); /* Enable PMC in stop mode */&lt;/STRONG&gt;&lt;/EM&gt;&lt;BR /&gt; printf("\nWake up now.\n");&lt;/P&gt;&lt;P&gt;while(1);&lt;/P&gt;&lt;P&gt;return 0;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the J15 jumper circuit(I also attached the complete schematic for your reference) for MCU current measurement on&amp;nbsp;&lt;STRONG&gt;FRDM-KEAZ128Q80:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="189998_189998.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/123100i6CC2ADE8D9337DA8/image-size/large?v=v2&amp;amp;px=999" role="button" title="189998_189998.png" alt="189998_189998.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_5.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/26807iB5A75C897A47A069/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_5.png" alt="pastedImage_5.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I get the STOP mode current parameters from KEAZ128 datasheet(&lt;A _jive_internal="true" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.nxp.com%2Fdocs%2Fen%2Fdata-sheet%2FS9KEA128P80M48SF0.pdf" rel="nofollow" style="color: #3d9ce7; text-decoration: underline;" target="_blank"&gt;&lt;STRONG style="font-weight: bold;"&gt;S9KEA128P80M48SF0, KEA128 Sub-Family Data Sheet - Data Sheet &lt;/STRONG&gt;&lt;/A&gt;&lt;SUP style="font-size: 12px;"&gt;(REV 4)&lt;/SUP&gt;)as below:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="189999_189999.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/123101i7A063C84B49E5217/image-size/large?v=v2&amp;amp;px=999" role="button" title="189999_189999.png" alt="189999_189999.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_9.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/26847i9592C84A0603B7C1/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_9.png" alt="pastedImage_9.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;its typical STOP mode current should be 2 uA, so my test result has big gap.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you help to check it? &amp;nbsp;How can we achieve the expected low power static current, &amp;nbsp;and it's better to made a demo project for me to get the 2uA static current in STOP mode if possible.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks very much~!&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regard,&lt;/P&gt;&lt;P&gt;Enwei Hu(胡恩伟)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Original Attachment has been moved to: &lt;A _jive_internal="true" href="https://community.nxp.com/docs/DOC-337611"&gt;FRDM_KEA128_PMC.zip&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jul 2017 01:08:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683034#M42039</guid>
      <dc:creator>enwei</dc:creator>
      <dc:date>2017-07-26T01:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: how to achieve the KEA128 lowest static current in STOP mode</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683035#M42040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can anyone help on this issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;Best regard,&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;Enwei Hu(胡恩伟)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jul 2017 23:48:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683035#M42040</guid>
      <dc:creator>enwei</dc:creator>
      <dc:date>2017-07-26T23:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: how to achieve the KEA128 lowest static current in STOP mode</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683036#M42041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello E.W. Hu,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; I just take this question.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Now, please cut the wire between J106, also cut the wire between J8, leave J106 and J8 open, then test it again, the power consumption should be in the range which is defined by the datasheet&amp;nbsp; .&lt;/P&gt;&lt;P&gt;&amp;nbsp; Please test it again on your side with me advice.&lt;/P&gt;&lt;P&gt;&amp;nbsp; If you still have question, please kindly let me know!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Kerry&lt;/P&gt;&lt;P&gt;&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>Mon, 31 Jul 2017 09:03:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683036#M42041</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2017-07-31T09:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: how to achieve the KEA128 lowest static current in STOP mode</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683037#M42042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Sirs,&lt;/P&gt;&lt;P&gt;Do you have KEA128&amp;nbsp;&lt;SPAN lang="en"&gt;&lt;SPAN&gt;Temperature VS Current&amp;nbsp;curve in&lt;/SPAN&gt;&lt;/SPAN&gt;&amp;nbsp;STOP mode?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Nov 2017 04:01:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683037#M42042</guid>
      <dc:creator>allenyu</dc:creator>
      <dc:date>2017-11-23T04:01:52Z</dc:date>
    </item>
    <item>
      <title>Re: how to achieve the KEA128 lowest static current in STOP mode</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683038#M42043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi kerry&lt;/P&gt;&lt;P&gt;I follow your tips but found no j106 in schematic， Could u explain why u do that？&lt;/P&gt;&lt;P&gt;What cause the current go high？&lt;/P&gt;&lt;P&gt;Our customer are evaluating this chip ，Could u upload a project whic can justify the 2uA .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Nicky&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Apr 2018 02:29:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683038#M42043</guid>
      <dc:creator>chenni</dc:creator>
      <dc:date>2018-04-03T02:29:50Z</dc:date>
    </item>
    <item>
      <title>Re: how to achieve the KEA128 lowest static current in STOP mode</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683039#M42044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi chen ni,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; What the schematic you are referring, I talked about the FRDM-KEA128, what the board you are using?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; You can create a new question post by yourself, then we will reply you directly in your own question post.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Please tell me your board, then I will test it on my side.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Kerry&lt;/P&gt;&lt;P&gt;&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>Tue, 03 Apr 2018 09:05:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683039#M42044</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2018-04-03T09:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: how to achieve the KEA128 lowest static current in STOP mode</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683040#M42045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi kerry ,&lt;/P&gt;&lt;P&gt;the same puzzle &amp;nbsp;that&amp;nbsp;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt; E.W. Hu encountered .&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;i am also testing the&amp;nbsp;&lt;SPAN&gt; FRDM-KEA128 stop current .&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&lt;SPAN&gt;so i follow this post ,could u explain your solution more&amp;nbsp;explicitly.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&lt;SPAN&gt;thank for your attraction！&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Nicky&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2018 02:33:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683040#M42045</guid>
      <dc:creator>chenni</dc:creator>
      <dc:date>2018-04-04T02:33:36Z</dc:date>
    </item>
    <item>
      <title>Re: how to achieve the KEA128 lowest static current in STOP mode</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683041#M42046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nicky,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; I will test the FRDM-KEA128 on my side, then tell you the details in the last week(Because of China Tomb-sweeping Day), please wait patiently.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Kerry&lt;/P&gt;&lt;P&gt;&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>Wed, 04 Apr 2018 09:25:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683041#M42046</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2018-04-04T09:25:22Z</dc:date>
    </item>
    <item>
      <title>Re: how to achieve the KEA128 lowest static current in STOP mode</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683042#M42047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;dear kerry&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;after China Tomb-sweeping Day &amp;nbsp;,my questions &amp;nbsp;still linger,please 麻梨儿的help me see see&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;3xs&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;nicky&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Apr 2018 01:40:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683042#M42047</guid>
      <dc:creator>chenni</dc:creator>
      <dc:date>2018-04-08T01:40:05Z</dc:date>
    </item>
    <item>
      <title>Re: how to achieve the KEA128 lowest static current in STOP mode</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683043#M42048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nicky,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Checking it right now!&lt;/P&gt;&lt;P&gt;&amp;nbsp; I find the VDD_MCU still have about 2.5V after I remove the R117,R18.R24,R54, cut the wire between J8, J106.&lt;/P&gt;&lt;P&gt;&amp;nbsp; I think this is the reason which caused the wrong power consumption, so I still need time to find why VDD_MCU have 2.5V after I disconnect it from the VDD.&lt;/P&gt;&lt;P&gt;&amp;nbsp;I need to remove more external resistor, if you have time, you also can try it on your side, or wait patiently, any updated information from my side, I will let you know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Kerry&lt;/P&gt;&lt;P&gt;&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>Mon, 09 Apr 2018 03:19:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683043#M42048</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2018-04-09T03:19:40Z</dc:date>
    </item>
    <item>
      <title>Re: how to achieve the KEA128 lowest static current in STOP mode</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683044#M42049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dear kerry&lt;/P&gt;&lt;P&gt;i am very very happy to notic that u still focus my puzzle，as u mentioned，it is hard to test the current on the frdm-kea128 ，so i transfer to trk-KEA128 kits， so i recommend u test this board &amp;nbsp;.&lt;/P&gt;&lt;P&gt;thank u so much for u professional reply！&lt;/P&gt;&lt;P&gt;Nicky&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2018 04:38:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683044#M42049</guid>
      <dc:creator>chenni</dc:creator>
      <dc:date>2018-04-09T04:38:09Z</dc:date>
    </item>
    <item>
      <title>Re: how to achieve the KEA128 lowest static current in STOP mode</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683045#M42050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello nicky,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Please check this test result:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="low power.jpg"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/40iB01B664894D13060/image-size/large?v=v2&amp;amp;px=999" role="button" title="low power.jpg" alt="low power.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;1.6uA in stop mode, meet the datasheet's data.&lt;/P&gt;&lt;P&gt;Please follow me to realize it.&lt;/P&gt;&lt;P&gt;1. Board hardware configuration.&lt;/P&gt;&lt;P&gt;Remove the R117,cut the wire between J8, J106,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2, Download my attached project, which enter the stop mode.&lt;/P&gt;&lt;P&gt;&amp;nbsp;At first, you need to use jumper to connect J8 and J106, just to download the code.&lt;/P&gt;&lt;P&gt;After you download the code, please remove the jumper between J8 and J106, this is very important.&lt;/P&gt;&lt;P&gt;My attached code is the S32DS project, it's modified from the FRDM-KEA128 driver code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. After download the code, please power off the board, then power on it again, this is very important.&lt;/P&gt;&lt;P&gt;After the above 3 points, you can test the power consumption in J15,&amp;nbsp; you will find the current consumption is 1.6uA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check it on your side, I already make it work.&lt;/P&gt;&lt;P&gt;Wish it helps you!&lt;/P&gt;&lt;P&gt;If you still have question about it, please kindly let me know!&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;BR /&gt;Have a great day,&lt;BR /&gt;Kerry&lt;/P&gt;&lt;P&gt;&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>Mon, 09 Apr 2018 06:01:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683045#M42050</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2018-04-09T06:01:46Z</dc:date>
    </item>
    <item>
      <title>Re: how to achieve the KEA128 lowest static current in STOP mode</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683046#M42051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Allen,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Unfortunately, we still don't have that the curve, if you have interest, you can test it on your side directly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Kerry&lt;/P&gt;&lt;P&gt;&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>Mon, 09 Apr 2018 06:52:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683046#M42051</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2018-04-09T06:52:35Z</dc:date>
    </item>
    <item>
      <title>Re: how to achieve the KEA128 lowest static current in STOP mode</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683047#M42052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nicky,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Thank you for your updated information.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; FRDM-KEA128 is not complicated, just need to do the hardware configuration, and after downloading the code to the chip, you need to repower on it, anyway, TRK-KEA128 is really more simple to test :smileyhappy:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Wish it helps you!&lt;/P&gt;&lt;P&gt;If you have the new question in the future, welcome to create you own question post!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Kerry&lt;/P&gt;&lt;P&gt;&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>Mon, 09 Apr 2018 07:43:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683047#M42052</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2018-04-09T07:43:31Z</dc:date>
    </item>
    <item>
      <title>Re: how to achieve the KEA128 lowest static current in STOP mode</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683048#M42053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dear kerry&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;thank u so much for your&amp;nbsp;spectacular solution. your kindness &amp;nbsp;just revolution my thought of nxp assitance staff，i thought u folks are shringking somewhere and doing some ping-pong game.But now u change my mind ，and by the way &amp;nbsp;i saw a trk- board show on your desk ，could u do me a favour show me how to realise it in that platform . i know my request is little ..... like hand and hands tutorial，whatever ，it is up to u，i already confirm the data.&lt;/P&gt;&lt;P&gt;best regards&lt;/P&gt;&lt;P&gt;nicky&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Apr 2018 01:19:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683048#M42053</guid>
      <dc:creator>chenni</dc:creator>
      <dc:date>2018-04-10T01:19:35Z</dc:date>
    </item>
    <item>
      <title>Re: how to achieve the KEA128 lowest static current in STOP mode</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683049#M42054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nicky,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Thanks a lot for your understanding, actually, each day, we have a lot of cases and customers need to do the test, so normally we will give you some advice at first, if you still can't realize it, we will put your test request in the queue, then test one by one, that will need time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; About the TRK-KEA128, yes, I already test it when I do the FRDM-KEA128 STOP test yesterday,&amp;nbsp; TRK-KEA128 (REV D)is very simple, find J17, remove R76, put your current meter in J17, then download my code(then same as the FRDM-KEA128), power off the board, and power on it again, you will get the according current consumption, you can test it on your side.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Any updated question, just let me know!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Kerry&lt;/P&gt;&lt;P&gt;&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>Tue, 10 Apr 2018 05:09:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683049#M42054</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2018-04-10T05:09:55Z</dc:date>
    </item>
    <item>
      <title>Re: how to achieve the KEA128 lowest static current in STOP mode</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683050#M42055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi nicky,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Just as one old chinese saying goes"送佛送到西"， please check my TRK-KEA128 test result, method can be find in the last reply.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="TRK-KEA128.jpg"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/670i43BED6C26D1597EF/image-size/large?v=v2&amp;amp;px=999" role="button" title="TRK-KEA128.jpg" alt="TRK-KEA128.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Wish it helps you!&lt;/P&gt;&lt;P&gt;Next time, if you have question, please create the new case, don't follow other customer's case, we will help you in your post.&lt;/P&gt;&lt;P&gt;If you still want me to reply you, you can @ me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Kerry&lt;/P&gt;&lt;P&gt;&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>Tue, 10 Apr 2018 05:26:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683050#M42055</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2018-04-10T05:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: how to achieve the KEA128 lowest static current in STOP mode</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683051#M42056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dear kerry&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank u so much for your solid assistance.believe me the&amp;nbsp;test u made today will contribute million dollar business in &lt;SPAN style="color: #333333; background-color: #ffffff; font-size: 13px;"&gt;automobile industry.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; background-color: #ffffff; font-size: 13px;"&gt;please allow me to call u mcu master .&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; background-color: #ffffff; font-size: 13px;"&gt;have a nice day ！&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; background-color: #ffffff; font-size: 13px;"&gt;nicky&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Apr 2018 06:48:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683051#M42056</guid>
      <dc:creator>chenni</dc:creator>
      <dc:date>2018-04-10T06:48:13Z</dc:date>
    </item>
    <item>
      <title>Re: how to achieve the KEA128 lowest static current in STOP mode</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683052#M42057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I use&amp;nbsp;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;TRK-KEA128 REV D，Remove R76，measure result is&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&amp;nbsp;about 250uA,why?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="111.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/40871i8FB0B62298CF884A/image-size/large?v=v2&amp;amp;px=999" role="button" title="111.png" alt="111.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2018 09:09:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683052#M42057</guid>
      <dc:creator>ruijuzhang</dc:creator>
      <dc:date>2018-05-14T09:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: how to achieve the KEA128 lowest static current in STOP mode</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683053#M42058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ruiju,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Use my test code in the above reply, download the code, then power off the board, power on it again, then test the power consumption.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I also have tested the TRK board, the power consumption is correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Kerry&lt;/P&gt;&lt;P&gt;&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>Tue, 15 May 2018 02:15:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/how-to-achieve-the-KEA128-lowest-static-current-in-STOP-mode/m-p/683053#M42058</guid>
      <dc:creator>kerryzhou</dc:creator>
      <dc:date>2018-05-15T02:15:54Z</dc:date>
    </item>
  </channel>
</rss>

