<?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: lpc4088 RTC stucked in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/lpc4088-RTC-stucked/m-p/1222588#M43762</link>
    <description>&lt;P&gt;Hi, just solved thanks.&lt;/P&gt;&lt;P&gt;bad rtc crystal, I think something goes wrong when we fix them to the board (we fold the crystal).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 28 Jan 2021 10:09:30 GMT</pubDate>
    <dc:creator>alesandro_piazza</dc:creator>
    <dc:date>2021-01-28T10:09:30Z</dc:date>
    <item>
      <title>lpc4088 RTC stucked</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/lpc4088-RTC-stucked/m-p/1217972#M43656</link>
      <description>&lt;P&gt;Does anyone know the meaning of bit 0x00000020 fo CCR register? sometimes CCR goes to 0x31 (instead of 0x11) and RTC gets stucked... ther is no way to reset it (battery disconnection, power supply reset, uc reprogramming). Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jan 2021 14:13:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/lpc4088-RTC-stucked/m-p/1217972#M43656</guid>
      <dc:creator>alesandro_piazza</dc:creator>
      <dc:date>2021-01-20T14:13:51Z</dc:date>
    </item>
    <item>
      <title>Re: lpc4088 RTC stucked</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/lpc4088-RTC-stucked/m-p/1218467#M43672</link>
      <description>&lt;P&gt;Hello ,&lt;/P&gt;
&lt;P&gt;The bit 5 of CCR is no meaning, ignore it .&lt;/P&gt;
&lt;P&gt;And pay attention all NC bits in this register CCR should be initialized when the RTC is first turned on.&lt;/P&gt;
&lt;P&gt;Also there is RTC demo under LPCopen, recommend you have a look, download from:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.nxp.com/design/microcontrollers-developer-resources/lpcopen-libraries-and-examples/lpcopen-software-development-platform-lpc40xx:LPCOPEN-SOFTWARE-FOR-LPC40XX" target="_blank"&gt;https://www.nxp.com/design/microcontrollers-developer-resources/lpcopen-libraries-and-examples/lpcopen-software-development-platform-lpc40xx:LPCOPEN-SOFTWARE-FOR-LPC40XX&lt;/A&gt; &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;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Alice&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 06:40:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/lpc4088-RTC-stucked/m-p/1218467#M43672</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2021-01-22T06:40:03Z</dc:date>
    </item>
    <item>
      <title>Re: lpc4088 RTC stucked</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/lpc4088-RTC-stucked/m-p/1218866#M43688</link>
      <description>&lt;P&gt;Hi, I'm using this sequence:&lt;/P&gt;&lt;P&gt;Chip_RTC_Init(LPC_RTC);&lt;BR /&gt;//&lt;BR /&gt;FullTime.time[RTC_TIMETYPE_SECOND] = 0;&lt;BR /&gt;FullTime.time[RTC_TIMETYPE_MINUTE] = 0;&lt;BR /&gt;FullTime.time[RTC_TIMETYPE_HOUR] = 0;&lt;BR /&gt;FullTime.time[RTC_TIMETYPE_DAYOFMONTH] = 20;&lt;BR /&gt;FullTime.time[RTC_TIMETYPE_DAYOFWEEK] = 3;&lt;BR /&gt;FullTime.time[RTC_TIMETYPE_DAYOFYEAR] = 20;&lt;BR /&gt;FullTime.time[RTC_TIMETYPE_MONTH] = 01;&lt;BR /&gt;FullTime.time[RTC_TIMETYPE_YEAR] = 2021;&lt;BR /&gt;Chip_RTC_SetFullTime(LPC_RTC, &amp;amp;FullTime);&lt;/P&gt;&lt;P&gt;/* Enable rtc (starts increase the tick counter and second counter register) */&lt;BR /&gt;Chip_RTC_Enable(LPC_RTC, ENABLE);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;void Chip_RTC_Init(LPC_RTC_T *pRTC)&lt;BR /&gt;{&lt;BR /&gt;Chip_Clock_EnablePeriphClock(SYSCTL_CLOCK_RTC);&lt;/P&gt;&lt;P&gt;/* Disable RTC */&lt;BR /&gt;Chip_RTC_Enable(pRTC, DISABLE);&lt;/P&gt;&lt;P&gt;/* Disable Calibration */&lt;BR /&gt;Chip_RTC_CalibCounterCmd(pRTC, DISABLE);&lt;/P&gt;&lt;P&gt;/* Reset RTC Clock */&lt;BR /&gt;Chip_RTC_ResetClockTickCounter(pRTC);&lt;/P&gt;&lt;P&gt;/* Clear counter increment and alarm interrupt */&lt;BR /&gt;pRTC-&amp;gt;ILR = RTC_IRL_RTCCIF | RTC_IRL_RTCALF;&lt;BR /&gt;while (pRTC-&amp;gt;ILR != 0) {}&lt;/P&gt;&lt;P&gt;/* Clear all register to be default */&lt;BR /&gt;pRTC-&amp;gt;CIIR = 0x00;&lt;BR /&gt;pRTC-&amp;gt;AMR = 0xFF;&lt;BR /&gt;pRTC-&amp;gt;CALIBRATION = 0x00;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have ten boards working properly, this same card worked fine before it was reprogrammed. Even if I uploaded old FW (using built in UART bootloader) there is no way to make RTC to count again.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jan 2021 13:49:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/lpc4088-RTC-stucked/m-p/1218866#M43688</guid>
      <dc:creator>alesandro_piazza</dc:creator>
      <dc:date>2021-01-21T13:49:15Z</dc:date>
    </item>
    <item>
      <title>Re: lpc4088 RTC stucked</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/lpc4088-RTC-stucked/m-p/1218871#M43691</link>
      <description>&lt;P&gt;I cannot find any support for LPC4088 under SDK&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jan 2021 13:57:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/lpc4088-RTC-stucked/m-p/1218871#M43691</guid>
      <dc:creator>alesandro_piazza</dc:creator>
      <dc:date>2021-01-21T13:57:56Z</dc:date>
    </item>
    <item>
      <title>Re: lpc4088 RTC stucked</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/lpc4088-RTC-stucked/m-p/1219372#M43703</link>
      <description>&lt;P&gt;Hello ,&lt;/P&gt;
&lt;P&gt;Sorry, under LPCopen, there is RTC demo for LPC4088:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.nxp.com/design/microcontrollers-developer-resources/lpcopen-libraries-and-examples/lpcopen-software-development-platform-lpc40xx:LPCOPEN-SOFTWARE-FOR-LPC40XX" target="_blank"&gt;https://www.nxp.com/design/microcontrollers-developer-resources/lpcopen-libraries-and-examples/lpcopen-software-development-platform-lpc40xx:LPCOPEN-SOFTWARE-FOR-LPC40XX&lt;/A&gt;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Alice_Yang_0-1611297037328.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/135534i53B2565EFD3F9E97/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Alice_Yang_0-1611297037328.png" alt="Alice_Yang_0-1611297037328.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Alice&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 06:30:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/lpc4088-RTC-stucked/m-p/1219372#M43703</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2021-01-22T06:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: lpc4088 RTC stucked</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/lpc4088-RTC-stucked/m-p/1219437#M43706</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;I've just tried the demo code... same behaviour, rtc stucked.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 07:55:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/lpc4088-RTC-stucked/m-p/1219437#M43706</guid>
      <dc:creator>alesandro_piazza</dc:creator>
      <dc:date>2021-01-22T07:55:37Z</dc:date>
    </item>
    <item>
      <title>Re: lpc4088 RTC stucked</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/lpc4088-RTC-stucked/m-p/1220217#M43726</link>
      <description>&lt;P&gt;Hello, &lt;/P&gt;
&lt;P&gt;What about the detail appearance of stuck?&lt;!--StartFragment --&gt;&lt;/P&gt;
&lt;DIV id="tinyMceEditorAlice_Yang_0" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2021 06:19:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/lpc4088-RTC-stucked/m-p/1220217#M43726</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2021-01-25T06:19:48Z</dc:date>
    </item>
    <item>
      <title>Re: lpc4088 RTC stucked</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/lpc4088-RTC-stucked/m-p/1222588#M43762</link>
      <description>&lt;P&gt;Hi, just solved thanks.&lt;/P&gt;&lt;P&gt;bad rtc crystal, I think something goes wrong when we fix them to the board (we fold the crystal).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jan 2021 10:09:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/lpc4088-RTC-stucked/m-p/1222588#M43762</guid>
      <dc:creator>alesandro_piazza</dc:creator>
      <dc:date>2021-01-28T10:09:30Z</dc:date>
    </item>
  </channel>
</rss>

