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.

prgram in micro c

Status
Not open for further replies.

mosajawdet

Newbie level 1
Joined
Feb 20, 2013
Messages
0
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,280
Activity points
1,280
Dear all :
I'm a beginner in micro c and i made a program but it doesn't work at Proteus simulation & it compiling write
I'm using pic 16f877a
Code:
 void main() {
 char i;
{
trisd=0x00;
while(1)
Portd.f0=1;
Delay_ms(30000);
Delay_ms(30000);
Delay_ms(30000);
Delay_ms(30000);
portd.f0=0;
for( i==1; i==120 ;i++);
{
Delay_ms(30000);
Delay_ms(30000);
} }
}
 

in microC compiler you can use the below code for accessing the bit.

[/CODE]PORTD_bit_0 = 1;
PORTD_bit_0 = 0;[/CODE]
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top