This commit is contained in:
Larry (TBS) 2015-09-05 12:03:42 +08:00
commit 1026dbde0b
1 changed files with 6 additions and 0 deletions

View File

@ -99,6 +99,12 @@ uint32_t micros(void)
do {
ms = sysTickUptime;
cycle_cnt = SysTick->VAL;
/*
* If the SysTick timer expired during the previous instruction, we need to give it a little time for that
* interrupt to be delivered before we can recheck sysTickUptime:
*/
asm volatile("\tnop\n");
} while (ms != sysTickUptime);
return (ms * 1000) + (usTicks * 1000 - cycle_cnt) / usTicks;
}