tests: driver_lsm303dlhc: vtimer -> xtimer

This commit is contained in:
Kaspar Schleiser 2015-09-03 21:36:13 +02:00
parent 205aed03b0
commit 0438fe9146
2 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ ifneq (,$(filter iotlab-m3,$(BOARD)))
endif endif
USEMODULE += lsm303dlhc USEMODULE += lsm303dlhc
USEMODULE += vtimer USEMODULE += xtimer
ifneq (,$(TEST_LSM303DLHC_I2C)) ifneq (,$(TEST_LSM303DLHC_I2C))
CFLAGS += -DTEST_LSM303DLHC_I2C=$(TEST_LSM303DLHC_I2C) CFLAGS += -DTEST_LSM303DLHC_I2C=$(TEST_LSM303DLHC_I2C)

View File

@ -36,7 +36,7 @@
#include <stdio.h> #include <stdio.h>
#include "vtimer.h" #include "xtimer.h"
#include "lsm303dlhc.h" #include "lsm303dlhc.h"
#define SLEEP (100 * 1000U) #define SLEEP (100 * 1000U)
@ -90,7 +90,7 @@ int main(void)
puts("\nFailed reading magnetometer values\n"); puts("\nFailed reading magnetometer values\n");
} }
vtimer_usleep(SLEEP); xtimer_usleep(SLEEP);
} }
return 0; return 0;