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(216) missing argument to "pragma psect" (Parser)The pragma psect requires an argument of the form oldname=newname where oldname is anexisting psect name known to the compiler, and newname is the desired new name, e.g.:#pragma psect /* woops -- this requires an psect to redirect */maybe you meant something like:#pragma psect text=specialtext(218) missing name after pragma "inline" (Parser)The inline pragma expects the name of a function to follow. The function name must be recognizedby the code generator for it to be expanded; other functions are not altered, e.g.:#pragma inline /* what is the function name? */maybe you meant something like:#pragma inline memcpy(219) missing name after pragma "printf_check" (Parser)The printf_check pragma expects the name of a function to follow. This specifies printf-styleformat string checking for the function, e.g.#pragma printf_check /* what function is to be checked? */Maybe you meant something like:#pragma printf_check sprintfPragmas for all the standard printf-like function are already contained in .(220) exponent expected (Parser)A floating point constant must have at least one digit after the e or E., e.g.:float f;f = 1.234e; /* woops -- what is the exponent? */247

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

Saved successfully!

Ooh no, something went wrong!