Is it possible to define an interrupt handler outside of your main file?
For instance I set up a uart0IntHandler in startup_ccs.c
Is there a way I can define that function in a different file, i.e. myuart.c that is included in my main file?
When I simply moved the function from main.c to myuart.c the linker could no longer find it. If I want to have this functionality should I just create the uart0IntHandler in main.c and have it hand off to a myuart0IntHandler?