Hello
It looks like you have defined a interrupt function with interrupt <vector_num> somewhere in your application and you have also define an interrupt vector table.
The two definition are overlapping.
Please open your .map file in an editor window and check what is allocated at address 0x3FFD.
In order to remove the message remove the vector number next to the interrupt keyword.
CrasyCat
Hello
It looks like you have defined a interrupt function with interrupt <vector_num> somewhere in your application and you have also define an interrupt vector table.
The two definition are overlapping.
Please open your .map file in an editor window and check what is allocated at address 0x3FFD.
In order to remove the message remove the vector number next to the interrupt keyword.
CrasyCat