SW500007 Microchip Technology, SW500007 Datasheet - Page 354

PICC-18 PRO

SW500007

Manufacturer Part Number
SW500007
Description
PICC-18 PRO
Manufacturer
Microchip Technology
Type
Compilerr
Series
PIC18r
Datasheets

Specifications of SW500007

Supported Families
PIC18
Core Architecture
PIC
Software Edition
Professional
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
015P
778-1002
778-1002
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 SW500007