Silent Storm
Newbie level 4
- Joined
- Mar 12, 2013
- Messages
- 5
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,281
- Activity points
- 1,305
In the following program How much Delay Does it Create can any one tell me ???
Please tell me Delay in seconds .. For LPC2148 (ARM 7)
Code:
......
.....
.....
void delay(unsigned long int count)
{
while(count > 0)
{
count--;
}
}
........
.......
.......
delay(100000);
Please tell me Delay in seconds .. For LPC2148 (ARM 7)
Last edited: