1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

tests/evtimer_msg: convert to xtimer_msleep()

This commit is contained in:
Benjamin Valentin 2020-11-04 23:00:50 +01:00
parent fcfb44719f
commit 8d1e4d13e2

View File

@ -111,7 +111,7 @@ int main(void)
NEVENTS);
/* The last offset is the largest, wait for it and a tiny bit more */
xtimer_usleep((offsets[3] + 10) * US_PER_MS);
xtimer_msleep((offsets[3] + 10));
puts("By now all msgs should have been received");
puts("If yes, the tests were successful");
}