<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>PIC Microcontrollers | Student Projects</title>
	<atom:link href="https://studentprojects.in/tag/pic-microcontrollers/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Fri, 05 Jun 2009 09:45:33 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>PIC &#8211; Introduction</title>
		<link>https://studentprojects.in/electronics/microcontroller/pic/pic-introduction/</link>
					<comments>https://studentprojects.in/electronics/microcontroller/pic/pic-introduction/#comments</comments>
		
		<dc:creator><![CDATA[Editorial Team]]></dc:creator>
		<pubDate>Fri, 05 Jun 2009 09:45:33 +0000</pubDate>
				<category><![CDATA[PIC]]></category>
		<category><![CDATA[PIC Microcontrollers]]></category>
		<category><![CDATA[PIC Tutorial]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=562</guid>

					<description><![CDATA[<p>The term PIC, or Peripheral Interface Controller, has been coined by Microchip technology to identify its single chip microcontrollers. PIC microcontrollers possess an array of features that make them attractive for a wide range of applications. Furthermore these microcontrollers are available with a range of capabilities, packaged in both dual-in-line(DIP) packages and surface-mount packages. Factors</p>
<p>The post <a href="https://studentprojects.in/electronics/microcontroller/pic/pic-introduction/">PIC – Introduction</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>The term PIC, or Peripheral Interface Controller, has been coined by Microchip technology to identify its single chip microcontrollers. PIC microcontrollers possess an array of features that make them attractive for a wide range of applications. Furthermore these microcontrollers are available with a range of capabilities, packaged in both dual-in-line(DIP) packages and surface-mount packages. Factors that account for the wide popularity of PIC microcontrollers include the following:</p>
<ul>
<li><strong>Speed</strong>: When operated at its maximum clock rate, a PIC executes most of its instructions in 0.2µs, or 5 instructions per microsecond.</li>
<li><strong>Instruction set simplicity</strong>: The instruction set consists of just 35 instructions.</li>
<li><strong>Integration of operational features</strong>: Power-on Reset and Brown –out protection insure that the chip operates only when the supply voltage is within specification. A watchdog timer resets the PIC if the chip ever malfunctions and deviates from its normal operations.</li>
<li><strong>Programmable timer options</strong>: The versatile timers can characterize inputs, control outputs and provide timing for program execution.</li>
<li><strong>Interrupt control</strong>: Up to 12 independent interrupt sources can control when the CPU will deal with each source.</li>
<li><strong>Powerful output pin control</strong>: A single instruction can select and drive a single output pin high or low in its 0.2µs instruction execution time. The pin can drive a load of up to 25mA.</li>
<li><strong>I/O port expansion</strong>:  The built-in serial peripheral interface can make use of standard 16-pin shift register parts to add any number of I/O pins.</li>
<li><strong>Serial programming via two pins</strong>: The simplicity of programming hardware supports the availability of PIC programmers for under $100.</li>
</ul>
<p>PICs use a RISC instruction set, which varies in length from about 35 instructions for the low-end PICs to about 70 instructions for the high-end PICs. The instruction set includes instructions to perform a variety of operations on the accumulator and a constant or the accumulator and a memory location, as well as for conditionally executing code and jumping/calling other parts of the program and returning from them, and specific hardware features like interrupts and one low-power mode called sleep. Microchip provides a freeware IDE package called MPLAB, which also includes a software simulator as well as an assembler.</p>
<p>The word size of PICs is a source of much confusion. All PICs (except dsPICs and PIC24s) handle data in 8-bit chunks, so they should be called 8-bit microcontrollers. But unlike most CPUs, PICs use Harvard architecture, so the size of an instruction can be different from the size of the data. In fact, different PIC families use different instruction sizes, which make it a challenge to compare the code size of PICs to other microcontrollers. For example, say a microcontroller has 6144 bytes of program memory. For a 12-bit PIC, this works out to 4096 words (or assembly instructions); for a 16-bit PIC, this is 3072 words.<br />
PICmicro devices are grouped by the size of their instruction word and their instruction set. The four current PICmicro families and their instruction word length are:</p>
<ol>
<li>Base-Line:    12-bit instruction Word length</li>
<li>Mid-Range:  14-bit instruction Word length</li>
<li>High-End:     16-bit instruction Word length</li>
<li>Enhanced:    16-bit instruction Word length</li>
</ol>
<p>The PIC18FXXX MCU family belongs to the Enhanced MCU family of devices. These devices have full-speed USB support, all sorts of inbuilt hardware and are very powerful and versatile.</p>
<p>Microchip offers three program memory types. The memory type is designated in the part number by the first letter(s) after the family affiliation designators.</p>
<ol>
<li>C, as in PIC18CXXX. These devices have EEPROM type memory.</li>
<li>CR, as in PIC18CRXXX. These devices have ROM type memory.</li>
<li>F, as in PIC18FXXX. These devices have FLASH type memory.</li>
</ol>
<p>The PIC18FXXX family offers the advantages of all PIC18 microcontrollers-namely, high computational performance at an economical price-with the addition of high-endurance, Enhanced flash program memory.</p>
<p>Microchip offers a wide range of development tools that allows users to efficiently develop and debug application code. Microchip’s development tools can be broken down into four categories:</p>
<ol>
<li>Code generation</li>
<li>Hardware/Software debug</li>
<li>Device programmer</li>
<li>Product evaluation boards</li>
</ol>
<p>All tools developed by Microchip operate under the MPLAB@ Integrated Development Environment (IDE).</p><p>The post <a href="https://studentprojects.in/electronics/microcontroller/pic/pic-introduction/">PIC – Introduction</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://studentprojects.in/electronics/microcontroller/pic/pic-introduction/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
	</channel>
</rss>
