Fixed obsolete function call in test suite.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10890 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
ede7f0ef09
commit
07bf11c821
|
@ -1553,7 +1553,7 @@ void test_cpu_pulse(unsigned duration) {
|
|||
_sim_check_for_interrupts();
|
||||
#endif
|
||||
}
|
||||
while (chVTIsTimeWithinX(now, start, end));
|
||||
while (chTimeIsInRangeX(now, start, end));
|
||||
}
|
||||
#endif /* CH_DBG_THREADS_PROFILING */
|
||||
|
||||
|
|
|
@ -78,7 +78,7 @@ void test_cpu_pulse(unsigned duration) {
|
|||
_sim_check_for_interrupts();
|
||||
#endif
|
||||
}
|
||||
while (chVTIsTimeWithinX(now, start, end));
|
||||
while (chTimeIsInRangeX(now, start, end));
|
||||
}
|
||||
#endif /* CH_DBG_THREADS_PROFILING */
|
||||
|
||||
|
|
Loading…
Reference in New Issue