Skip to content
This repository was archived by the owner on Jan 29, 2023. It is now read-only.

Commit 9fc8a43

Browse files
authored
v1.2.4 to use mbed TLS v2.7.0+
#### Releases v1.2.4 1. Fix library compile error with ESP32 core v2.0.0-rc1+. Check [Fix compiler error for ESP32-C3 and mbed TLS v2.7.0+ #970](me-no-dev/ESPAsyncWebServer#970) 2. Verify compatibility with new ESP32 core v2.0.0-rc1+
1 parent c735539 commit 9fc8a43

32 files changed

+824
-40
lines changed

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ If you don't find anything, please [open a new issue](https://github.com/khoih-p
1515
Please ensure to specify the following:
1616

1717
* Arduino IDE version (e.g. 1.8.15) or Platform.io version
18-
* Board Core Version (e.g. ESP32 core v1.0.6)
18+
* Board Core Version (e.g. ESP32 core v1.0.6 0r v2.0.0-rc1)
1919
* Contextual information (e.g. what you were trying to achieve)
2020
* Simplest possible steps to reproduce
2121
* Anything that might be relevant in your opinion, such as:
@@ -30,7 +30,7 @@ Arduino IDE version: 1.8.15
3030
WT32_ETH01 board
3131
ESP32 core v1.0.6
3232
OS: Ubuntu 20.04 LTS
33-
Linux xy-Inspiron-3593 5.4.0-77-generic #86-Ubuntu SMP Thu Jun 17 02:35:03 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
33+
Linux xy-Inspiron-3593 5.4.0-80-generic #90-Ubuntu SMP Fri Jul 9 22:49:44 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
3434
3535
Context:
3636
I encountered a crash while trying to use the Timer Interrupt.

README.md

+18-5
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* [Why Async is better](#why-async-is-better)
1717
* [Currently supported Boards](#currently-supported-boards)
1818
* [Changelog](#changelog)
19+
* [Releases v1.2.4](#releases-v124)
1920
* [Releases v1.2.3](#releases-v123)
2021
* [Prerequisites](#prerequisites)
2122
* [Installation](#installation)
@@ -105,7 +106,7 @@ This library is based on, modified from:
105106

106107
1. [Hristo Gochkov's ESPAsyncWebServer](https://github.com/me-no-dev/ESPAsyncWebServer)
107108

108-
to apply the better and faster **asynchronous** feature of the **powerful** [ESPAsyncWebServer Library](https://github.com/me-no-dev/ESPAsyncWebServer) into **WT32_ETH01 boards using LAN8720 Ethernet**.
109+
to apply the better and faster **asynchronous** feature of the **powerful** [ESPAsyncWebServer Library](https://github.com/me-no-dev/ESPAsyncWebServer) into **WT32_ETH01 boards using LAN8720A Ethernet**.
109110

110111

111112
#### Why Async is better
@@ -128,13 +129,19 @@ to apply the better and faster **asynchronous** feature of the **powerful** [ESP
128129

129130
#### Currently supported Boards
130131

131-
1. **WT32_ETH01 boards** using ESP32-based boards and LAN8720 Ethernet
132+
1. **WT32_ETH01 boards** using ESP32-based boards and LAN8720A Ethernet
132133

133134
---
134135
---
135136

136137
## Changelog
137138

139+
#### Releases v1.2.4
140+
141+
1. Fix library compile error with ESP32 core v2.0.0-rc1+. Check [Fix compiler error for ESP32-C3 and mbed TLS v2.7.0+ #970](https://github.com/me-no-dev/ESPAsyncWebServer/pull/970)
142+
2. Verify compatibility with new ESP32 core v2.0.0-rc1+
143+
144+
138145
#### Releases v1.2.3
139146

140147
1. Initial coding to port [ESPAsyncWebServer](https://github.com/me-no-dev/ESPAsyncWebServer) to WT32_ETH01 boards using builtin LAN8720A Ethernet.
@@ -149,7 +156,8 @@ to apply the better and faster **asynchronous** feature of the **powerful** [ESP
149156

150157
1. [`Arduino IDE 1.8.15+` for Arduino](https://www.arduino.cc/en/Main/Software)
151158
2. [`ESP32 Core 1.0.6+`](https://github.com/espressif/arduino-esp32) for ESP32-based boards. [![Latest release](https://img.shields.io/github/release/espressif/arduino-esp32.svg)](https://github.com/espressif/arduino-esp32/releases/latest/)
152-
3. [`AsyncTCP library v1.1.1+`](https://github.com/me-no-dev/AsyncTCP).
159+
3. [`ESP32 Core 2.0.0-rc1+`](https://github.com/espressif/arduino-esp32) for ESP32-based boards to use experimental ESP32 core v2.0.0-rc1.
160+
4. [`AsyncTCP library v1.1.1+`](https://github.com/me-no-dev/AsyncTCP).
153161

154162
---
155163

@@ -1506,7 +1514,7 @@ Following are debug terminal output and screen shots when running example [Async
15061514
15071515
```
15081516
Starting AsyncMultiWebServer_WT32_ETH01 on WT32-ETH01 with ETH_PHY_LAN8720
1509-
AsyncWebServer_WT32_ETH01 v1.2.3
1517+
AsyncWebServer_WT32_ETH01 v1.2.4
15101518
ETH MAC: A8:03:2A:A1:61:73, IPv4: 192.168.2.232
15111519
FULL_DUPLEX, 100Mbps
15121520

@@ -1582,6 +1590,11 @@ Submit issues to: [AsyncWebServer_WT32_ETH01 issues](https://github.com/khoih-pr
15821590

15831591
## Releases
15841592

1593+
#### Releases v1.2.4
1594+
1595+
1. Fix library compile error with ESP32 core v2.0.0-rc1+. Check [Fix compiler error for ESP32-C3 and mbed TLS v2.7.0+ #970](https://github.com/me-no-dev/ESPAsyncWebServer/pull/970)
1596+
2. Verify compatibility with new ESP32 core v2.0.0-rc1+
1597+
15851598
#### Releases v1.2.3
15861599

15871600
1. Initial coding to port [ESPAsyncWebServer](https://github.com/me-no-dev/ESPAsyncWebServer) to WT32_ETH01 boards using builtin LAN8720A Ethernet.
@@ -1593,7 +1606,7 @@ Submit issues to: [AsyncWebServer_WT32_ETH01 issues](https://github.com/khoih-pr
15931606

15941607
#### Currently Supported Boards
15951608

1596-
1. **WT32_ETH01 boards** using ESP32-based boards and LAN8720 Ethernet
1609+
1. **WT32_ETH01 boards** using ESP32-based boards and LAN8720A Ethernet
15971610

15981611

15991612
---

examples/AsyncFSBrowser_WT32_ETH01/AsyncFSBrowser_WT32_ETH01.ino

+10-2
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,24 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_WT32_ETH01
1010
Licensed under GPLv3 license
1111
12-
Version: 1.2.3
12+
Version: 1.2.4
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
1616
1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3
17+
1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+
1718
*****************************************************************************************************************************/
1819

1920
#if !( defined(ESP32) )
2021
#error This code is designed for WT32_ETH01 to run on ESP32 platform! Please check your Tools->Board setting.
21-
#endif
22+
#else
23+
#include "mbedtls/version.h"
24+
25+
#if (MBEDTLS_VERSION_NUMBER >= 0x02070000)
26+
#error Must use ESP32 core v1.0.6-, with MBEDTLS_VERSION_NUMBER < v2.7.0
27+
#endif
28+
29+
#endif
2230

2331
#include <Arduino.h>
2432

examples/AsyncMultiWebServer_WT32_ETH01/AsyncMultiWebServer_WT32_ETH01.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_WT32_ETH01
1010
Licensed under GPLv3 license
1111
12-
Version: 1.2.3
12+
Version: 1.2.4
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
1616
1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3
17+
1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+
1718
*****************************************************************************************************************************/
1819

1920
#if !( defined(ESP32) )

examples/AsyncSimpleServer_WT32_ETH01/AsyncSimpleServer_WT32_ETH01.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,12 @@
2222
You should have received a copy of the GNU Lesser General Public License along with this library;
2323
if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2424
25-
Version: 1.2.3
25+
Version: 1.2.4
2626
2727
Version Modified By Date Comments
2828
------- ----------- ---------- -----------
2929
1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3
30+
1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+
3031
*****************************************************************************************************************************/
3132

3233
#if !( defined(ESP32) )

examples/Async_AdvancedWebServer/Async_AdvancedWebServer.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,12 @@
3737
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
3838
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3939
40-
Version: 1.2.3
40+
Version: 1.2.4
4141
4242
Version Modified By Date Comments
4343
------- ----------- ---------- -----------
4444
1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3
45+
1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+
4546
*****************************************************************************************************************************/
4647

4748
#if !( defined(ESP32) )

examples/Async_HelloServer/Async_HelloServer.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_WT32_ETH01
1010
Licensed under GPLv3 license
1111
12-
Version: 1.2.3
12+
Version: 1.2.4
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
1616
1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3
17+
1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+
1718
*****************************************************************************************************************************/
1819

1920
#if !( defined(ESP32) )

examples/Async_HelloServer2/Async_HelloServer2.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_WT32_ETH01
1010
Licensed under GPLv3 license
1111
12-
Version: 1.2.3
12+
Version: 1.2.4
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
1616
1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3
17+
1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+
1718
*****************************************************************************************************************************/
1819

1920
#if !( defined(ESP32) )

examples/Async_PostServer/Async_PostServer.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_WT32_ETH01
1010
Licensed under GPLv3 license
1111
12-
Version: 1.2.3
12+
Version: 1.2.4
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
1616
1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3
17+
1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+
1718
*****************************************************************************************************************************/
1819

1920
#if !( defined(ESP32) )

examples/Async_RegexPatterns_WT32_ETH01/Async_RegexPatterns_WT32_ETH01.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@
99
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_WT32_ETH01
1010
Licensed under GPLv3 license
1111
12-
Version: 1.2.3
12+
Version: 1.2.4
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
1616
1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3
17+
1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+
1718
*****************************************************************************************************************************/
1819
//
1920
// A simple server implementation with regex routes:

library.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"AsyncWebServer_WT32_ETH01",
3-
"version": "1.2.3",
3+
"version": "1.2.4",
44
"description":"Asynchronous HTTP and WebSocket Server Library for WT32_ETH01 (ESP32 + LAN8720)",
55
"keywords":"http, async, async-webserver, websocket, webserver, esp32, wt32-eth01, lan8720, lan8720a",
66
"authors":

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=AsyncWebServer_WT32_ETH01
2-
version=1.2.3
2+
version=1.2.4
33
author=Hristo Gochkov,Khoi Hoang
44
maintainer=Khoi Hoang <khoih.prog@gmail.com>
55
license=GPLv3

src/AsyncEventSource.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,12 @@
2222
You should have received a copy of the GNU Lesser General Public License along with this library;
2323
if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2424
25-
Version: 1.2.3
25+
Version: 1.2.4
2626
2727
Version Modified By Date Comments
2828
------- ----------- ---------- -----------
2929
1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3
30+
1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+
3031
*****************************************************************************************************************************/
3132

3233
#include "Arduino.h"

src/AsyncEventSource.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,12 @@
2222
You should have received a copy of the GNU Lesser General Public License along with this library;
2323
if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2424
25-
Version: 1.2.3
25+
Version: 1.2.4
2626
2727
Version Modified By Date Comments
2828
------- ----------- ---------- -----------
2929
1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3
30+
1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+
3031
*****************************************************************************************************************************/
3132

3233
#ifndef ASYNCEVENTSOURCE_H_

src/AsyncJson.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,12 @@
2222
You should have received a copy of the GNU Lesser General Public License along with this library;
2323
if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2424
25-
Version: 1.2.3
25+
Version: 1.2.4
2626
2727
Version Modified By Date Comments
2828
------- ----------- ---------- -----------
2929
1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3
30+
1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+
3031
*****************************************************************************************************************************/
3132
/*
3233
Async Response to use with ArduinoJson and AsyncWebServer

src/AsyncWebServer_WT32_ETH01.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,12 @@
2222
You should have received a copy of the GNU Lesser General Public License along with this library;
2323
if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2424
25-
Version: 1.2.3
25+
Version: 1.2.4
2626
2727
Version Modified By Date Comments
2828
------- ----------- ---------- -----------
2929
1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3
30+
1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+
3031
*****************************************************************************************************************************/
3132

3233
#include "AsyncWebServer_WT32_ETH01.h"

src/AsyncWebServer_WT32_ETH01.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,18 @@
2222
You should have received a copy of the GNU Lesser General Public License along with this library;
2323
if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2424
25-
Version: 1.2.3
25+
Version: 1.2.4
2626
2727
Version Modified By Date Comments
2828
------- ----------- ---------- -----------
2929
1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3
30+
1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+
3031
*****************************************************************************************************************************/
3132

3233
#ifndef _AsyncWebServer_WT32_ETH01_H_
3334
#define _AsyncWebServer_WT32_ETH01_H_
3435

35-
#define ASYNC_WEBSERVER_WT32_ETH01_VERSION "AsyncWebServer_WT32_ETH01 v1.2.3"
36+
#define ASYNC_WEBSERVER_WT32_ETH01_VERSION "AsyncWebServer_WT32_ETH01 v1.2.4"
3637

3738
#if ESP32
3839
#warning Using ESP32 architecture for WebServer_WT32_ETH01

src/AsyncWebServer_WT32_ETH01_Debug.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,12 @@
2222
You should have received a copy of the GNU Lesser General Public License along with this library;
2323
if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2424
25-
Version: 1.2.3
25+
Version: 1.2.4
2626
2727
Version Modified By Date Comments
2828
------- ----------- ---------- -----------
2929
1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3
30+
1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+
3031
*****************************************************************************************************************************/
3132

3233
#pragma once

src/AsyncWebSocket.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,12 @@
2222
You should have received a copy of the GNU Lesser General Public License along with this library;
2323
if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2424
25-
Version: 1.2.3
25+
Version: 1.2.4
2626
2727
Version Modified By Date Comments
2828
------- ----------- ---------- -----------
2929
1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3
30+
1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+
3031
*****************************************************************************************************************************/
3132

3233
#include "Arduino.h"

src/AsyncWebSocket.h

+8-1
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,23 @@
2222
You should have received a copy of the GNU Lesser General Public License along with this library;
2323
if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2424
25-
Version: 1.2.3
25+
Version: 1.2.4
2626
2727
Version Modified By Date Comments
2828
------- ----------- ---------- -----------
2929
1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3
30+
1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+
3031
*****************************************************************************************************************************/
3132

3233
#ifndef ASYNCWEBSOCKET_H_
3334
#define ASYNCWEBSOCKET_H_
3435

36+
#include "mbedtls/version.h"
37+
38+
#if (MBEDTLS_VERSION_NUMBER >= 0x02070000)
39+
//#error Must use ESP32 core v1.0.6-, with MBEDTLS_VERSION_NUMBER < v2.7.0
40+
#endif
41+
3542
#include <Arduino.h>
3643

3744
#include <AsyncTCP.h>

src/AsyncWebSynchronization.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,12 @@
2222
You should have received a copy of the GNU Lesser General Public License along with this library;
2323
if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2424
25-
Version: 1.2.3
25+
Version: 1.2.4
2626
2727
Version Modified By Date Comments
2828
------- ----------- ---------- -----------
2929
1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3
30+
1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+
3031
*****************************************************************************************************************************/
3132

3233
#ifndef ASYNCWEBSYNCHRONIZATION_H_

src/StringArray.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,12 @@
2222
You should have received a copy of the GNU Lesser General Public License along with this library;
2323
if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2424
25-
Version: 1.2.3
25+
Version: 1.2.4
2626
2727
Version Modified By Date Comments
2828
------- ----------- ---------- -----------
2929
1.2.3 K Hoang 17/07/2021 Initial porting for WT32_ETH01 (ESP32 + LAN8720). Sync with ESPAsyncWebServer v1.2.3
30+
1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+
3031
*****************************************************************************************************************************/
3132

3233
#ifndef STRINGARRAY_H_

0 commit comments

Comments
 (0)