tests: remove timer after each loop

...in xtimer_msg_receive_timeout
This commit is contained in:
Oleg Hahm 2016-03-01 21:44:19 +01:00
parent a92f30e13f
commit 91432faccb

View File

@ -45,7 +45,7 @@ int main(void)
printf("Message received: %" PRIu16 "\n", m.type); printf("Message received: %" PRIu16 "\n", m.type);
} }
offset = (offset < 0) ? 1000 : -1000; offset = (offset < 0) ? 1000 : -1000;
}
xtimer_remove(&t); xtimer_remove(&t);
}
return 0; return 0;
} }