I am using a UART RX interrupt. The interrupt works fine but on the terminal it says syntax error i have attached the picture on how it looks like please let me know what changes i will have to make
Solved! Go to Solution.
Hi vikas,
please follow interrupt syntax like this:
interrupt 17 void isr_routine_name(void)
{
< your code ...>
}
this should fix the problem.
=========================================
this answer is for you, if it helps, please click on "correct answer" button. thanks!
Best Regards,
ZhangJun
Hi vikas,
please follow interrupt syntax like this:
interrupt 17 void isr_routine_name(void)
{
< your code ...>
}
this should fix the problem.
=========================================
this answer is for you, if it helps, please click on "correct answer" button. thanks!
Best Regards,
ZhangJun