I create some project for Piccolo device and work with CCS5. I use special compiler words such as "interrupt", "cregister" and etc. There are problem with project build. I have got "Finished building target: piccolo.out" message and no errors in Console window after building. But in Problems window I see a lot of errors. For example:
Description Resource Path Location Type
PINT type could not be resolved DSP2802x_PieVect.h /piccolo/include line 36 Semantic Error
because PINT is
typedef interrupt void(*PINT)(void);
If I remove "interrupt" word, project build is ok. But "interrupt" is needed to correctly work with interrupts. I think Code Analysis in Eclipse do not know TI "interrupt" extension of C language and generate a fake error. How to fix it?