Arduino 3.0.3 compatibility

This commit is contained in:
Mathieu Carbou
2024-07-17 15:57:37 +02:00
parent af12f8fac6
commit 15581b57ec
2 changed files with 8 additions and 2 deletions
+6
View File
@@ -33,6 +33,12 @@ extern "C"{
#include "esp_task_wdt.h"
#endif
// Required for:
// https://github.com/espressif/arduino-esp32/blob/3.0.3/libraries/Network/src/NetworkInterface.cpp#L37-L47
#if ESP_IDF_VERSION_MAJOR >= 5
#include <NetworkInterface.h>
#endif
/*
* TCP/IP Event Task
* */
+2 -2
View File
@@ -22,10 +22,10 @@
#ifndef ASYNCTCP_H_
#define ASYNCTCP_H_
#define ASYNCTCP_VERSION "3.2.1"
#define ASYNCTCP_VERSION "3.2.2"
#define ASYNCTCP_VERSION_MAJOR 3
#define ASYNCTCP_VERSION_MINOR 2
#define ASYNCTCP_VERSION_REVISION 1
#define ASYNCTCP_VERSION_REVISION 2
#define ASYNCTCP_FORK_mathieucarbou
#include "IPAddress.h"