From 47d7fc1b6d3ee73105cb7231ba1cc5bfb1cd6c00 Mon Sep 17 00:00:00 2001 From: Christopher Haster Date: Thu, 15 Feb 2018 10:20:12 -0600 Subject: [PATCH] equeue: Removed RTOS dependencies when RTOS not present --- events/equeue/equeue_platform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/events/equeue/equeue_platform.h b/events/equeue/equeue_platform.h index 9c5bec289d..a63243ed9f 100644 --- a/events/equeue/equeue_platform.h +++ b/events/equeue/equeue_platform.h @@ -49,7 +49,7 @@ extern "C" { // Platform includes #if defined(EQUEUE_PLATFORM_POSIX) #include -#elif defined(EQUEUE_PLATFORM_MBED) +#elif defined(EQUEUE_PLATFORM_MBED) && defined(MBED_CONF_RTOS_PRESENT) #include "cmsis_os2.h" #include "mbed_rtos_storage.h" #endif