Update WiFiGeneric.cpp

Missed definition
This commit is contained in:
Me No Dev 2017-10-21 09:50:43 +03:00 committed by GitHub
parent 43544d89c5
commit 0c038b4063

View File

@ -51,6 +51,13 @@ extern "C" {
#undef max #undef max
#include <vector> #include <vector>
#include "sdkconfig.h"
#if CONFIG_FREERTOS_UNICORE
#define ARDUINO_RUNNING_CORE 0
#else
#define ARDUINO_RUNNING_CORE 1
#endif
static xQueueHandle _network_event_queue; static xQueueHandle _network_event_queue;
static TaskHandle_t _network_event_task_handle = NULL; static TaskHandle_t _network_event_task_handle = NULL;