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(121) expression stack overflow at op "*" (Preprocessor)Expressions in #if lines are evaluated using a stack with a size of 128. It is possible for very complexexpressions to overflow this. Simplify the expression.(122) unbalanced paren’s, op is "*" (Preprocessor)The evaluation of a #if expression found mismatched parentheses. Check the expression for correctparenthesisation, e.g.:#if ((A) + (B) /* woops -- a missing ), I think */#define ADDED#endif(123) misplaced "?" or ":", previous operator is * (Preprocessor)A colon operator has been encountered in a #if expression that does not match up with a corresponding? operator, e.g.:#if XXX : YYY /* did you mean: #if COND ? XXX : YYY */(124) illegal character "*" in #if (Preprocessor)There is a character in a #if expression that has no business being there. Valid characters are theletters, digits and those comprising the acceptable operators, e.g.:#if ‘YYY‘ /* what are these characters doing here? */int m;#endif(125) illegal character (* decimal) in #if (Preprocessor)There is a non-printable character in a #if expression that has no business being there. Valid charactersare the letters, digits and those comprising the acceptable operators, e.g.:232#if ^SYYY /* what is this control characters doing here? */int m;#endif

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

Saved successfully!

Ooh no, something went wrong!