chipKIT® Development Platform

Inspired by Arduino™

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

ClearIntVector

  1. Synopsis

  2. Description

  3. Return Value

  4. Conforming To

  5. Examples

  6. See Also

Synopsis

 isrFunc clearIntVector(int vec)

Description

clearIntVector detatches the interrupt function from an interrupt vector. This stops the interrupt function from being called when the interrupt is triggered.

Return Value

A pointer to the existing interrupt function.

Conforming To

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

Examples

 isrFunc f = clearIntVector(_TIMER_3_VECTOR);

See Also

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