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(732) can’t initialize bit type (Code Generator)Variables of type bit cannot be initialised, e.g.:bit b1 = 1; /* woops -- b1 must be assigned a value after its definition */(733) bad string "*" in psect pragma (Code Generator)The code generator has been passed a pragma psect directive that has a badly formed string, e.g.:#pragma psect text /* redirect text psect into what? */Maybe you meant something like:#pragma psect text=special_text(734) too many psect pragmas (Code Generator)Too many #pragma psect directives have been used.(739) error closing output file (Code Generator, Optimiser)The compiler detected an error when closing a file. Contact HI-TECH Support with details.(740) bad dimensions (Code Generator)The code generator has been passed a declaration that results in an array having a zero dimension.(741) bit field too large (* bits) (Code Generator)The maximum number of bits in a bit field is the same as the number of bits in an int, e.g. assumingan int is 16 bits wide:struct {unsigned flag : 1;unsigned value : 12;unsigned cont : 6; /* woops -- that makes a total of 19 bits */} object;303

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

Saved successfully!

Ooh no, something went wrong!