2018-02-17 18:50:39 -08:00
|
|
|
#include "timers.h"
|
|
|
|
|
|
|
|
void wait(uint32_t microseconds) {
|
|
|
|
uint32_t old_time = TIMERUS_CNTR_1US_0;
|
2018-02-23 19:09:34 -05:00
|
|
|
while (TIMERUS_CNTR_1US_0 - old_time <= microseconds) {
|
2018-02-17 18:50:39 -08:00
|
|
|
/* Spin-lock. */
|
|
|
|
}
|
|
|
|
}
|