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 5.500077 Concerto C28 compiler errors

I'm trying to update header files in my C28 include folder. When I remove the write protect from the header file, several of my source file compiles fail giving the error #5. All I did was to remove the write protect. Removing the .metadata and restarting has no effect. I also tried adding the location to the include options - still no effect.

Any help, please.

Pat

  • Hi Pat,

    Pat Harris said:
    compiles fail giving the error #5

    Is there any more details after "error #5"? Like some description?

    Thanks

    ki

  • Hi Ki,

    I have been bitten by this before, but forgot the cause. When the compiler sees a reference to a header file that isn't in any include folder, it creates this #5 error indicating that a file is missing. The actual line number of the location where this error first occurs is apparently used to mark the location in every source file from then on and an error will be indicated for that file as well. So, when this occurs, all the source files will be lit up with errors, rather than just the one where the error actually occurred. Installing the missing header file removed all the error messages.

    Pat