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(101) #* may not follow #else (Preprocessor)A #else or #elif has been used in the same conditional block as a #else. These can only follow a#if, e.g.:#ifdef FOOresult = foo;#elseresult = bar;#elif defined(NEXT) /* the #else above terminated the #if */result = next(0);#endif(102) #* must be in an #if (Preprocessor)The #elif, #else or #endif directive must be preceded by a matching #if line. If there is anapparently corresponding #if line, check for things like extra #endif’s, or improperly terminatedcomments, e.g.:#ifdef FOOresult = foo;#endifresult = bar;#elif defined(NEXT) /* the #endif above terminated the #if */result = next(0);#endif(103) #error: * (Preprocessor)This is a programmer generated error; there is a directive causing a deliberate error. This is normallyused to check compile time defines etc. Remove the directive to remove the error, but first check asto why the directive is there.(104) preprocessor assertion failure (Preprocessor)The argument to a preprocessor #assert directive has evaluated to zero. This is a programmerinduced error.#assert SIZE == 4 /* size should never be 4 */228

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

Saved successfully!

Ooh no, something went wrong!