General timing

Questions on other types of hardware and getting it talking to the ARM CPU
Post Reply
YahooArchive
Posts: 1462
Joined: Fri Oct 19, 2012 5:11 am

General timing

Post by YahooArchive »

> Is there a function equal to "pause or wait" but for time in micro
> second and not in mili second.

There is no builtin function, but the free-running microsecond TIMER
can be used to accomplish the task.

save_time = TIMER
while ((TIMER - save_time) < 15) ' wait 15 uSec
loop



Post Reply