<?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: LPC 4088 RTC in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-4088-RTC/m-p/807762#M32437</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&amp;nbsp;&lt;A _jive_internal="true" data-content-finding="Community" data-userid="317982" data-username="chaitanyakulkarni" href="https://community.nxp.com/people/chaitanyakulkarni" rel="noopener noreferrer" target="_blank"&gt;chaitanya Kulkarni&lt;/A&gt;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If everything is ok in the hardware then the problem is that you are not initializing the RTC again when you disconnect the system supply and Vbat. I took the the example periph_rtc of the LPCOpen mentioned before (&lt;A data-content-finding="Community" href="https://community.nxp.com/external-link.jspa?url=https%3A%2F%2Fwww.nxp.com%2Fsupport%2Fdeveloper-resources%2Fsoftware-development-tools%2Flpc-developer-resources-%2Flpcopen-libraries-and-examples%2Flpcopen-software-development-platform-lpc40xx%3ALPCOPEN-SOFTWARE-FOR-LPC40XX" rel="noopener noreferrer" target="_blank"&gt;LPCOpen Software for LPC40XX|NXP&lt;/A&gt;).&lt;/P&gt;&lt;P&gt;I modified the example to initialize the RTC and set the default hour and date when necessary. To know when I have to initialize the RTC I checked the&amp;nbsp;bit '1' in the CCR register (Clock Control Register) using software. Please see image below, to understand why the bit 1 in the register CCR.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper" image-alt="pastedImage_2.jpg"&gt;&lt;IMG alt="pastedImage_2.jpg" src="https://community.nxp.com/t5/image/serverpage/image-id/62847i6E896C5425DD97EE/image-size/large?v=v2&amp;amp;px=999" title="pastedImage_2.jpg" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;In the example, I added an if condition to check if the RTC&amp;nbsp; need to be initialized then I call the function RTC_INIT and I set the default date and hour. If the RTC is enabled then I do nothing and continue with the program normally to avoid loosing the count of the RTC.&amp;nbsp;&lt;/P&gt;&lt;PRE class="language-c line-numbers"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;LPC_RTC&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;CCR &lt;SPAN class="operator token"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;!=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class="token function"&gt;Chip_RTC_Init&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;LPC_RTC&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class="comment token"&gt;/* Set current time for RTC 2:00:00PM, 2012-10-05 */&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class="token function"&gt;Chip_RTC_SetFullTime&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;LPC_RTC&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;amp;&lt;/SPAN&gt;FullTime&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;In the next image you can see the results of running the program.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper" image-alt="pastedImage_3.jpg"&gt;&lt;IMG alt="pastedImage_3.jpg" src="https://community.nxp.com/t5/image/serverpage/image-id/62935iADAFFD1AAD510AE8/image-size/large?v=v2&amp;amp;px=999" title="pastedImage_3.jpg" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;&lt;P&gt;Victor.&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Nov 2020 14:11:41 GMT</pubDate>
    <dc:creator>victorjimenez</dc:creator>
    <dc:date>2020-11-02T14:11:41Z</dc:date>
    <item>
      <title>LPC 4088 RTC</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-4088-RTC/m-p/807756#M32431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am Using LPC 4088. In which i have using inbuild RTC.The Code Working Properly but after a Removing of VBat. for testing i have Applied VBat Again but&amp;nbsp;that&amp;nbsp;Time RTC&amp;nbsp; Not&amp;nbsp; Working.on Same Code. Even I have reinnetialised RTC After this.So please send me Regarding Changes so that&amp;nbsp; we Can Fixed this Problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Aug 2018 10:50:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-4088-RTC/m-p/807756#M32431</guid>
      <dc:creator>chaitanyakulkar</dc:creator>
      <dc:date>2018-08-01T10:50:05Z</dc:date>
    </item>
    <item>
      <title>Re: LPC 4088 RTC</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-4088-RTC/m-p/807757#M32432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&amp;nbsp;&lt;A _jive_internal="true" class="" data-content-finding="Community" data-userid="317982" data-username="chaitanyakulkarni" href="https://community.nxp.com/people/chaitanyakulkarni"&gt;chaitanya Kulkarni&lt;/A&gt;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know if I understood you correct. When you connect VBAT again the RTC doesn't work at all anymore until you make a reset? Are you using any development board or a custom board?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Victor.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2018 21:24:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-4088-RTC/m-p/807757#M32432</guid>
      <dc:creator>victorjimenez</dc:creator>
      <dc:date>2018-08-02T21:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: LPC 4088 RTC</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-4088-RTC/m-p/807758#M32433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Hello Victor,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;We are using Custom board and Software Sample code is "LPC Embedded Artist Code".Code is not working After Reset or even after a Reprogram of system still RTC is Not Working.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2018 08:49:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-4088-RTC/m-p/807758#M32433</guid>
      <dc:creator>chaitanyakulkar</dc:creator>
      <dc:date>2018-08-08T08:49:18Z</dc:date>
    </item>
    <item>
      <title>Re: LPC 4088 RTC</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-4088-RTC/m-p/807759#M32434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&amp;nbsp;&lt;A _jive_internal="true" data-containerid="-1" data-containertype="-1" data-content-finding="Community" data-objectid="317982" data-objecttype="3" href="https://community.nxp.com/people/chaitanyakulkarni"&gt;chaitanya Kulkarni&lt;/A&gt;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for&amp;nbsp; the reply and for clarifying the information. Are you using the code that is available in the following page:&amp;nbsp;&lt;A class="link-titled" href="https://www.nxp.com/support/developer-resources/software-development-tools/lpc-developer-resources-/lpcopen-libraries-and-examples/lpcopen-software-development-platform-lpc40xx:LPCOPEN-SOFTWARE-FOR-LPC40XX" title="https://www.nxp.com/support/developer-resources/software-development-tools/lpc-developer-resources-/lpcopen-libraries-and-examples/lpcopen-software-development-platform-lpc40xx:LPCOPEN-SOFTWARE-FOR-LPC40XX"&gt;LPCOpen Software for LPC40XX|NXP&lt;/A&gt;&amp;nbsp;?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Since you are using a custom board I will need to take a look into the schematics to rule out hardware problems. A good idea will be to take a look into the schematics of the&amp;nbsp;&lt;A class="link-titled" href="https://www.nxp.com/products/processors-and-microcontrollers/arm-based-processors-and-mcus/lpc-cortex-m-mcus/lpc4000-cortex-m4/lpc4088-experiment-base-board:OM13079" title="https://www.nxp.com/products/processors-and-microcontrollers/arm-based-processors-and-mcus/lpc-cortex-m-mcus/lpc4000-cortex-m4/lpc4088-experiment-base-board:OM13079"&gt;LPC4088 Experiment Base Board|NXP&lt;/A&gt;&amp;nbsp;&amp;nbsp;to use this as a reference to see if&amp;nbsp; everything looks good in your schematics.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Victor.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2018 15:14:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-4088-RTC/m-p/807759#M32434</guid>
      <dc:creator>victorjimenez</dc:creator>
      <dc:date>2018-08-09T15:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: LPC 4088 RTC</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-4088-RTC/m-p/807760#M32435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Hello Victor,&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;We are already Verified our Schematic&amp;nbsp;with reference&amp;nbsp;to LPC4088 Experiment&amp;nbsp;Board (Embedded Artist).We Observed that if system is on and if you remove battery still Time Count Incremented. Before&amp;nbsp;Switched off if we attached battery then still after a resetting system RTC Returns Correct Value. But In This case if System is switched off and you remove the Battery for some time and you still installed a battery before you switched On the System.You switched On System After this Then RTC Value Get Resets&amp;nbsp;&amp;nbsp;(That's OK) but Value is Not getting Incremented(That's the Main Problem )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2018 09:22:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-4088-RTC/m-p/807760#M32435</guid>
      <dc:creator>chaitanyakulkar</dc:creator>
      <dc:date>2018-08-10T09:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: LPC 4088 RTC</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-4088-RTC/m-p/807761#M32436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Victor,&lt;/P&gt;&lt;P&gt;This Issue is Purely based on Software.As RTC Module has Not Getting Supply From VBat and System Supply,RTC SFRs resets Their Value and SFRs get Froze. After Supply Provided to it. RTC will Not Functions Even After Reprogram its.So Problem is to resets all SFR and Re-initialization of RTC.I have Not Getting Code regarding this So Please Reply ASAP Regarding Changes in Code.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanking You&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Aug 2018 08:47:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-4088-RTC/m-p/807761#M32436</guid>
      <dc:creator>chaitanyakulkar</dc:creator>
      <dc:date>2018-08-12T08:47:38Z</dc:date>
    </item>
    <item>
      <title>Re: LPC 4088 RTC</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-4088-RTC/m-p/807762#M32437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&amp;nbsp;&lt;A _jive_internal="true" data-content-finding="Community" data-userid="317982" data-username="chaitanyakulkarni" href="https://community.nxp.com/people/chaitanyakulkarni" rel="noopener noreferrer" target="_blank"&gt;chaitanya Kulkarni&lt;/A&gt;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If everything is ok in the hardware then the problem is that you are not initializing the RTC again when you disconnect the system supply and Vbat. I took the the example periph_rtc of the LPCOpen mentioned before (&lt;A data-content-finding="Community" href="https://community.nxp.com/external-link.jspa?url=https%3A%2F%2Fwww.nxp.com%2Fsupport%2Fdeveloper-resources%2Fsoftware-development-tools%2Flpc-developer-resources-%2Flpcopen-libraries-and-examples%2Flpcopen-software-development-platform-lpc40xx%3ALPCOPEN-SOFTWARE-FOR-LPC40XX" rel="noopener noreferrer" target="_blank"&gt;LPCOpen Software for LPC40XX|NXP&lt;/A&gt;).&lt;/P&gt;&lt;P&gt;I modified the example to initialize the RTC and set the default hour and date when necessary. To know when I have to initialize the RTC I checked the&amp;nbsp;bit '1' in the CCR register (Clock Control Register) using software. Please see image below, to understand why the bit 1 in the register CCR.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper" image-alt="pastedImage_2.jpg"&gt;&lt;IMG alt="pastedImage_2.jpg" src="https://community.nxp.com/t5/image/serverpage/image-id/62847i6E896C5425DD97EE/image-size/large?v=v2&amp;amp;px=999" title="pastedImage_2.jpg" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;In the example, I added an if condition to check if the RTC&amp;nbsp; need to be initialized then I call the function RTC_INIT and I set the default date and hour. If the RTC is enabled then I do nothing and continue with the program normally to avoid loosing the count of the RTC.&amp;nbsp;&lt;/P&gt;&lt;PRE class="language-c line-numbers"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;LPC_RTC&lt;SPAN class="operator token"&gt;-&amp;gt;&lt;/SPAN&gt;CCR &lt;SPAN class="operator token"&gt;&amp;amp;&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;!=&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class="token function"&gt;Chip_RTC_Init&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;LPC_RTC&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class="comment token"&gt;/* Set current time for RTC 2:00:00PM, 2012-10-05 */&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN class="token function"&gt;Chip_RTC_SetFullTime&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;LPC_RTC&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;amp;&lt;/SPAN&gt;FullTime&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;In the next image you can see the results of running the program.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper" image-alt="pastedImage_3.jpg"&gt;&lt;IMG alt="pastedImage_3.jpg" src="https://community.nxp.com/t5/image/serverpage/image-id/62935iADAFFD1AAD510AE8/image-size/large?v=v2&amp;amp;px=999" title="pastedImage_3.jpg" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;&lt;P&gt;Victor.&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Nov 2020 14:11:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-4088-RTC/m-p/807762#M32437</guid>
      <dc:creator>victorjimenez</dc:creator>
      <dc:date>2020-11-02T14:11:41Z</dc:date>
    </item>
    <item>
      <title>Re: LPC 4088 RTC</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-4088-RTC/m-p/1217979#M43657</link>
      <description>&lt;P&gt;hi chaitanyakulkar!&lt;/P&gt;&lt;P&gt;have you solved?&lt;/P&gt;&lt;P&gt;I have the same problem... RTC get stucked and there is no way to reset it again...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jan 2021 14:26:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-4088-RTC/m-p/1217979#M43657</guid>
      <dc:creator>alesandro_piazza</dc:creator>
      <dc:date>2021-01-20T14:26:49Z</dc:date>
    </item>
    <item>
      <title>problem LPC 4088 RTC stuck  but   CLKEN = 1 is ok (CCR bit 0)</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-4088-RTC/m-p/1962676#M56914</link>
      <description>&lt;P&gt;I have the same probem&amp;nbsp; :&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;with battery inserted&amp;nbsp; sometimes i 'have RTC&amp;nbsp; stuck&amp;nbsp; ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;but&amp;nbsp; the&amp;nbsp; register CCR CLOCKENABLE == 1&amp;nbsp; is ok&amp;nbsp; &amp;nbsp;&amp;nbsp;and data is ok&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is mode to starting RTC withouth remove battery&amp;nbsp; &amp;nbsp; ?&amp;nbsp; i've also insert a code&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/t5/LPC-Microcontrollers/LPC-4088-RTC/td-p/807756" target="_blank"&gt;https://community.nxp.com/t5/LPC-Microcontrollers/LPC-4088-RTC/td-p/807756&lt;/A&gt;&lt;/P&gt;&lt;P&gt;that starting Intit rtc only if&amp;nbsp; CCR bit 0&amp;nbsp; == 0&amp;nbsp; .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now for re-starting RTC i need remove battery ,&amp;nbsp; power off&amp;nbsp; and power on and Init_Rtc&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2024 12:26:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC-4088-RTC/m-p/1962676#M56914</guid>
      <dc:creator>azzurrodante</dc:creator>
      <dc:date>2024-09-26T12:26:26Z</dc:date>
    </item>
  </channel>
</rss>

