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(330) pointer to * argument required (Parser)A pointer argument is required for this format specifier. Check the number and order of formatspecifiers and corresponding arguments.(331) too few arguments for format string (Parser)There are too few arguments for this format string. This would result in a garbage value being printedor converted at run time, e.g.:printf(“%d - %d”, low); /* woops -- where is the other value to print? */(332) interrupt_level should be 0 to 7 (Parser)The pragma interrupt_level must have an argument from 0 to 7, e.g.:#pragma interrupt_level /* woops -- what is the level */void interrupt isr(void){/* isr code goes here */}(333) unrecognized qualifier name after "strings" (Parser)The pragma strings was passed a qualifier that was not identified, e.g.:#pragma strings cinst /* woops -- should that be #pragma strings const ? */(335) unknown pragma * (Parser)An unknown pragma directive was encountered, e.g.:#pragma rugsused w /* I think you meant regsused */(336) string concatenation across lines (Parser)Strings on two lines will be concatenated. Check that this is the desired result, e.g.:char * cp = “hi”“there”; /* this is okay, but is it what you had intended? */267

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

Saved successfully!

Ooh no, something went wrong!