<?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>LPCXpresso IDE中的主题 Re: problem with RTC in lpx1769</title>
    <link>https://community.nxp.com/t5/LPCXpresso-IDE/problem-with-RTC-in-lpx1769/m-p/560455#M15871</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by toniojesusde on Wed Jan 19 08:00:36 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks a lot! that solved the problem! I will make sure to dig into the whole code and register definition next time.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Jun 2016 00:53:13 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-16T00:53:13Z</dc:date>
    <item>
      <title>problem with RTC in lpx1769</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/problem-with-RTC-in-lpx1769/m-p/560448#M15864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by toniojesusde on Wed Jan 19 05:02:03 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi, &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am trying to use the RTC (Real time clock) in the LPC1769 xpresso board.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So i develop a little piece of code to try it out:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;//RTC initialization:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[SIZE=2][LEFT]LPC_RTC-&amp;gt;[/SIZE][SIZE=2][COLOR=#0000c0][SIZE=2][COLOR=#0000c0]CCR[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] |= !0x01|0x02;[/SIZE][SIZE=2][COLOR=#3f7f5f][SIZE=2][COLOR=#3f7f5f]//enable RTC clock[/LEFT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2][LEFT]LPC_RTC-&amp;gt;[/SIZE][SIZE=2][COLOR=#0000c0][SIZE=2][COLOR=#0000c0]CCR[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] &amp;amp;= ~0x02;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_RTC-&amp;gt;[/SIZE][SIZE=2][COLOR=#0000c0][SIZE=2][COLOR=#0000c0]DOY[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2]=0;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_RTC-&amp;gt;[/SIZE][SIZE=2][COLOR=#0000c0][SIZE=2][COLOR=#0000c0]HOUR[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2]=0;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_RTC-&amp;gt;[/SIZE][SIZE=2][COLOR=#0000c0][SIZE=2][COLOR=#0000c0]MIN[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2]=0;[/LEFT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_RTC-&amp;gt;[/SIZE][SIZE=2][COLOR=#0000c0][SIZE=2][COLOR=#0000c0]SEC[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2]=0;[/SIZE]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[SIZE=2][/SIZE] &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[SIZE=2]//showing the time:[/SIZE]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[SIZE=2][/SIZE] &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[SIZE=2][SIZE=2][LEFT]debug_printf([/SIZE][SIZE=2][COLOR=#2a00ff][SIZE=2][COLOR=#2a00ff]"RTC : %2.2d:%2.2d:%2.2d:%2.2d\n"[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2], LPC_RTC-&amp;gt;[/SIZE][SIZE=2][COLOR=#0000c0][SIZE=2][COLOR=#0000c0]DOY[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_RTC-&amp;gt;[/SIZE][SIZE=2][COLOR=#0000c0][SIZE=2][COLOR=#0000c0]HOUR[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_RTC-&amp;gt;[/SIZE][SIZE=2][COLOR=#0000c0][SIZE=2][COLOR=#0000c0]MIN[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2],[/LEFT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPC_RTC-&amp;gt;[U]SEC[/U]);&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;When I do this, i get strage numbers in the console. DOY, HOUR, MIN and SEC , all of them increment each second.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;So I end up reading:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[SIZE=2][LEFT]RTC : 0: 0: 0: 0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;RTC : 1: 1: 1: 1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;RTC : 2: 2: 2: 2&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;RTC : 3: 3: 3: 3[/LEFT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have checked all the registers associated to the RTC but all of them seem to be properly configured. Also, I looked at the registers of sec, min, hour, ... in the RTC peripheral registers, and they show the same erratic behaviour. What can be wrong? Some help would be appreciated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks a lot,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Antonio&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[/SIZE] &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[/SIZE][/SIZE]&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 00:53:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/problem-with-RTC-in-lpx1769/m-p/560448#M15864</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T00:53:09Z</dc:date>
    </item>
    <item>
      <title>Re: problem with RTC in lpx1769</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/problem-with-RTC-in-lpx1769/m-p/560449#M15865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by whitecoe on Wed Jan 19 05:15:54 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Googling "RTC site:knowledgebase.nxp.com" shows up a couple of previous forum threads (with example code) on the LPC17 RTC which might help you get up and running...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://"&gt;http://knowledgebase.nxp.com/showthread.php?t=718&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://"&gt;http://knowledgebase.nxp.com/showthread.php?t=682&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;HTH!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 00:53:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/problem-with-RTC-in-lpx1769/m-p/560449#M15865</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T00:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: problem with RTC in lpx1769</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/problem-with-RTC-in-lpx1769/m-p/560450#M15866</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Ex-Zero on Wed Jan 19 05:49:11 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: toniojesusde&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;... &lt;BR /&gt; &lt;BR /&gt;[SIZE=2][SIZE=2]debug_printf([/SIZE]&lt;BR /&gt;[LEFT][SIZE=2][COLOR=#2a00ff][SIZE=2][COLOR=#2a00ff]"RTC : %2.2d:%2.2d:%2.2d:%2.2d\n"[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2], LPC_RTC-&amp;gt;[/SIZE][SIZE=2][COLOR=#0000c0][SIZE=2][COLOR=#0000c0]DOY[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2],[/SIZE][SIZE=2]LPC_RTC-&amp;gt;[/SIZE][SIZE=2][COLOR=#0000c0][SIZE=2][COLOR=#0000c0]HOUR[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2],[/SIZE][SIZE=2]LPC_RTC-&amp;gt;[/SIZE][SIZE=2][COLOR=#0000c0][SIZE=2][COLOR=#0000c0]MIN[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2],[/SIZE][SIZE=2]LPC_RTC-&amp;gt;[U]SEC[/U]);[/SIZE][/LEFT]&lt;BR /&gt;[/SIZE]&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[LEFT]Try something like:[/LEFT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;
[B][SIZE=2][COLOR=#642880][SIZE=2][COLOR=#642880]printf[/COLOR][/SIZE][/COLOR][/SIZE][/B][SIZE=2]([/SIZE][SIZE=2][COLOR=#2a00ff][SIZE=2][COLOR=#2a00ff]"%02d.%02d.%04d %02d:%02d:%02d\n"[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2],LPC_RTC-&amp;gt;[/SIZE][SIZE=2][COLOR=#0000c0][SIZE=2][COLOR=#0000c0]DOM[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2],LPC_RTC-&amp;gt;[/SIZE][SIZE=2][COLOR=#0000c0][SIZE=2][COLOR=#0000c0]MONTH[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2],LPC_RTC-&amp;gt;[/SIZE][SIZE=2][COLOR=#0000c0][SIZE=2][COLOR=#0000c0]YEAR[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2],LPC_RTC-&amp;gt;[/SIZE][SIZE=2][COLOR=#0000c0][SIZE=2][COLOR=#0000c0]HOUR[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2],LPC_RTC-&amp;gt;[/SIZE][SIZE=2][COLOR=#0000c0][SIZE=2][COLOR=#0000c0]MIN[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2],LPC_RTC-&amp;gt;[/SIZE][SIZE=2][COLOR=#0000c0][SIZE=2][COLOR=#0000c0]SEC[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2]);[/SIZE]
&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;RTC isn't very problematic at all. It's running or it's not running. As you described values are changing every second, your RTC is running and you should be able to read RTC values direct via debugger in Peripherals View. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Your printf format string (%2.2d) is trying to output an integer with 2 decimal places, so that's wrong.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;To output a fixed-length field with '0' instead of space, use '%02d'.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 00:53:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/problem-with-RTC-in-lpx1769/m-p/560450#M15866</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T00:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: problem with RTC in lpx1769</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/problem-with-RTC-in-lpx1769/m-p/560451#M15867</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by toniojesusde on Wed Jan 19 06:07:53 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;[SIZE=2][LEFT]I tried running that code, still got the werid results, have a look:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Loop number : 0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;02.04.2646 02:02:02&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Loop number : 1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;03.05.2647 03:03:03&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Loop number : 2&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;05.07.2649 05:05:05&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Loop number : 3&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;07.09.2651 07:07:07&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Loop number : 4&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;09.11.2653 09:09:09&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Loop number : 5&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;10.28.2654 10:10:10&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Loop number : 6&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;12.02.2656 12:12:12&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Loop number : 7&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;14.04.2658 14:14:14&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Loop number : 8&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;16.06.2660 16:16:16&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Loop number : 9[/LEFT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;17.07.2661 17:17:17&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[/SIZE]&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 00:53:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/problem-with-RTC-in-lpx1769/m-p/560451#M15867</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T00:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: problem with RTC in lpx1769</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/problem-with-RTC-in-lpx1769/m-p/560452#M15868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Ex-Zero on Wed Jan 19 06:23:34 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Try to write correct date / time to RTC:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;
[LEFT]LPC_RTC-&amp;gt;DOM = 19;
LPC_RTC-&amp;gt;MONTH = 1;
LPC_RTC-&amp;gt;YEAR = 2011;[/LEFT]
LPC_RTC-&amp;gt;HOUR = 14;
[LEFT]LPC_RTC-&amp;gt;MIN = 19;[/LEFT]
LPC_RTC-&amp;gt;SEC = 1;&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Read your RTC data via debugger. Are they also wrong?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Use a correct RTC_init like&lt;/SPAN&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;
void RTC_init(void) //init RTC
[LEFT]{
PCONP |= (1&amp;lt;&amp;lt;9); //power on RTC
if(PWRCTRL &amp;amp; (1&amp;lt;&amp;lt;4)) //stopped? 
{
PWRCTRL |= (1&amp;lt;&amp;lt;4); //clear bit by writing 1[/LEFT]
}
CCR =0; //stop RTC
AMR =0; //no alarm
[LEFT]CIIR =0;&amp;nbsp; //no interrupt[/LEFT]
CCR |= CCR_CLKEN;
}
&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[LEFT]Post your actual code again.[/LEFT]&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 00:53:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/problem-with-RTC-in-lpx1769/m-p/560452#M15868</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T00:53:12Z</dc:date>
    </item>
    <item>
      <title>Re: problem with RTC in lpx1769</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/problem-with-RTC-in-lpx1769/m-p/560453#M15869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by gbm on Wed Jan 19 07:14:10 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;The problem lies in the very first line of your RTC init code - it sets almost all bits of CCR to ones, which probably turns on some factory testing mode.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 00:53:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/problem-with-RTC-in-lpx1769/m-p/560453#M15869</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T00:53:12Z</dc:date>
    </item>
    <item>
      <title>Re: problem with RTC in lpx1769</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/problem-with-RTC-in-lpx1769/m-p/560454#M15870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by Ex-Zero on Wed Jan 19 07:28:37 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Especially Bit 3 of CCR :)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 00:53:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/problem-with-RTC-in-lpx1769/m-p/560454#M15870</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T00:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: problem with RTC in lpx1769</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/problem-with-RTC-in-lpx1769/m-p/560455#M15871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by toniojesusde on Wed Jan 19 08:00:36 MST 2011&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks a lot! that solved the problem! I will make sure to dig into the whole code and register definition next time.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 00:53:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/problem-with-RTC-in-lpx1769/m-p/560455#M15871</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T00:53:13Z</dc:date>
    </item>
  </channel>
</rss>

