Objective
This example project demonstrates how to configure and use an internal timer on a PIC24F 16-bit MCU. You will learn how to configure one of the timers to overflow every 1/2 second. Code will be entered to monitor the timer's overflow flag. Each time the timer overflows the program will toggle one of the LEDs on the development board.
This lab does not use interrupts. If you are looking for an example using a PIC24F with interrrupts please refer to the "Programming a PIC24/dsPIC33 Timer Using Interrupts" example.
You will be shown how to configure and monitor a timer on a PIC24F MCU. With the help of MPLAB® Code Configurator (MCC), this project demonstrates the following:
- Project creation for a 16-bit Microchip MCU.
- Configuring the MCU system oscillator to run off the internal RC-oscillator at 4 MHz.
- Selecting one of the I/O pins connected to an LED as an output.
- Adding a timer to the list of peripherals used by the application.
- Configuring the added timer to overflow every 1/2 second.
- Generating MCC code.
- Manually editing MCC-generated code to start the timer, monitory the timer's overflow flag, and toggle the LED on each overflow.
- Building and programming the completed application into the development board.
As a result of this lab, the selected LED will change state every 1/2 second.
After completing this lab, you should be able to use MCC to set a time period of any value on a 16-bit PIC® MCU.
This project uses the PIC24F Curiosity Development Board. This board has two LEDs and two input switches; LED1: connected to pin RA9 (PORTA pin 9).
Materials
To follow along with this example, you will need the following software and hardware:
Software Tools
- MPLAB® X IDE
- MPLAB XC16 Compiler
- MPLAB Code Configurator (MCC)
Hardware Tools
- PIC24F Curiosity Development Board (Microchip part number DM240004)
- USB Micro-B cable to connect the PIC24F Development Board to your computer
Information on how to download the software tools or acquire the development board can be found on the "Resources Needed for PIC24F Labs" page.
Procedure
1
Create the Project
After installing the software, connect the PIC24F Curiosity Development Board to a USB port on your computer. Create a new standalone project in MPLAB® X for a PIC124FJ128GA204. The PIC124FJ128GA204 is the microcontroller on the PIC24F Curiosity Development Board. When the project creation wizard asks for a hardware tool (Step 2 in the New Project window), select the PIC24F Curiosity Board as displayed below.
If this is your first time creating an MPLAB X project, please visit the "Create a Standalone Project" page to follow step-by-step instructions on how to do this.
After the project has been created, the Projects tab in the upper-left corner of the IDE shows that the project has been created with no source or header files.
2
Open MCC
Open MCC under the Tools > Embedded menu of MPLAB X IDE.
MCC will place a Resource Management tab on the left-hand side of the IDE. Inside this tab, you will see a section for Project Resources and Device Resources. For each MCC-generated project, you will need to verify/modify the System Modules under the Project Resources window.
3
Set the Project Resources
There are three system elements which need attention:
- Interrupt Module: controls the MCU's interrupts.
- Pin Module: configures the I/O pins.
- System Module: selects and configures the clock source for the MCU.
Interrupt Module
This project does not use interrupts so this section will not be used.
System Module
The System Module allows the user to configure the MCU's clock, the Watchdog Timer (WDT), and make changes to the debug pin assignments. This feature of the PIC24F MCU has numerous options, which are typically modified to fit the needs of the application. MPLAB® Code Configurator (MCC) provides default settings if no changes are selected by the developer. For this lab, accept the default clock settings:
- 8 MHz Internal Free Running Oscillator with no Prescaler, but a 1:2 Postscaler (4 MHz Fosc)
- Watchdog Timer - disabled
- Unchanged debug pins
To verify the default settings, click on the System Module tab and verify the following selections have been made:
We will now configure the pin connected to LED1 (RA9) as an output pin. In the Grid View window click on the output box under RA9. The grid view will display the "padlocks" in green indicating these pins have been configured for use.
- Ensure that RA9 is set as an output pin.
- Rename RA9 as LED1.
5
Confgure Timer1 for 1/2 Second Period
With the Fosc set at 2 MHz, Timer1 will be unable to generate a 1/2 second period as the 16-bit counter will overflow before 1/2 second has gone by. To lengthen the period window for this timer, we will pre-scale the system clock by 64 to down the timer. Once the timer is slowed, we will be able to select the 1/2 second timer period.
Select TMR1 from the project window and select the following settings:
6
Generate Code
To generate the code, click the Generate button on the MCC window.
The projects tab will show the source and header files created by MCC.
The main(void) is located within the main.c file. main(void) calls the MCC generated SYSTEM_Initialize() function before it enters the while(1) loop.
SYSTEM_Initialize() in turn calls PIN_MANAGER_Initialize() and TMR1_Initialize(). These two functions initialize the timer and pin configuration by writing to the device's function registers.
If you are interested in learning more about the details of device initialization, please consult the PIC24FJ128GA204 data sheet for the specific registers and settings used to configure the I/O pins and Timer1.
7
Modify the MCC-generated Code to Monitor the Timer and Toggle the LED
We will now modify main.c. An inspection of MCC-generated header file pin-manager.h and tmr1.h shows MCC has created several control functions useful for our applications.
pin-manager.h Function Prototypes
- LED1_toggle();: changes the value of the I/O pin connected to the LED1.
tmr1.h Function Prototype:
- TMR1_Start(): starts the operation of Timer1.
Consulting the MPLAB® XC16 C Compiler user's manual will show that data register bit IFS0bits.T1IF allows the application to read or reset Timer1's overflow flag.
Make the following modifications to main.c:
- Insert the text #include "mcc_generated_files/mcc.h" near the top of the file.
- Insert LED1_Toggle, TMR1_Start, and the access to IFS0 into main.c as follows:
mainc.c
#include "mcc_generated_files/system.h"
#include "mcc_generated_files/mcc.h" //##### must be added #####
/*
Main application
*/
int main(void)
{
// initialize the device
SYSTEM_Initialize();
TMR1_Start(); // ####### Start the timer ####
while (1)
{
if (IFS0bits.T1IF)
{
LED1_Toggle();
IFS0bits.T1IF = 0 ;
}
}
return 1;
}
#include "mcc_generated_files/mcc.h" is required to be placed in any application source file which accesses MCC generated functions. This line must be placed above the application's call to an MCC function. Not all versions of MCC correctly include this code into main.c. You will also need to manually add this line to each of the applicaiton source files you create.
8
Build, Download and Run the code
To run the program on the development board, click on the Make and Program Device Main Project button . This will build the program into the flash memory of the PIC®. The output window of the IDE will tell you when the device has been programmed and the application is running.Results
When the application is built and programmed into the MCU, LED1 will change state every 1/2 second.
Learn More
Here are some addtional examples of programming other 16-bit MCU peripherals: