Add some comments to the PIC32 demos that the IPL setting in an ISR prototype has no effect if the FreeRTOS assembly wrapper is being used.

This commit is contained in:
Richard Barry 2011-01-29 15:49:42 +00:00
parent 14472a9499
commit 46c4d33d28
3 changed files with 10 additions and 2 deletions

View file

@ -61,6 +61,9 @@
void vT3InterruptHandler( void );
void vT4InterruptHandler( void );
/* As these interrupts use the FreeRTOS interrupt entry point, the IPL settings
in the following prototypes have no effect. The interrupt priorities are set
by the ConfigIntTimerX() library calls in vInitialiseTimerForIntQueueTest(). */
void __attribute__( (interrupt(ipl0), vector(_TIMER_3_VECTOR))) vT3InterruptWrapper( void );
void __attribute__( (interrupt(ipl0), vector(_TIMER_4_VECTOR))) vT4InterruptWrapper( void );