You are on page 1of 1

##Led blinking of one port

void main()
{
P1 = 0x00;

while(1)
{
P1 = ~ P1;
Delay_ms(1000);
}
}

You might also like