This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS: CCS 7.3.0 - interrupt handler code is not highlighted at all

Tool/software: Code Composer Studio

Hello,

I have an issue, if I have any interrupt handler in my code (example of one can be seen bellow) the code of this function is not highlighted at all, but I want it to be highlighted as the rest of the code. Also if I choose any global modules variable or function call in IRQ handler, CCS do not highlights this global module variable / function call as it highlights in the rest of the code. Can anybody please help me to solve this problem? Its really uncomfortable for me :) 

Thank you!




  • The issue is related to the "static interrupt" keywords of the function. There is an older related thread describing a similar issue here.

    If you change the function to "interrupt static" the syntax coloring should work ok. Hope this helps!