I have a question regarding the naming of an interrupt routine. I have polling working on my UART0 and I would like to get the RX interrupt set up. I am using a CSL that was used with the EVM. I am using a c6745 chip on a custom PCB (senior design project). I have looked over the examples related to this chip and I found the interrupt UART example however, I am unclear on one issue. How exactly is the interrupt routine named? The example looks like this:
interrupt void UART2_isr (void)
{
...
}
How do I know what the naming scheme is for the various interrupts and where is this defined? I am using UART0 so naming the interrupt function UART0_isr makes sense but how is this linked and where is it linked? Do I need to define this somewhere?
thanks,
Paul