main.c
1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
* Copyright (C) 2015 Kaspar Schleiser <kaspar@schleiser.de>
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @ingroup tests
* @{
*
* @file
* @brief timer test application
*
* @author Kaspar Schleiser <kaspar@schleiser.de>
*
* @}
*/
#include <stdio.h>
#include "msg.h"
#include "thread.h"
#include "xtimer.h"
#define NUMOF (3U)
int main(void)
{
puts("xtimer_remove test application.\n");
kernel_pid_t me = thread_getpid();
for (unsigned int n = 0; n < NUMOF; n++) {
printf("Setting %u timers, removing timer %u/%u\n", NUMOF, n, NUMOF);
xtimer_t timers[NUMOF];
msg_t msg[NUMOF];
for (unsigned int i = 0; i < NUMOF; i++) {
msg[i].type = i;
xtimer_set_msg(&timers[i], 100000*(i+1), &msg[i], me);
}
xtimer_remove(&timers[n]);
unsigned int num = NUMOF-1;
while(num--) {
msg_t m;
msg_receive(&m);
if (m.type == n) {
printf("ERROR: msg type=%i unexpected!\n", m.type);
return -1;
}
else {
printf("timer %u triggered.\n", m.type);
}
}
}
printf("test successful.\n");
return 0;
}