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(208) operands of * not same type (Parser)The operands of this operator are of different pointer, e.g.:int * ip;char * cp, * cp2;cp = flag ? ip : cp2; /* result of ? : will either be int * or char * */Maybe you meant something like:cp = flag ? (char *)ip : cp2;(209) type conflict (Parser)The operands of this operator are of incompatible types.(210) bad size list (Parser)This is an internal compiler error. Contact HI-TECH Software technical support with details.(212) missing number after pragma "pack" (Parser)The pragma pack requires a decimal number as argument. This specifies the alignment of eachmember within the structure. Use this with caution as some processors enforce alignment and willnot operate correctly if word fetches are made on odd boundaries, e.g.:#pragma pack /* what is the alignment value */Maybe you meant something like:#pragma pack 2(214) missing number after pragma "interrupt_level" (Parser)The pragma interrupt_level requires an argument from 0 to 7.(215) missing argument to "pragma switch" (Parser)The pragma switch requires an argument of auto, direct or simple, e.g.:#pragma switch /* woops -- this requires a switch mode */maybe you meant something like:#pragma switch simple246

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

Saved successfully!

Ooh no, something went wrong!