tests: irq: switch to xtimer
This commit is contained in:
parent
25c0fc0eb7
commit
8e446af6bb
@ -2,5 +2,6 @@ APPLICATION = irq
|
|||||||
include ../Makefile.tests_common
|
include ../Makefile.tests_common
|
||||||
|
|
||||||
USEMODULE += auto_init
|
USEMODULE += auto_init
|
||||||
|
USEMODULE += xtimer
|
||||||
|
|
||||||
include $(RIOTBASE)/Makefile.include
|
include $(RIOTBASE)/Makefile.include
|
||||||
|
|||||||
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "hwtimer.h"
|
#include "xtimer.h"
|
||||||
#include "thread.h"
|
#include "thread.h"
|
||||||
|
|
||||||
char busy_stack[THREAD_STACKSIZE_MAIN];
|
char busy_stack[THREAD_STACKSIZE_MAIN];
|
||||||
@ -58,8 +58,8 @@ int main(void)
|
|||||||
busy_thread, NULL, "busy_thread");
|
busy_thread, NULL, "busy_thread");
|
||||||
puts("busy_thread created");
|
puts("busy_thread created");
|
||||||
|
|
||||||
puts("hwtimer_wait()");
|
puts("xtimer_wait()");
|
||||||
hwtimer_wait(HWTIMER_TICKS(100000));
|
xtimer_usleep(100000);
|
||||||
busy = 0;
|
busy = 0;
|
||||||
|
|
||||||
puts("main: return");
|
puts("main: return");
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user