Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
04/23/03 06:04
Read: times


 
#43982 - RE: atmel 89c2051 programmer
Responding to: ???'s previous message
Hi,
You could use DJGPPs function uclock(). My programer uses this delay function:

//Delay for the specified number of timer counts.
//Each count is 1/1193180 seconds (0.838 uS) in duration.
void Delay(long long xcount)
{
long long count0 = uclock();// initial count
do {} while (uclock() - count0 < xcount);
}

Gabriel.

List of 10 messages in thread
TopicAuthorDate
atmel 89c2051 programmer            01/01/70 00:00      
   RE: atmel 89c2051 programmer            01/01/70 00:00      
      RE: atmel 89c2051 programmer            01/01/70 00:00      
         RE: atmel 89c2051 programmer            01/01/70 00:00      
      RE: atmel 89c2051 programmer            01/01/70 00:00      
   RE: atmel 89c2051 programmer            01/01/70 00:00      
      RE: atmel 89c2051 programmer            01/01/70 00:00      
   RE: atmel 89c2051 programmer            01/01/70 00:00      
      RE: atmel 89c2051 programmer            01/01/70 00:00      
   RE: atmel 89c2051 programmer            01/01/70 00:00      

Back to Subject List