How to remove an interrupt vector?
"trashrobber" <[email protected]>
| Newsgroups | gmane.comp.hardware.rabbit-semiconductor |
|---|---|
| Message-ID | <[email protected]> |
I have an interrupt vector handling timer B
SetVectIntern(0x0B, _TimerBISR);
I don't wan't to disable timer B I just want to quit handling interrupts.
is there a better way than this?
void empty(void){};
SetVectIntern(0x0B, empty); //??