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(237) function "*" redefined (Parser)More than one definition for a function has been encountered in this module. Function overloadingis illegal, e.g.:int twice(int a){return a*2;}long twice(long a) /* only one prototype & definition of rv can exist */{return a*2;}(238) illegal initialisation (Parser)You can’t initialise a typedef declaration, because it does not reserve any storage that can be initialised,e.g.:typedef unsigned int uint = 99; /* woops -- uint is a type, not a variable */(239) identifier redefined: * (from line *) (Parser)This identifier has already been defined in the same scope. It cannot be defined again, e.g.:int a; /* a filescope variable called “a” */int a; /* this attempts to define another with the same name */Note that variables with the same name, but defined with different scopes are legal, but not recommended.(240) too many initializers (Parser)There are too many initializers for this object. Check the number of initializers against the objectdefinition (array or structure), e.g.:int ivals[3] = { 2, 4, 6, 8}; /* three elements, but four initializers */250

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

Saved successfully!

Ooh no, something went wrong!