Altera_Forum
Honored Contributor
12 years agoNios II timer and erroneous usleep() results
I am using a Nios II processor running at 50MHz with a timestamp timer and a system timer. I am noticing that the usleep() function is not returning expected time delays. For the code:
frame_start_time = alt_timestamp(); usleep(400); frame_stop_time = alt_timestamp(); delay = frame_stop_time - frame_start_time; I get a delay value of 47,342 where I would expect a value of 20,000. Am I misunderstanding how the alt_timestamp() counter is counting or how the usleep() function operates? The alt_timestamp() function does produce expected timing results in another location in the code, I am just not able to get expected delays using the usleep() function.