<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: 06 Oscillator and Timing</title>
	<atom:link href="http://www.engscope.com/pic24-tutorial/6-oscillator-and-timing/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.engscope.com</link>
	<description>An Engineer&#039;s Life</description>
	<lastBuildDate>Sat, 04 Feb 2012 14:03:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: jliu83</title>
		<link>http://www.engscope.com/pic24-tutorial/6-oscillator-and-timing/comment-page-1/#comment-45213</link>
		<dc:creator>jliu83</dc:creator>
		<pubDate>Mon, 19 Dec 2011 15:38:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.engscope.com/oscillator-and-timing/#comment-45213</guid>
		<description>@Juan.  Everything you need is in the tutorial.  Please carefully read everything.

-J</description>
		<content:encoded><![CDATA[<p>@Juan.  Everything you need is in the tutorial.  Please carefully read everything.</p>
<p>-J</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juan</title>
		<link>http://www.engscope.com/pic24-tutorial/6-oscillator-and-timing/comment-page-1/#comment-45021</link>
		<dc:creator>Juan</dc:creator>
		<pubDate>Fri, 16 Dec 2011 21:25:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.engscope.com/oscillator-and-timing/#comment-45021</guid>
		<description>I am using a PIC24HJ32GP202 for my project, and I have a 6 MHZ external crystal connected to it. Using the PLL How can I get 12 MHZ FOSC, 6 MHZ FCY. My end goal is
to configure the UART port to transmit at 1.5 Mbaud.

thanks</description>
		<content:encoded><![CDATA[<p>I am using a PIC24HJ32GP202 for my project, and I have a 6 MHZ external crystal connected to it. Using the PLL How can I get 12 MHZ FOSC, 6 MHZ FCY. My end goal is<br />
to configure the UART port to transmit at 1.5 Mbaud.</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jliu83</title>
		<link>http://www.engscope.com/pic24-tutorial/6-oscillator-and-timing/comment-page-1/#comment-38129</link>
		<dc:creator>jliu83</dc:creator>
		<pubDate>Fri, 26 Aug 2011 02:42:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.engscope.com/oscillator-and-timing/#comment-38129</guid>
		<description>@qmash.  Unfortunately I don&#039;t use the RTCC very often.  There are several issues with the RTCC that I don&#039;t like about on the PIC24.  I usually use an external chip.  The price is a bit cheaper using the PIC24 directly with an oscillator, but you get more features (usually) with an external chip.  You are on your own for this one.

-J</description>
		<content:encoded><![CDATA[<p>@qmash.  Unfortunately I don&#8217;t use the RTCC very often.  There are several issues with the RTCC that I don&#8217;t like about on the PIC24.  I usually use an external chip.  The price is a bit cheaper using the PIC24 directly with an oscillator, but you get more features (usually) with an external chip.  You are on your own for this one.</p>
<p>-J</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: qmash</title>
		<link>http://www.engscope.com/pic24-tutorial/6-oscillator-and-timing/comment-page-1/#comment-37913</link>
		<dc:creator>qmash</dc:creator>
		<pubDate>Mon, 22 Aug 2011 05:33:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.engscope.com/oscillator-and-timing/#comment-37913</guid>
		<description>HI. 
Your tutorials are realy good.
I am new in pic, I would like to know that, how can initialize RTCC. I always get same time from RTC.I want to get time and date  using PIC24FJ256GA018.
I am using following initialization. 
  
 OSCCON = 0x4402;//0010,0010,0000,0010 
 RCFGCALbits.RTCWREN = 1; 
 RCFGCALbits.RTCEN = 1; 
 RCFGCALbits.RTCOE = 1; 

 PADCFG1bits.RTSECSEL=1; 
  
void TestRTC() 
{ 
    int sec; 
     RCFGCALbits.RTCPTR = 0;//0-3 
     if( sec!=RTCVAL) 
     { 
          sec=RTCVAL; 
          BlinkLED(); 
    } 
} 
  
there is external oscillator 32768Hz connected at RC14,RC15 
i always recv same  bits pattern. 
thanks in advance for your assistance.</description>
		<content:encoded><![CDATA[<p>HI.<br />
Your tutorials are realy good.<br />
I am new in pic, I would like to know that, how can initialize RTCC. I always get same time from RTC.I want to get time and date  using PIC24FJ256GA018.<br />
I am using following initialization. </p>
<p> OSCCON = 0&#215;4402;//0010,0010,0000,0010<br />
 RCFGCALbits.RTCWREN = 1;<br />
 RCFGCALbits.RTCEN = 1;<br />
 RCFGCALbits.RTCOE = 1; </p>
<p> PADCFG1bits.RTSECSEL=1; </p>
<p>void TestRTC()<br />
{<br />
    int sec;<br />
     RCFGCALbits.RTCPTR = 0;//0-3<br />
     if( sec!=RTCVAL)<br />
     {<br />
          sec=RTCVAL;<br />
          BlinkLED();<br />
    }<br />
} </p>
<p>there is external oscillator 32768Hz connected at RC14,RC15<br />
i always recv same  bits pattern.<br />
thanks in advance for your assistance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jliu83</title>
		<link>http://www.engscope.com/pic24-tutorial/6-oscillator-and-timing/comment-page-1/#comment-16037</link>
		<dc:creator>jliu83</dc:creator>
		<pubDate>Sun, 09 Jan 2011 16:10:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.engscope.com/oscillator-and-timing/#comment-16037</guid>
		<description>Hi AP, no, I have not done a section on RTCs.  I usually use external RTC chips for my application, and have not looked too much into it.  Perhaps in the future.

-J</description>
		<content:encoded><![CDATA[<p>Hi AP, no, I have not done a section on RTCs.  I usually use external RTC chips for my application, and have not looked too much into it.  Perhaps in the future.</p>
<p>-J</p>
]]></content:encoded>
	</item>
</channel>
</rss>

