chipKIT® Development Platform

Inspired by Arduino™

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

SetIntEnable

  1. Synopsis

  2. Description

  3. Return Value

  4. Conforming To

  5. Examples

  6. See Also

Synopsis

 uint32_t setIntEnable(int irq)

Description

Set the interrupt enable flag for the specified interrupt request. This will enable whatever peripheral interrupt is associated with the specified interrupt request.

Return Value

The previous interrupt enable flag setting.

Conforming To

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

Examples

 setIntEnable(_TIMER_3_IRQ);

See Also

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