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

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 undefined
Serial.c(63): error: #20: identifier "VICVectCntl14" is undefined
Serial.c(64): error: #20: identifier "VICIntEnable" is undefined
Serial.c(78): error: #20: identifier "VICIntEnClr" is undefined
Serial.c(88): error: #20: identifier "VICIntEnable" is undefined
Serial.c(143): error: #20: identifier "VICVectAddr" is undefined

0