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 6.1.3 compiler: identifiers' significant characters

Hello,

in order to make my code MISRA-compliant, I need to know if Code Composer Studio compiler has got a limit on the number of significant characters of identifiers. For example if the limit was 31,  the next lines wouldn't be compliant:

UINT_32 global_variable_with_long_name1x; /* 1st Use */

UINT_32 global_variable_with_long_name1y; /* not compliant */

As my application works properly, I suppose that there are not such limitations, but I want to be sure if eventually there is a high limit.

Thank you for your help,

Sonia