11.07.2015 Views

PicC 9.50 dsPIC Manual.pdf

PicC 9.50 dsPIC Manual.pdf

PicC 9.50 dsPIC Manual.pdf

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Error and Warning Messages(289) only functions may be qualified interrupt (Parser)The qualifier interrupt may not be applied to anything except a function, e.g.:interrupt int input; /* variables cannot be qualified interrupt */(290) illegal function qualifier(s) (Parser)A qualifier has been applied to a function which makes no sense in this context. Some qualifieronly make sense when used with an lvalue, e.g. const or volatile. This may indicate that you haveforgotten out a star * indicating that the function should return a pointer to a qualified object, e.g.const char ccrv(void) /* woops -- did you mean const * char ccrv(void) ? */{ /* error flagged here */return ccip;}(291) not an argument: * (Parser)This identifier that has appeared in a K&R stype argument declarator is not listed inside the parenthesesafter the function name, e.g.:int process(input)int unput; /* woops -- that should be int input; */{}(292) a parameter may not be a function (Parser)A function parameter may not be a function. It may be a pointer to a function, so perhaps a "*" hasbeen omitted from the declaration.(293) bad size in index_type (Parser)This is an internal compiler error. Contact HI-TECH Software technical support with details.(294) out of near memory (Code Generator)This is an internal compiler error. Contact HI-TECH Software technical support with details.261

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!