From cd99ca5c195f7fd74cef58eeac988fde4cd19b32 Mon Sep 17 00:00:00 2001
From: Kaspar Schleiser <kaspar@schleiser.de>
Date: Thu, 3 Sep 2015 21:36:13 +0200
Subject: [PATCH] tests: driver_mma8652: vtimer -> xtimer

---
 tests/driver_mma8652/Makefile | 2 +-
 tests/driver_mma8652/main.c   | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/tests/driver_mma8652/Makefile b/tests/driver_mma8652/Makefile
index 429d6808af..7f5b8bd2f4 100644
--- a/tests/driver_mma8652/Makefile
+++ b/tests/driver_mma8652/Makefile
@@ -4,7 +4,7 @@ include ../Makefile.tests_common
 FEATURES_REQUIRED = periph_i2c
 
 USEMODULE += mma8652
-USEMODULE += vtimer
+USEMODULE += xtimer
 
 ifneq (,$(TEST_MMA8652_I2C))
   CFLAGS += -DTEST_MMA8652_I2C=$(TEST_MMA8652_I2C)
diff --git a/tests/driver_mma8652/main.c b/tests/driver_mma8652/main.c
index c7c7544be4..db0d954a60 100644
--- a/tests/driver_mma8652/main.c
+++ b/tests/driver_mma8652/main.c
@@ -29,7 +29,7 @@
 
 #include <stdio.h>
 
-#include "vtimer.h"
+#include "xtimer.h"
 #include "mma8652.h"
 
 #define SLEEP       (1000 * 1000U)
@@ -68,7 +68,7 @@ int main(void)
     while (1) {
         mma8652_read(&dev, &x, &y, &z, &status);
         printf("Acceleration, raw: X: %d Y: %d Z: %d S: %2x\n", x, y, z, status);
-        vtimer_usleep(SLEEP);
+        xtimer_usleep(SLEEP);
     }
 
     return 0;
-- 
GitLab