• Interrupt Enable?
    Study the traffic example bout RTX-51 and interrupt. I was so confused. Since I can not find any file called the function os_enable_isr(). And the serial file use the standard C51 interrupt function...
  • Debugger(BSL), Interrupt Enables and Variable Values
    I created and use an ASSERT macro to validate param's passed to func's, as well as the value of global var's used by ISR's, etc. I noticed that occasionally while debugging, an ASSERT would trigger for...
  • RTC INTERRUPT ENABLE
    my code hangs in following statement while lcd initialization. void RTC_INIT (void) { PREINT=(int)(PCLK / 32768)-1; PREFRAC=PCLK - ((PREINT+1)* 32768); CIIR=0X00000002; //min counter register...
  • Global Interruption Disable/Enable
    Which is the easiest way for Global Interruptions Disable/Enable in CA for LPC2129? Varuzhan
  • Enable UART1 interrupts LPC1768
    /* Enable UART1 interrupts. */ IN LPC1768 VICVectAddr14 = (U32)handler_UART1; VICVectCntl14 = 0x27; VICIntEnable = (1 << 7); BUT ERROR: Serial.c(62): error: #20: identifier "VICVectAddr14" is...