Difference between revisions of "Getting Started with PIC32"

From Mech
Jump to navigationJump to search
Line 14: Line 14:
= Bootloader =
= Bootloader =


A bootloader is a program that enables you to easily install programs on the PIC32 using only a USB cable. Normally, an external programmer is needed for programming the PIC. The bootloader takes hex files created by the MPLAB compiler and programs them on the PIC. Hex files are binary representations of the c code. See the wikipedia page for Hex files [http://en.wikipedia.org/wiki/Intel_HEX| here] for more information.
A bootloader is a program that enables you to easily install programs on the PIC32 using only a USB cable. Normally, an external programmer is needed for programming the PIC. The bootloader takes hex files created by the MPLAB compiler and programs them on the PIC. Hex files are binary representations of the c code. See the wikipedia page for Hex files [http://en.wikipedia.org/wiki/Intel_HEX here] for more information.


Follow these [[Programming HID Bootloader on PIC32|directions ]] to install a bootloader on your PIC.
Follow these [[Programming HID Bootloader on PIC32|directions ]] to install a bootloader on your PIC.

Revision as of 13:41, 15 December 2009

This page details getting started with the PIC32 board.

Software

This section discusses the software that must be installed on your computer. This software is only compatible with Windows. We are going to install MPLAB (software used for editing, compiling, and debugging code), the C32 compiler (software to create the program) and the Microchip Applications Library (common source files for programming).

1. Download and Install MPLAB IDE vX.XX Full Release Zipped Installation located near the bottom of this page. You do not need to install HI-TEC C Installer when prompted.

2. Download and Install MPLAB C Compiler for PIC32 vX.XX Academic Version located near the bottom of this page (the academic version is free)

3. Download and Install the Microchip Applications Library here. This zip file is the library version released on 11-18-2009. More recent versions can be downloaded here but the files may not work with the code listed on the wiki. Extract this folder to C:/Program Files/Microchip (the Microchip folder will be created when you install MPLAB).

Bootloader

A bootloader is a program that enables you to easily install programs on the PIC32 using only a USB cable. Normally, an external programmer is needed for programming the PIC. The bootloader takes hex files created by the MPLAB compiler and programs them on the PIC. Hex files are binary representations of the c code. See the wikipedia page for Hex files here for more information.

Follow these directions to install a bootloader on your PIC.

First Program

We are first going to test that you installed the bootloader correctly.

- Download this HelloWorld hex file. (This code flashes all of the LEDs at a 1 second period)

- Use these directions to load a Hex File with the bootloader.

Next, we are going to make a different Hello World program from scratch.

Follow the directions here to code and program Hello World on to the PIC32 using the bootloader.