chipKIT® Development Platform

Inspired by Arduino™

Last edit: 2021-03-21 22:34 by Majenko

SetIntPriority

  1. Synopsis

  2. Description

  3. Return Value

  4. Conforming To

  5. Examples

  6. See Also

Synopsis

 void setIntPriority(int vec, int ipl, int spl)

Description

setIntPriority() sets the interrupt priority level (ipl, 0-7, 0 being disabled) and sub-priority (spl, 0-3) of the specified interrupt vector.

Return Value

None

Conforming To

setIntPriority() does not conform to any external API, it is unique to the chipKIT system.

Examples

 setIntPriority(_TIMER_3_VECTOR, 4, 0);

See Also

attachInterrupt(), detachInterrupt(), clearIntEnable(), clearIntFlag(), clearIntVector(), disableInterrupts(), enableInterrupts(), getIntFlag(), getIntPriority(), getIntVector(), restoreIntEnable(), restoreInterrupts(), setIntEnable(), setIntVector()