Fixed tab vs space
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9279 35acf78f-673a-0410-8e92-d51de3d6d3f4master
parent
8961963e6a
commit
78819b0c79
|
@ -686,7 +686,7 @@ void chThdSleepUntil(systime_t time) {
|
|||
*
|
||||
* @param[in] prev absolute system time of the previous deadline
|
||||
* @param[in] next absolute system time of the next deadline
|
||||
* @return the @p next parameter
|
||||
* @return the @p next parameter
|
||||
*
|
||||
* @api
|
||||
*/
|
||||
|
@ -696,7 +696,7 @@ systime_t chThdSleepUntilWindowed(systime_t prev, systime_t next) {
|
|||
chSysLock();
|
||||
time = chVTGetSystemTimeX();
|
||||
if (chVTIsTimeWithinX(time, prev, next)) {
|
||||
chThdSleepS(next - time);
|
||||
chThdSleepS(next - time);
|
||||
}
|
||||
chSysUnlock();
|
||||
|
||||
|
|
Loading…
Reference in New Issue