SW500011 Microchip Technology, SW500011 Datasheet - Page 337

HI-TECH X PRO FOR PIC32

SW500011

Manufacturer Part Number
SW500011
Description
HI-TECH X PRO FOR PIC32
Manufacturer
Microchip Technology
Type
Compilerr
Series
PIC32r
Datasheet

Specifications of SW500011

No. Of User Licenses
1
Supported Families
PIC32
Core Architecture
PIC
Supported Hosts
Windows XP, Vista, Linux, Mac OS X
Software Edition
Professional
Kit Contents
Software And Docs
Tool Type
Compiler
Lead Free Status / RoHS Status
Not applicable / Not applicable
For Use With/related Products
PIC32 Series
Lead Free Status / Rohs Status
Lead free / RoHS Compliant
Other names
032
778-1007
778-1007
Error and Warning Messages
(367) identifier is already extern; can’t be static
This function was already declared extern, possibly through an implicit declaration. It has now
been redeclared static, but this redeclaration is invalid.
(368) array dimension on "*[]" ignored
An array dimension on a function parameter has been ignored because the argument is actually
converted to a pointer when passed. Thus arrays of any size may be passed. Either remove the
dimension from the parameter, or define the parameter using pointer syntax, e.g.:
(369) signed bitfields not supported
Only unsigned bitfields are supported. If a bitfield is declared to be type int, the compiler still
treats it as unsigned, e.g.:
(370) illegal basic type; int assumed
The basic type of a cast to a qualified basic type couldn’t not be recognised and the basic type was
assumed to be int, e.g.:
void main(void)
{
}
/* now it finds out otherwise */
static void set(long a, int b)
{
}
/* param should be: “int array[]” or “int *” */
int get_first(int array[10])
{
}
struct {
} ;
/* at this point the compiler assumes set is extern... */
set(10L, 6);
PORTA = a + b;
return array[0];
signed int sign: 1;
signed int value: 15;
/* this must be unsigned */
/* warning flagged here */
(Preprocessor)
(Parser)
(Parser)
(Parser)
337

Related parts for SW500011