Difference between revisions of "Using the Code::Blocks IDE with SDCC on PIC MCUs"

From Code::Blocks
Line 1: Line 1:
 
== Introduction ==
 
== Introduction ==
  
I am editing this right now to work with the Code::Blocks IDE
+
'''I am editing this right now to work with the Code::Blocks IDE'''
 
Tim S
 
Tim S
  

Revision as of 20:06, 7 May 2008

Introduction

I am editing this right now to work with the Code::Blocks IDE Tim S


This module assumes

  • you, the reader, know a little about programming using C and assembly.
  • you have a Code::Blocks IDE, SDCC, GPUTILS and a PICDEM 2 Plus demo board.
  • The code examples will be using the PIC16F877 and PIC18F452 micro-controllers.

Before getting started,

Getting Started with Simple I/O

We will start with a simple input output program using PORTA and PORTB. Let light some LEDs on the board. We should assign value 0x0A to PORTB. This will light up LEDs at RB3 and RB1. Everytime the switch button at RA4 is pressed, the value will be negated; thus the LEDS will switch between RB3/RB1 and RB2/RB0.

First, start your MPLAB IDE. In the menu bar, select Project → Project Wizard. Hit next, and select PIC18F452 as your device. Select next again. Under Active Toolsuite, select Microchip C18 Toolsuite and MPLAB C18 C Compiler (mcc18.exe) under Toolsuite Contents. Now, we have to give a name to our project and select a directory for it. Since we going to do a simple I/O, let us name it Simple_IO at Project Name. Then, select a directory. In this case, I would use c:\example\simpleIO. Hit the next button. We do not have any files to add to the project. So, hit the next button again. Now, we are finished with the Project Wizard. Hit the finish button.

Once the project is setup, we should create a C file called SimpleIO.c. At the menu bar, select File → New. Once the new editor pops, select File → Save As. At the new window, save the newly created file as SimpleIO.c. On the Project Window (where Simple_IO.mcv is the title) right click on Source Files. Select Add Files... from the menu. Select SimpleIO.c from where you save just now. On the same window, select Linker Scripts and select Add Files... from the menu. Under Microchip C18 C compiler directory (default is C:\MCC18), go to c:\installed directory/lkr and type 18f452.lkr at the File name. Type the following code into the editor.

#include <pic16/pic18f452.h>

// Configurations
code char at __CONFIG1H conf1 = _OSC_HS_PLL_1H & _OSCS_ON_1H;   // Select HS PLL OSC
code char at __CONFIG2L conf2 = _PUT_ON_2L;
code char at __CONFIG2H conf3 = _WDT_OFF_2H;                    // Disable WDT
code char at __CONFIG4L conf4 = _LVP_OFF_4L;                    // Disable LVP

// Main body
void main() {

    // Initializing ports
    PORTA = 0;
    PORTB = 0;

    // Set RA4 as input and RB3-RB0 as output
    TRISA |= 0x10;
    TRISB &= 0xF0;

    // Set value 0x0A to PORTB
    PORTB = 0x0A;

    // If button is pressed, toggle PORTB
    while(1) {
        if(PORTAbits.RA4 != 0)
            PORTB = ~PORTB;
    }
}

Hit the save button on the toolbar or from the menu bar, select File → Save. Next, click on Project → Build All or Build All button at the toolbar at the top. Make sure you have no error or warning at the Output window. Hook up your MPLAB ICD 2 to your computer and connect PICDEM 2 Plus Demo board to the ICD (Please refer to the manual provided). Now, select Debugger → Select Tool → MPLAB ICD 2. Make sure there is no error at the output window. Next, click on Debugger → Program to program the microcontroller. Once you have successfull programed the microcontroller, click on Debugger → Run. You can also hit the Run button at the toolbar. On the demo board, LEDs at RB3 and RB1 should light up.

Now, pressed the switch at RA4 on the demo board a few times. Noticed something wrong? The LEDs do flick, but do not switch between RB3/RB1 and RB2/RB0 all the time. And if you just pressed the switch without releasing it, all the LEDs do light up. This is not something that we want. Let us look at the code again to find out what is the problem. Noticed that in the while loop, as long as RA4 is read 0, value at PORTB will be inverted. With the microcontroller running at 16MHz, a flash push at the switch, which may consume up to 500us, may cause the value in PORTB to invert more than 1000 times. That is why the LEDs appear to be light up in random whenever the switch is pushed. The code has to be modified to detect a push, and a release at the switch.

This program based on code and information from the following

http://en.wikibooks.org/wiki/Embedded_Systems/PIC_Programming