Interrupt Priority Level

1 (lowest) to 7 (highest)

Multi Vector / Single Vector Interrupts


	//-----------------------------
	//----- ENABLE INTERRUPTS -----
	//-----------------------------
	//INTEnableSystemSingleVectoredInt();
	INTEnableSystemMultiVectoredInt();

Interrupt Functions

New Style

void __ISR(_TIMER_5_VECTOR, IPL7SRS) Timer5IntHandler(void) 	//(<<<<<<< IPL# must match the priority level assigned to the irq where its enabed, Use 'SRS' if config FSRSSEL is assigned to same level, or use 'SOFT' if not)

IPLnSRS vs IPLnSOFT vs IPLnAUTO

For many PIC32 devices you can specify in the configuration-bit settings an interrupt priority level that will use a special fast shadow register set (e.g. FSRSSEL=PRIORITY_7 "SRS Select").  For these devices you need to specify which context-saving mechanism to use for each interrupt handler:

Some PIC32 variants may have 8 register sets (1 standard set and 7 shadow register sets) meaning that there are enough shadow register sets for every interrupt priority level. For these you should use the IPLnSRS IPL specifier for every interrupt service routine.

Where there is only 1 shadow register set:

For interrupt service routines set to the interrupt priority level which has been assigned the shadow register set, use IPLnSRS.

For all other interrupt service routines use IPLnSOFT.

Use IPLnAUTO to have the compiler generate code that determines the shadow register set assignment at runtime (slower).   The compiler defaults to using IPLnAUTO when the IPL specifier is omitted from the interrupt() attribute.

SRS has the shortest latency, SOFT has a longer latency due to registers saved on the stack and AUTO adds a few cycles to test if SRS or SOFT should be used.

Old Style

void __ISR(_TIMER_5_VECTOR, ipl7) Timer5IntHandler(void) 	//(ipl# must match the priority level assigned to the irq where its enabed)

This will generate a depreciated warning like "warning: Interrupt priority IPL7 is deprecated. Specify as 'IPL7{AUTO|SOFT|SRS}' instead."

 

USEFUL?
We benefit hugely from resources on the web so we decided we should try and give back some of our knowledge and resources to the community by opening up many of our company’s internal notes and libraries through mini sites like this. We hope you find the site helpful.
Please feel free to comment if you can add help to this page or point out issues and solutions you have found, but please note that we do not provide support on this site. If you need help with a problem please use one of the many online forums.

Comments

Your email address will not be published. Required fields are marked *