Hello everybody,
I work with the TMDSHVMTRPFCKIT and the board Piccolo TMS320F28069 controlCARD.
The microcontrollor that i use is the TMS320F28069M for motor control.
I have implemented the TIMER2 (see Interruption Project).
When the TIMER2 = 0 there is an interrupt INT14.
The address vector for this interrupt is 0x00000D1C (see vector table)
My interrupt function is:
"
// Function Declaration
__interrupt void int_timer2();
# pragma vector = 0x00000D1C
__interrupt void int_timer2()
{
a = 2;
//Prescale /2
*TIMER2TPR |= (unsigned short)1 << 1;
}
"
When i build my project there is a warning:
"../main.c", line 45: warning #163-D: unrecognized #pragma
and when i debug step by step, the flag INT14 is 1 Ok
but i don't go into my interrupt function int_timer2.
Could you help me please,
Thanks.