I have a project using 3 ExtInt components (INT_PORTB, INT_PORTC and INT_PORTD) on MK10DN128VLF5.
When ProcessorExpert generates code the ISR for INT_PORTD is duplicated CPU.c
PE_ISR(Cpu_ivINT_PORTD)
{
ExtIntLdd3_Interrupt(); /* Call the service routine */
}
PE_ISR(Cpu_ivINT_PORTD)
{
/* This code can be changed using the CPU component property "Build Options / Unhandled int code" */
PE_DEBUGHALT();
}
Clean build etc. did not help.
I also created new project to confirm it's always the same problem.
How can I prevent this from happening?
It's really annoying, every time I build the project I have to go delete the second dummy ISR and build it again.
I use CW10.4 b. id 130425
br,b