Skip to content
Snippets Groups Projects
Commit 3a59ff8b authored by oharboe's avatar oharboe
Browse files

Laurentiu Cocanu - blinking led app for PIC32.

git-svn-id: svn://svn.berlios.de/openocd/trunk@1157 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent ded28546
No related branches found
No related tags found
No related merge requests found
#include <plib.h>
int main(void)
{
int i;
mPORTDClearBits(BIT_0);
mPORTDSetPinsDigitalOut(BIT_0);
mPORTDClearBits(BIT_1);
mPORTDSetPinsDigitalOut(BIT_1);
mPORTDClearBits(BIT_2);
mPORTDSetPinsDigitalOut(BIT_2);
while(1)
{
for(i = 0; i < 500000; i++)
mPORTDToggleBits(BIT_0);
for(i = 0; i < 500000; i++)
mPORTDToggleBits(BIT_1);
for(i = 0; i < 500000; i++)
mPORTDToggleBits(BIT_2);
}
return 0;
}
File added
Here you'll find a simple example tested with PIC32 Starter kit (source code and .elf file). It will blink repeatedly the LEDs on the board.
The program was compiled and written on the target using MPLAB IDE v 8.0 that comes with the kit because openocd is missing currently the ability
to program the flash for this specific target. It is possible in the future this limitation to be removed.
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment