1
0
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:
smlng 2018-05-23 15:13:31 +02:00
parent 1df01a482f
commit e97882dc56

View File

@ -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));