<?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: Programming PIC Microcontrollers in C</title>
	<atom:link href="http://baltimorehackerspace.com/2010/02/programming-pic-microcontrollers-in-c/feed/" rel="self" type="application/rss+xml" />
	<link>http://baltimorehackerspace.com/2010/02/programming-pic-microcontrollers-in-c/</link>
	<description>Maryland Electronics, Software, Science and Robotics Club</description>
	<lastBuildDate>Wed, 25 Jan 2012 07:01:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: superfro</title>
		<link>http://baltimorehackerspace.com/2010/02/programming-pic-microcontrollers-in-c/comment-page-1/#comment-2153</link>
		<dc:creator>superfro</dc:creator>
		<pubDate>Tue, 01 Nov 2011 21:51:15 +0000</pubDate>
		<guid isPermaLink="false">http://harfordhackerspace.org/?p=526#comment-2153</guid>
		<description>@Gigi - the delay_ms() function is calculated based off of the #use statement in the header.  In the example it is &quot;#use delay(clock=8M)&quot; which sets the delay loop based off of a 8 mhz clock.  If you leave that statement as 8mhz and change the crystal to 4mhz then yes, it may take 100ms when you delay_ms(50);  However that is not advised.  You should update your #use statement to &quot;#use delay(clock=4M)&quot; and delay_ms(50) will still be 50 ms delay.</description>
		<content:encoded><![CDATA[<p>@Gigi &#8211; the delay_ms() function is calculated based off of the #use statement in the header.  In the example it is &#8220;#use delay(clock=8M)&#8221; which sets the delay loop based off of a 8 mhz clock.  If you leave that statement as 8mhz and change the crystal to 4mhz then yes, it may take 100ms when you delay_ms(50);  However that is not advised.  You should update your #use statement to &#8220;#use delay(clock=4M)&#8221; and delay_ms(50) will still be 50 ms delay.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gigi</title>
		<link>http://baltimorehackerspace.com/2010/02/programming-pic-microcontrollers-in-c/comment-page-1/#comment-2148</link>
		<dc:creator>Gigi</dc:creator>
		<pubDate>Sun, 30 Oct 2011 15:11:03 +0000</pubDate>
		<guid isPermaLink="false">http://harfordhackerspace.org/?p=526#comment-2148</guid>
		<description>What if I change the processor to 4Mhz? Will the delay(50) in fact will delay with 100ms?</description>
		<content:encoded><![CDATA[<p>What if I change the processor to 4Mhz? Will the delay(50) in fact will delay with 100ms?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Squintz</title>
		<link>http://baltimorehackerspace.com/2010/02/programming-pic-microcontrollers-in-c/comment-page-1/#comment-1711</link>
		<dc:creator>Squintz</dc:creator>
		<pubDate>Tue, 14 Jun 2011 13:13:19 +0000</pubDate>
		<guid isPermaLink="false">http://harfordhackerspace.org/?p=526#comment-1711</guid>
		<description>@Frasker, I got that diagram from the PicKit documents. My guess is that it was created from Altium when they designed the board.</description>
		<content:encoded><![CDATA[<p>@Frasker, I got that diagram from the PicKit documents. My guess is that it was created from Altium when they designed the board.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frasker</title>
		<link>http://baltimorehackerspace.com/2010/02/programming-pic-microcontrollers-in-c/comment-page-1/#comment-1710</link>
		<dc:creator>Frasker</dc:creator>
		<pubDate>Tue, 14 Jun 2011 03:13:50 +0000</pubDate>
		<guid isPermaLink="false">http://harfordhackerspace.org/?p=526#comment-1710</guid>
		<description>Great tutorial! What software you use to draw the Pickit2 diagram?</description>
		<content:encoded><![CDATA[<p>Great tutorial! What software you use to draw the Pickit2 diagram?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph</title>
		<link>http://baltimorehackerspace.com/2010/02/programming-pic-microcontrollers-in-c/comment-page-1/#comment-1444</link>
		<dc:creator>Joseph</dc:creator>
		<pubDate>Sun, 27 Feb 2011 16:18:54 +0000</pubDate>
		<guid isPermaLink="false">http://harfordhackerspace.org/?p=526#comment-1444</guid>
		<description>Hi Squintz, I have read your tutorial about pics and I think it was a great work, very detailed and perfect for beginners like me XD.
I was wondeting if you coudl help me to understand something about the clock speed. 
I am programming with PIC C Compiler and i don&#039;t know how the number in the delay function works.
If im running at 4MHz, the delay function is delay_ms(1000), but if im running at 8Mhz, the delay function is delay_ms(500). What happens if i want to use a crsytal with a lower frequency or higher frequency? How could I determine the value within the delay fucntion?

I hope you can help me, and thanks in advanced.</description>
		<content:encoded><![CDATA[<p>Hi Squintz, I have read your tutorial about pics and I think it was a great work, very detailed and perfect for beginners like me XD.<br />
I was wondeting if you coudl help me to understand something about the clock speed.<br />
I am programming with PIC C Compiler and i don&#8217;t know how the number in the delay function works.<br />
If im running at 4MHz, the delay function is delay_ms(1000), but if im running at 8Mhz, the delay function is delay_ms(500). What happens if i want to use a crsytal with a lower frequency or higher frequency? How could I determine the value within the delay fucntion?</p>
<p>I hope you can help me, and thanks in advanced.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Harford HackerSpace &#124; Powered By Nerd</title>
		<link>http://baltimorehackerspace.com/2010/02/programming-pic-microcontrollers-in-c/comment-page-1/#comment-371</link>
		<dc:creator>Harford HackerSpace &#124; Powered By Nerd</dc:creator>
		<pubDate>Sun, 27 Jun 2010 03:58:44 +0000</pubDate>
		<guid isPermaLink="false">http://harfordhackerspace.org/?p=526#comment-371</guid>
		<description>[...] be sure to take a look at their PIC Tutorials!   Share and [...]</description>
		<content:encoded><![CDATA[<p>[...] be sure to take a look at their PIC Tutorials!   Share and [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: New! PicKit 2 Progammer Tutorial - (Baltimore) Harford Hackerspace</title>
		<link>http://baltimorehackerspace.com/2010/02/programming-pic-microcontrollers-in-c/comment-page-1/#comment-317</link>
		<dc:creator>New! PicKit 2 Progammer Tutorial - (Baltimore) Harford Hackerspace</dc:creator>
		<pubDate>Sun, 11 Apr 2010 17:31:16 +0000</pubDate>
		<guid isPermaLink="false">http://harfordhackerspace.org/?p=526#comment-317</guid>
		<description>[...] sure to read David Powell&#8217;s &#8220;Programming PIC Microcontrollers in C&#8221; as a precursor to Paul&#8217;s [...]</description>
		<content:encoded><![CDATA[<p>[...] sure to read David Powell&#8217;s &#8220;Programming PIC Microcontrollers in C&#8221; as a precursor to Paul&#8217;s [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Using the PICkit 2 : As a Programmer - (Baltimore) Harford Hackerspace</title>
		<link>http://baltimorehackerspace.com/2010/02/programming-pic-microcontrollers-in-c/comment-page-1/#comment-315</link>
		<dc:creator>Using the PICkit 2 : As a Programmer - (Baltimore) Harford Hackerspace</dc:creator>
		<pubDate>Sun, 11 Apr 2010 17:11:12 +0000</pubDate>
		<guid isPermaLink="false">http://harfordhackerspace.org/?p=526#comment-315</guid>
		<description>[...] sure you&#8217;ve read the previous tutorial &#8216;Programming PIC Microcontrollers in C&#8216;, if you haven&#8217;t, you should go familiarize yourself with it now.  Continuing on from [...]</description>
		<content:encoded><![CDATA[<p>[...] sure you&#8217;ve read the previous tutorial &#8216;Programming PIC Microcontrollers in C&#8216;, if you haven&#8217;t, you should go familiarize yourself with it now.  Continuing on from [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: NEW! Tutorial Posted - (Baltimore) Harford Hackerspace</title>
		<link>http://baltimorehackerspace.com/2010/02/programming-pic-microcontrollers-in-c/comment-page-1/#comment-283</link>
		<dc:creator>NEW! Tutorial Posted - (Baltimore) Harford Hackerspace</dc:creator>
		<pubDate>Sun, 21 Feb 2010 22:20:02 +0000</pubDate>
		<guid isPermaLink="false">http://harfordhackerspace.org/?p=526#comment-283</guid>
		<description>[...] Check it out Here! [...]</description>
		<content:encoded><![CDATA[<p>[...] Check it out Here! [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

