Forum Discussion
Altera_Forum
Honored Contributor
16 years agoThe only difference between -s and -f I noticed is the absolut time required for an operation, but this is normal this the -f has a higher performance. The timer does not produce any interrupts. I use the Altera Interval Timer IP-core as Timestamp Timer, which is running in an endless loop. I take snapshots to determine the length of an operation e.g. like this
time1 = timestamp(); operation; time2 = timestamp(); duration = time2 -time1;