mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
evtimer: use conversion macro US_PER_MS
This commit is contained in:
parent
1df01a482f
commit
e97882dc56
@ -94,7 +94,7 @@ static void _del_event_from_list(evtimer_t *evtimer, evtimer_event_t *event)
|
||||
|
||||
static void _set_timer(xtimer_t *timer, uint32_t offset_ms)
|
||||
{
|
||||
uint64_t offset_us = (uint64_t)offset_ms * 1000;
|
||||
uint64_t offset_us = (uint64_t)offset_ms * US_PER_MS;
|
||||
|
||||
DEBUG("evtimer: now=%" PRIu32 " us setting xtimer to %" PRIu32 ":%" PRIu32 " us\n",
|
||||
xtimer_now_usec(), (uint32_t)(offset_us >> 32), (uint32_t)(offset_us));
|
||||
|
Loading…
Reference in New Issue
Block a user