1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2026-01-01 01:41:18 +01:00

xtimer: fix formatter for xtimer_now in DEBUG

This commit is contained in:
Oleg Hahm 2017-01-18 16:19:45 +01:00
parent 079a6ec5f4
commit 24c205d3a3

View File

@ -128,7 +128,8 @@ void _xtimer_set64(xtimer_t *timer, uint32_t offset, uint32_t long_offset)
void _xtimer_set(xtimer_t *timer, uint32_t offset)
{
DEBUG("timer_set(): offset=%" PRIu32 " now=%" PRIu32 " (%" PRIu32 ")\n", offset, xtimer_now(), _xtimer_lltimer_now());
DEBUG("timer_set(): offset=%" PRIu32 " now=%" PRIu32 " (%" PRIu32 ")\n",
offset, xtimer_now(), _xtimer_lltimer_now().ticks32);
if (!timer->callback) {
DEBUG("timer_set(): timer has no callback.\n");
return;
@ -434,8 +435,9 @@ static void _timer_callback(void)
_in_handler = 1;
DEBUG("_timer_callback() now=%" PRIu32 " (%" PRIu32 ")pleft=%" PRIu32 "\n", xtimer_now(),
_xtimer_lltimer_mask(xtimer_now()), _xtimer_lltimer_mask(0xffffffff - xtimer_now()));
DEBUG("_timer_callback() now=%" PRIu32 " (%" PRIu32 ")pleft=%" PRIu32 "\n",
xtimer_now().ticks32, _xtimer_lltimer_mask(xtimer_now()),
_xtimer_lltimer_mask(0xffffffff - xtimer_now()));
if (!timer_list_head) {
DEBUG("_timer_callback(): tick\n");