Hello,
I'm using CCS 4.2.3.00004 with PC-Lint as a pre-build step.
After linting my code, the results were presented in the console view. Errors and warnings were passed to the problems tab. This works fine!
The presentation format of the lint messages is set, to fit the CCS error-parser requirements, so I can jump to corresponding code section.
Now my problem is, that I'd like to see the Info messages as well, but I'm not able to do this.
I already tried to set the filter options, that every message with severity level Error, Warning and Info should be shown.
Is the message format for Infos different, compared to errors and warnings?
Is it possible to show the Info messages?
Example for Warning (works fine):
#define SI32_MIN ((SI_32)-2147483648)
"..\inc\L0\L0_StandardTypes.h", line 90: Warning: The type of
constant '2147483648' (precision 32) is dialect dependent (PC-Lint Msg-No:
694)
Example for Info ( doesn't work):
"..\inc\L0\L0_StandardTypes.h", line 91: Note: Violates MISRA
2004 Required Rule 10.6, Unsigned integer literals require a 'U' suffix
(PC-Lint Msg-No: 960)
Thank you.