Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

PIC code in C Language

Status
Not open for further replies.

amirm2039

Newbie level 6
Joined
Sep 13, 2014
Messages
12
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
89
Hi,
Could you give me an explanation of below code, please?

UINT8TYPE( XferStatus )=0x00;

uC: PIC(PIC18F252)
Language: C
Compiler: ?

Thanks
 

Hi,
Could you give me an explanation of below code, please?

UINT8TYPE( XferStatus )=0x00;

uC: PIC(PIC18F252)
Language: C
Compiler: ?

Thanks

where did you find this code?
 

Hi,
Could you give me an explanation of below code, please?

UINT8TYPE( XferStatus )=0x00;

uC: PIC(PIC18F252)
Language: C
Compiler: ?

Thanks

your code line is not correct.

it may be:
UINT8 XferStatus=0x00;
 

Or maybe
Code:
(UINT8TYPE) xferstatus = 0x00;
if a typedef is being used as a cast but the original line posted makes no sense.

Brian.
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top