• RE: PINSEL0 in LPC2148 (UART1 INITIALISATION)
    in the keil ide example prog of uart the ports used for enabling uart1 is PINSEL0 = 0x00050000;,but when comparing the pin with the lpc schematics the uart1 pins are p0.8,p0.9 ,i'm not getting how the...
  • RE: PINSEL0 in LPC2148 (UART1 INITIALISATION)
    in the keil ide example prog of uart the ports used for enabling uart1 is PINSEL0 = 0x00050000;,but when comparing the pin with the lpc schematics the uart1 pins are p0.8,p0.9 ,i'm not getting how the...
  • 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...
  • 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...
  • Cant get to UART1 interrupt on F067
    I used the SI Labs config 2 wizard to generate the following code and then added the interrupt at the bottom. The only thing I do in my main is try to set TI1 to 1 which should signal hardware to jump...