Skip to content
Snippets Groups Projects
Commit 144a912e authored by Kaspar Schleiser's avatar Kaspar Schleiser
Browse files

tests: periph_uart_int: vtimer -> xtimer

parent d4ed8fe6
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,6 @@ include ../Makefile.tests_common
FEATURES_REQUIRED = periph_uart
USEMODULE += vtimer
USEMODULE += xtimer
include $(RIOTBASE)/Makefile.include
......@@ -36,7 +36,7 @@
#include "kernel.h"
#include "thread.h"
#include "board.h"
#include "vtimer.h"
#include "xtimer.h"
#include "ringbuffer.h"
#include "periph/uart.h"
#include "periph_conf.h"
......@@ -87,7 +87,7 @@ void *uart_thread(void *arg)
ringbuffer_add(&tx_buf, status, strlen(status));
uart_tx_begin(DEV);
vtimer_usleep(2000ul * 1000ul);
xtimer_usleep(2000ul * 1000ul);
}
return 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment