From c3f7925c1ca786215448ad34fec845792e408274 Mon Sep 17 00:00:00 2001 From: Oleg Hahm <oleg@hobbykeller.org> Date: Sat, 3 Oct 2015 03:45:41 +0200 Subject: [PATCH] tests: msg_send_receive: add a delay Otherwise the pre-condition (receiver is already in RX block) is not met. --- tests/msg_send_receive/Makefile | 3 +++ tests/msg_send_receive/main.c | 3 +++ 2 files changed, 6 insertions(+) diff --git a/tests/msg_send_receive/Makefile b/tests/msg_send_receive/Makefile index e8e8a1bc7c..4e742a0d89 100644 --- a/tests/msg_send_receive/Makefile +++ b/tests/msg_send_receive/Makefile @@ -1,5 +1,8 @@ # name of your application APPLICATION = msg_send_receive + +USEMODULE += xtimer + include ../Makefile.tests_common include $(RIOTBASE)/Makefile.include diff --git a/tests/msg_send_receive/main.c b/tests/msg_send_receive/main.c index 40404583c6..0c4be39ea2 100644 --- a/tests/msg_send_receive/main.c +++ b/tests/msg_send_receive/main.c @@ -15,6 +15,7 @@ * * @author Martine Lenders <mlenders@inf.fu-berlin.de> * @author René Kijewski <rene.kijewski@fu-berlin.de> + * @author Oliver Hahm <oliver.hahm@inria.fr> * * @} */ @@ -23,6 +24,7 @@ #include "cpu_conf.h" #include "thread.h" +#include "xtimer.h" #define THREAD1_STACKSIZE (THREAD_STACKSIZE_MAIN) #define THREAD2_STACKSIZE (THREAD_STACKSIZE_MAIN) @@ -56,6 +58,7 @@ static void *thread1(void *args) success = 0; break; } + xtimer_usleep(200); } if (success) { -- GitLab