From e86be35a3524a0d06fbfd75dfe93b8359388b14d Mon Sep 17 00:00:00 2001 From: Rimco Date: Tue, 23 Feb 2021 23:21:54 +0100 Subject: [PATCH] Include dependencies in external interface I noticed that including wifi_manager.h fails if these includes are not (implicitly) in the code. I propose to add them to allow easy inclusion. --- src/wifi_manager.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wifi_manager.h b/src/wifi_manager.h index cba3b989..86af9db3 100644 --- a/src/wifi_manager.h +++ b/src/wifi_manager.h @@ -33,6 +33,8 @@ Contains the freeRTOS task and all necessary support #define WIFI_MANAGER_H_INCLUDED #include +#include "esp_wifi_types.h" +#include "esp_netif.h" #ifdef __cplusplus