mirror of
https://github.com/0xFEEDC0DE64/arduino-esp32.git
synced 2025-07-04 06:16:35 +02:00
Update WiFiGeneric.cpp
Missed definition
This commit is contained in:
@ -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;
|
||||||
|
Reference in New Issue
Block a user