We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
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?