mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
vtimer: fix usage in test application
This commit is contained in:
parent
0f4343b5f7
commit
96277d1f97
@ -37,8 +37,8 @@ struct timer_msg {
|
||||
|
||||
timex_t now;
|
||||
|
||||
struct timer_msg msg_a = { .timer = {0}, .interval = { .seconds = 2, .microseconds = 0}, .msg = "Hello World" };
|
||||
struct timer_msg msg_b = { .timer = {0}, .interval = { .seconds = 5, .microseconds = 0}, .msg = "This is a Test" };
|
||||
struct timer_msg msg_a = { .interval = { .seconds = 2, .microseconds = 0}, .msg = "Hello World" };
|
||||
struct timer_msg msg_b = { .interval = { .seconds = 5, .microseconds = 0}, .msg = "This is a Test" };
|
||||
|
||||
void timer_thread(void)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user