From f4905cdf2fe31f0bdc9458b62e61d5b2f36b7af3 Mon Sep 17 00:00:00 2001 From: Mark Webb-Johnson Date: Wed, 16 May 2018 10:32:33 +0800 Subject: [PATCH] Espressif Bluetooth wont compile without stdbool.h being included --- components/bt/bluedroid/osi/include/thread.h | 1 + 1 file changed, 1 insertion(+) diff --git a/components/bt/bluedroid/osi/include/thread.h b/components/bt/bluedroid/osi/include/thread.h index 6a92388d3..377794245 100644 --- a/components/bt/bluedroid/osi/include/thread.h +++ b/components/bt/bluedroid/osi/include/thread.h @@ -15,6 +15,7 @@ #ifndef __THREAD_H__ #define __THREAD_H__ +#include #include "freertos/xtensa_api.h" #include "freertos/FreeRTOSConfig.h" #include "freertos/FreeRTOS.h"