SW500009 Microchip Technology, SW500009 Datasheet - Page 339

HI-TECH FOR DSPIC/PIC24

SW500009

Manufacturer Part Number
SW500009
Description
HI-TECH FOR DSPIC/PIC24
Manufacturer
Microchip Technology
Type
Compilerr
Series
PIC24 & DsPICr
Datasheet

Specifications of SW500009

Supported Families
PIC24
Core Architecture
PIC, DsPIC
Software Edition
Standard
Kit Contents
Software And Docs
Tool Type
Compiler
Mcu Supported Families
PIC24 MCUs And DsPIC DSCs
Lead Free Status / RoHS Status
Not applicable / RoHS Compliant
For Use With/related Products
DSPIC3X/PIC24
Lead Free Status / Rohs Status
Lead free / RoHS Compliant
Other names
025
778-1003
778-1003
Error and Warning Messages
(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)
{
}
static void set(long a, int b) /* now it finds out otherwise */
{
}
/* param should be: “int array[]” or “int *” */
int get_first(int array[10])
{
}
struct {
} ;
/* here ling is assumed to be int */
unsigned char bar = (unsigned ling) ’a’;
/* 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)
325

Related parts for SW500009