This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Interrupts with MCB2130 (lpc2138)

Hello everybody,

i want to use the INT1 Button on my MCB2130 as an external interrupt. Unfortunately, it doesn't work.
If i use the Button, the lpc2138 restarts :-(

EXTMODE = 1;
EXTPOLAR = 1;
PINSEL0 = 1 << 29;
VICVectAddr15 = (unsigned long) isr_button_int1;
VICVectCntl15 = 0x05;
VICIntEnable = 1 << 15;

0