• Applying 6.12 patch affects registry
    We have Keil C51 under NT 4.0. By applying 6.12 patch, we noticed a modification of the registry for another application : ClearCase. This happened twice. In one case, the patch was applied by...
  • UART transmitting interrupt handler
    Hello I am facing a problem in the following code. code :- #include "LPC318x.h" void IRQ_HANDLER(void) __irq { PIO_OUTP_SET = 0x7EFFFFFF; PIO_OUTP_SET = 0x7EFFFFFF; } int main (void...
  • Interrupt handler not being compiled
    I've been trying to figure out an issue I'm seeing and I'm scratching my head at this point. My issue: 1. Interrupt handler (in a file that has just the interrupt handler) is not getting linked...
  • LPC3250 INTERRUPT HANDLER
    Hi everybody.... I have a doubt in Interrupt controller of LPC3250. I did simply in LPC2468. refer code given below: void ExecuteTIMER0ISR(void) __irq { T0IR = 1; // Clear interrupt flag...
  • failure to compile an interrupt handler
    Hello, I am stuck with handling interrupts on lpc3180 uC.I have the following interrupt routine: void IRQ_Handler (void) __irq { MSTIM_INT = MSTIM_INT | 2; PIO_OUTP_SET | = 4; MSTIM_CTRL = MSTIM_CTRL...