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

@ -229,7 +229,7 @@ volatile unsigned long ul = 0;
( void ) pcFile;
( void ) ulLine;
taskENTER_CRITICAL();
__asm volatile( "di" );
{
/* Set ul to a non-zero value using the debugger to step out of this
function. */
@ -238,5 +238,5 @@ volatile unsigned long ul = 0;
portNOP();
}
}
taskEXIT_CRITICAL();
__asm volatile( "ei" );
}