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

LPC3250 ISR

Hi...I have a doubt with LPC3250 ISR.How to enable an isr in LPC3250? We are doing simply in LPC2468 like below.
ex:
void uart_isr (void) __irq
{ //read received byte
//clear uart int reg
//clear vic int reg
} void enable_vic (void)
{ //set addr of isr fun - uart_isr
//set priortiy
//VICIntEnable
} It is looking very simple in lpc2468. But how to do in LPC3250?