SW500008 Microchip Technology, SW500008 Datasheet - Page 354

PICC-18 STD

SW500008

Manufacturer Part Number
SW500008
Description
PICC-18 STD
Manufacturer
Microchip Technology
Type
Compilerr
Series
PIC18r
Datasheets

Specifications of SW500008

Supported Families
PIC18
Core Architecture
PIC
Software Edition
Standard
Kit Contents
Software And Docs
Mcu Supported Families
PIC18
Tool Function
Compiler
Tool Type
Compiler
Lead Free Status / RoHS Status
Not applicable / RoHS Compliant
For Use With/related Products
PIC18 Series
Lead Free Status / Rohs Status
Lead free / RoHS Compliant
Other names
015
778-1001
778-1001
If you do intend to use an expression like this, then indicate that this is so by a cast:
(357) illegal conversion of integer to pointer
An integer has been assigned to or otherwise converted to a pointer type. This will usually mean you
have used the wrong variable, but if this is genuinely what you want to do, use a typecast to inform
the compiler that you want the conversion and the warning will be suppressed. This may also mean
you have forgotten the & address operator, e.g.:
If you do intend to use an expression like this, then indicate that this is so by a cast:
(358) illegal conversion of pointer to integer
A pointer has been assigned to or otherwise converted to a integral type. This will usually mean you
have used the wrong variable, but if this is genuinely what you want to do, use a typecast to inform
the compiler that you want the conversion and the warning will be suppressed. This may also mean
you have forgotten the * dereference operator, e.g.:
If you do intend to use an expression like this, then indicate that this is so by a cast:
340
double dd;
int i;
i = dd;
i = (int)dd;
int * ip;
int i;
ip = i;
ip = (int *)i;
int * ip;
int i;
i = ip;
i = (int)ip;
/* is this really what you meant? */
/* woops -- did you mean ip = &i ? */
/* woops -- did you mean i = *ip ? */
Error and Warning Messages
(Parser)
(Parser)

Related parts for SW500008