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.

problem with the code DDR_INI()

Status
Not open for further replies.

ghoola

Member level 2
Member level 2
Joined
Aug 7, 2013
Messages
43
Helped
0
Reputation
0
Reaction score
0
Trophy points
6
Location
india
Visit site
Activity points
352
what is this code meaning?
Code:
DDR_INI();
I register in this forum for help so help me please
 

Thatseems to be a function.
Fe. I found a code where in the header file is:
Code:
#define DDR_INI() DDRB|=_BV(0)|_BV(1)|_BV(2)
and the function is run in .c:
Code:
DDR_INI();
 

Thatseems to be a function.
Fe. I found a code where in the header file is:
Code:
#define DDR_INI() DDRB|=_BV(0)|_BV(1)|_BV(2)
and the function is run in .c:
Code:
DDR_INI();

you mean it's for initialization a port?
 

DDR_INI(); does whatever is written in the header file. Find all references to 'DDR_INI' in the project.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top