SW500010 Microchip Technology, SW500010 Datasheet - Page 374

HI-TECH C PRO FOR PIC10/12/16

SW500010

Manufacturer Part Number
SW500010
Description
HI-TECH C PRO FOR PIC10/12/16
Manufacturer
Microchip Technology
Type
Compilerr
Series
PIC10/12/16r
Datasheets

Specifications of SW500010

Supported Families
PIC10, PIC12, PIC16
Core Architecture
PIC
Software Edition
Professional
Kit Contents
Software And Docs
Mcu Supported Families
PIC10/12/16
Tool Type
Compiler
Lead Free Status / RoHS Status
Not applicable / Not applicable
For Use With/related Products
PIC10, PIC12, PIC14, PIC16, PIC16E
Lead Free Status / Rohs Status
Lead free / RoHS Compliant
Other names
019P
778-1006
778-1006
(286) declarator too complex
This declarator is too complex for the compiler to handle. Examine the declaration and find a way
to simplify it. If the compiler finds it too complex, so will anybody maintaining the code.
(287) arrays of bits or pointers to bit are illegal
It is not legal to have an array of bits, or a pointer to bit variable, e.g.:
(288) only functions may be void
A variable may not be void. Only a function can be void, e.g.:
(289) only functions may be qualified "interrupt"
The qualifier interrupt may not be applied to anything except a function, e.g.:
(290) illegal function qualifier(s)
A qualifier has been applied to a function which makes no sense in this context. Some qualifier
only make sense when used with an lvalue, e.g. const or volatile. This may indicate that you have
forgotten out a star * indicating that the function should return a pointer to a qualified object, e.g.
374
bit barray[10];
bit * bp;
int a;
void b;
/ * variables cannot be qualified interrupt * /
interrupt int input;
const char ccrv(void) / * const * char ccrv(void) perhaps? * /
{
}
return ccip;
/ * this makes no sense * /
/ * wrong -- no bit arrays * /
/ * wrong -- no pointers to bit variables * /
/ * error flagged here * /
Error and Warning Messages
(Parser)
(Parser)
(Parser)
(Parser)
(Parser)

Related parts for SW500010