Hello
For a particular application I want to use INT5 in 6472. I am using CCS v4. So I'm writing the ISR like this:
#pragma vector=5
__interrupt void my_isr(void)
{
...................
return;
}
But it is giving a warning "unrecognized #pragma". How to solve this problem? Do I need to include any header file to make it run?
Regards,
AC.