Getting Started With PIC(TM) MCU

From AIRWiki
Revision as of 09:26, 2 June 2009 by PaoloVilla (Talk | contribs)

Jump to: navigation, search

!!!PAGE UNDER CONSTRUCTION!!!


Part 1: Introduction

Chosing a PIC(TM) Microcontroller

Software tools

Let’s verify we have all the necessary pieces of equipment ready and installed (latest version available for download from Microchip web site at http://www.microchip.com):

  • PIC MCU Datasheet;
  • MPLAB IDE(TM), free Integrated Development Environment;
  • MPLAB SIM(TM), software simulator;
  • MPLAB C30(TM), C compiler (demo or free student version).


Part 2: Basic hardware

Besides a PC, because of we intend "make" something and not only talk about it, we need some hardware tools:

  • PIC MCU programmer-debugger (in Ai&R Lab Lambrate you can find some Microchip ICD2(TM) programmer-debugger and, some adapter boards with ZIF socket and some self-made programming cables);
  • PIC MCU demoboard or your board with power supply, PIC Microconroller, oscillator, MCLR circuitry and some input-output hardware.


Oscillator

The system clock (FOSC) source can be provided by a different number of options, depending by microcontroller family (low power, low cost microcontroller allow less options choise than high power, high cost MCU). Generally options can be divided in: • Internal Oscillator (in general an internal RC network); • External Oscillator (external clock source, external crystal or ceramic resonator operation and external RC network).

MCUOscillator.jpg

In addition oscillator system can includes on-chip Phase-Locked Loop (PLL) to boost internal operating frequency, on-the-fly clock switching between various clock sources and Fail-Safe Clock Monitor (FSCM) that detects clock failure and permits safe application recovery or shutdown. This means, for example, that with a PIC24H series microcontoller, you can use a 10Mhz external crystal resonator for clock source, but configuring internal PLL circuitry through dedicated registers, you can obtain a 80Mhz internal clock frequency, achieving 40MIPS core operation speed (PIC24H need two clock cycles to execute a single instruction).


MCLR circuit

PIC Microcontroller has a number of reset sources and controls (POR: Power-on Reset; BOR: Brown-out Reset; MCLR: Master Clear Pin Reset; WDTO: Watchdog Timer Reset). The external reset is generated by driving the MCLR pin low. The MCLR pin is a Schmitt trigger input with an additional glitch filter. Reset pulses that are longer than the minimum pulse width generates a Reset (see datasheet). The External Reset (MCLR) Pin (EXTR) bit in the Reset Control (RCON) register is set to indicate the MCLR Reset. If your system has an external supervisory circuits that generate reset signals to Reset multiple devices in the system, this external Reset signal can be directly connected to the MCLR pin to reset the device when the rest of system is Reset. When using the internal power supervisory circuit to Reset the device, the external reset pin (MCLR) should be tied directly or resistively to VDD. In this case, the MCLR pin is not used to generate a Reset. The external reset pin (MCLR) does not have an internal pull-up and must not be left unconnected. A typical power-on reset circuit is:

MCUMCLR.jpg


Programming interface

Programming Cable

Part 3: PIC MCU programming

MPLAB IDE settings

Start a new project

Then, let’s follow the “New Project Set-up” checklist to create a new project with the MPLAB IDE:

  • Select “Project->Project Wizard” to activate the new project wizard, which will guide us

automatically through the following steps…

  • Select the correct PIC device, and click Next.
  • Select the MPLAB C30 Compiler Suite and click Next.
  • Create a new folder and name it “FolderName”; name the project “ProjectName” and click Next.

Simply click Next to the following dialog box—there is no need to copy any source files from any previous projects or directories. Click on Finish to complete the Wizard set-up.

Open a new editor window.

Select “File->Save As”, to save the file as: “FileName.c”. Select “Project->Save” to save the project. Our first line of code is going to be:

#include <p24fj128ga010.h>

This is a pseudo-instruction for the preprocessor telling the compiler to read the content of a device-specifi c fi le before proceeding any further. The content of the device-specifi c “.h” file chosen is a long list of the names (and sizes) of all the internal special-function registers (SFRs) of the chosen PIC model: those names reflect exactly those being used in the device datasheet. Let’s add a couple more lines that will introduce you to the main() function:

main()
{

}

The main() function is the place where the microcontroller (program counter) will go first at power-up or after each subsequent reset. Before entering the main() function, the microcontroller will execute a short initialization code segment automatically inserted by the linker. This is known as the c0 code. The c0 code will perform basic housekeeping chores, including the initialization of the microcontroller stack, among other things.