From e9b876a18ef1a56b15ac2de2d1ed3f6b6dd2e5ff Mon Sep 17 00:00:00 2001 From: Benjamin Valentin Date: Wed, 4 Nov 2020 23:00:51 +0100 Subject: [PATCH] tests/touch_dev: convert to xtimer_msleep() --- tests/touch_dev/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/touch_dev/main.c b/tests/touch_dev/main.c index 98400d1ecb..a1710d31ec 100644 --- a/tests/touch_dev/main.c +++ b/tests/touch_dev/main.c @@ -73,7 +73,7 @@ int main(void) printf("X: %i, Y:%i\n", touches[0].x, touches[0].y); } - xtimer_usleep(10 * US_PER_MS); + xtimer_msleep(10); } return 0;