Update PIC32MX demo:

Change configCHECK_FOR_STACK_OVERFLOW to 3 to also check the interrupt stack.
Add a build configuration to allow use on the PIC32 USBII starter kit.
Increase some delays when talking to the LCD to ensure it always displays correctly.
Rewrite the register test tasks.
This commit is contained in:
Richard Barry 2013-11-07 09:54:13 +00:00
parent 2ee43fbc64
commit 1b7a2e40a3
21 changed files with 1432 additions and 451 deletions

View file

@ -19,19 +19,19 @@ PATH_TO_IDE_BIN=C:/devtools/Microchip/MPLABX/mplab_ide/mplab_ide/modules/../../b
# Adding MPLAB X bin directory to path.
PATH:=C:/devtools/Microchip/MPLABX/mplab_ide/mplab_ide/modules/../../bin/:$(PATH)
# Path to java used to run MPLAB X when this makefile was created
MP_JAVA_PATH="C:\devtools\Microchip\MPLABX\sys\java\jre1.6.0_32-windows\java-windows/bin/"
MP_JAVA_PATH="C:\devtools\Microchip\MPLABX\sys\java\jre1.7.0_25-windows\java-windows/bin/"
OS_CURRENT="$(shell uname -s)"
MP_CC="C:\devtools\Microchip\xc32\v1.00\bin\xc32-gcc.exe"
# MP_CPPC is not defined
MP_CC="C:\devtools\Microchip\xc32\v1.21\bin\xc32-gcc.exe"
MP_CPPC="C:\devtools\Microchip\xc32\v1.21\bin\xc32-g++.exe"
# MP_BC is not defined
MP_AS="C:\devtools\Microchip\xc32\v1.00\bin\xc32-as.exe"
MP_LD="C:\devtools\Microchip\xc32\v1.00\bin\xc32-ld.exe"
MP_AR="C:\devtools\Microchip\xc32\v1.00\bin\xc32-ar.exe"
MP_AS="C:\devtools\Microchip\xc32\v1.21\bin\xc32-as.exe"
MP_LD="C:\devtools\Microchip\xc32\v1.21\bin\xc32-ld.exe"
MP_AR="C:\devtools\Microchip\xc32\v1.21\bin\xc32-ar.exe"
DEP_GEN=${MP_JAVA_PATH}java -jar "C:/devtools/Microchip/MPLABX/mplab_ide/mplab_ide/modules/../../bin/extractobjectdependencies.jar"
MP_CC_DIR="C:\devtools\Microchip\xc32\v1.00\bin"
# MP_CPPC_DIR is not defined
MP_CC_DIR="C:\devtools\Microchip\xc32\v1.21\bin"
MP_CPPC_DIR="C:\devtools\Microchip\xc32\v1.21\bin"
# MP_BC_DIR is not defined
MP_AS_DIR="C:\devtools\Microchip\xc32\v1.00\bin"
MP_LD_DIR="C:\devtools\Microchip\xc32\v1.00\bin"
MP_AR_DIR="C:\devtools\Microchip\xc32\v1.00\bin"
MP_AS_DIR="C:\devtools\Microchip\xc32\v1.21\bin"
MP_LD_DIR="C:\devtools\Microchip\xc32\v1.21\bin"
MP_AR_DIR="C:\devtools\Microchip\xc32\v1.21\bin"
# MP_BC_DIR is not defined