We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43544d8 commit 0c038b4Copy full SHA for 0c038b4
libraries/WiFi/src/WiFiGeneric.cpp
@@ -51,6 +51,13 @@ extern "C" {
51
#undef max
52
#include <vector>
53
54
+#include "sdkconfig.h"
55
+
56
+#if CONFIG_FREERTOS_UNICORE
57
+#define ARDUINO_RUNNING_CORE 0
58
+#else
59
+#define ARDUINO_RUNNING_CORE 1
60
+#endif
61
62
static xQueueHandle _network_event_queue;
63
static TaskHandle_t _network_event_task_handle = NULL;
0 commit comments