void restoreIntEnable(int irq, uint32_t st)
This function restores the interrupt enable flag to a previous state. The value specified in the st parameter should be a value previously returned by setIntEnable() or clearIntEnable()
None
restorIntEnable() does not conform to any external API, it is unique to the chipKIT system.
uint32_t st = clearIntEnable(_TIMER_3_IRQ);
// Do something critical
restoreIntEnable(_TIMER_3_IRQ, st);
attachInterrupt(), detachInterrupt(), clearIntEnable(), clearIntFlag(), clearIntVector(), disableInterrupts(), enableInterrupts(), getIntFlag(), getIntPriority(), getIntVector(), restoreInterrupts(), setIntEnable(), setIntPriority(), setIntVector()