From 8f2c1659cf3d5a72ade3504caac248a0975aff2e Mon Sep 17 00:00:00 2001 From: ntfreak Date: Wed, 12 Nov 2008 14:53:19 +0000 Subject: - slight mips32 cleanup/reformat - add missing svn props git-svn-id: svn://svn.berlios.de/openocd/trunk@1159 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- testing/examples/PIC32/BlinkingLeds.c | 46 +++++++++++++++++------------------ testing/examples/PIC32/readme.txt | 6 ++--- 2 files changed, 26 insertions(+), 26 deletions(-) (limited to 'testing') diff --git a/testing/examples/PIC32/BlinkingLeds.c b/testing/examples/PIC32/BlinkingLeds.c index d1647c45..027f59ac 100644 --- a/testing/examples/PIC32/BlinkingLeds.c +++ b/testing/examples/PIC32/BlinkingLeds.c @@ -1,23 +1,23 @@ -#include -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; -} +#include +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; +} diff --git a/testing/examples/PIC32/readme.txt b/testing/examples/PIC32/readme.txt index ca9573a5..cb32ac2e 100644 --- a/testing/examples/PIC32/readme.txt +++ b/testing/examples/PIC32/readme.txt @@ -1,4 +1,4 @@ -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. +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 -- cgit v1.2.3