Part Number: TMS320F28035
Other Parts Discussed in Thread: CONTROLSUITE
I use ccs3.3 with dsp/bios 5.41.2.14, and some PIE interrupts used in my project, the question confuses me is that I could not use the default pie interrupt function name,
i need to change the name, or the system collapses when power on. Take ADCINT1_ISR() for example.
In the .tcf PIE_INT1_1 configuration, the function is _ADCINT1_ISR, and "use dispatcher" is selected, in the DSP2803x_DefaultIsr.c, the function is like this:
void ADCINT1_ISR(void)
{
...............
}
Then build the project and program the flash, when power on, the system runs totally abnormally.
But if I change the funciton name in .tcf and DSP2803x_DefaultIsr.c, for example, change to ADCINT1_ISR0, then the system runs smoothly.