MISRA Discussion Forums
ISR function prototype generates error message in QAC - Printable Version

+- MISRA Discussion Forums (https://forum.misra.org.uk)
+-- Forum: MISRA (https://forum.misra.org.uk/forumdisplay.php?fid=20)
+--- Forum: General Questions (https://forum.misra.org.uk/forumdisplay.php?fid=154)
+--- Thread: ISR function prototype generates error message in QAC (/showthread.php?tid=1202)



ISR function prototype generates error message in QAC - vignesh081191 - 10-09-2015

In our project, we are using atmel microcontroller attiny24A. We are doing static analysis for our single file source code using QAC version 8.0.

The interrupt header file is include in the source file for interrupt usage and we dont get any issue in that
#include

But
We are getting the following error in the declaration of ISR function prototype.
ISR(TIM0_COMPA_vect);
^
Err(9:0926) [S] Expected: ) ,.

Functionality wise the code is working fine. So we have no idea what the QAC is expecting whether it misunderstands the ISR or not?

help me out guys...