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

Commit e85bc6f

Browse files
authored
v1.2.5 to update PIO
### Releases v1.2.5 1. Update `platform.ini` and `library.json` to use original `khoih-prog` instead of `khoih.prog` after PIO fix
1 parent cd5dfbe commit e85bc6f

33 files changed

+95
-141
lines changed

CONTRIBUTING.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ If you don't find anything, please [open a new issue](https://github.com/khoih-p
1414

1515
Please ensure to specify the following:
1616

17-
* Arduino IDE version (e.g. 1.8.15) or Platform.io version
18-
* Board Core Version (e.g. ESP32 core v1.0.6 0r v2.0.0-rc1)
17+
* Arduino IDE version (e.g. 1.8.16) or Platform.io version
18+
* Board Core Version (e.g. ESP32 core v2.0.0)
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:
@@ -26,11 +26,11 @@ Please ensure to specify the following:
2626
### Example
2727

2828
```
29-
Arduino IDE version: 1.8.15
29+
Arduino IDE version: 1.8.16
3030
WT32_ETH01 board
31-
ESP32 core v1.0.6
31+
ESP32 core v2.0.0
3232
OS: Ubuntu 20.04 LTS
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
33+
Linux xy-Inspiron-3593 5.4.0-86-generic #97-Ubuntu SMP Fri Sep 17 19:19:40 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

+5-57
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@
1515
* [Features](#features)
1616
* [Why Async is better](#why-async-is-better)
1717
* [Currently supported Boards](#currently-supported-boards)
18-
* [Changelog](#changelog)
19-
* [Releases v1.2.4](#releases-v124)
20-
* [Releases v1.2.3](#releases-v123)
18+
* [Changelog](changelog.md)
2119
* [Prerequisites](#prerequisites)
2220
* [Installation](#installation)
2321
* [Use Arduino Library Manager](#use-arduino-library-manager)
@@ -86,7 +84,6 @@
8684
* [1. AsyncMultiWebServer_WT32_ETH01 on WT32-ETH01 with ETH_PHY_LAN8720](#1-asyncmultiwebserver_wt32_eth01-on-wt32-eth01-with-eth_phy_lan8720)
8785
* [Debug](#debug)
8886
* [Troubleshooting](#troubleshooting)
89-
* [Releases](#releases)
9087
* [Issues](#issues)
9188
* [TO DO](#to-do)
9289
* [DONE](#done)
@@ -134,30 +131,12 @@ to apply the better and faster **asynchronous** feature of the **powerful** [ESP
134131
---
135132
---
136133

137-
## Changelog
138-
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-
145-
#### Releases v1.2.3
146-
147-
1. Initial coding to port [ESPAsyncWebServer](https://github.com/me-no-dev/ESPAsyncWebServer) to WT32_ETH01 boards using builtin LAN8720A Ethernet.
148-
2. Add more examples.
149-
3. Add debugging features.
150-
4. Bump up to v1.2.3 to sync with [ESPAsyncWebServer v1.2.3](https://github.com/me-no-dev/ESPAsyncWebServer).
151-
152-
---
153-
---
154134

155135
## Prerequisites
156136

157-
1. [`Arduino IDE 1.8.15+` for Arduino](https://www.arduino.cc/en/Main/Software)
158-
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/)
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).
137+
1. [`Arduino IDE 1.8.16+`](https://www.arduino.cc/en/Main/Software)
138+
2. [`ESP32 Core 2.0.0+`](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/)
139+
3. [`AsyncTCP library v1.1.1+`](https://github.com/me-no-dev/AsyncTCP).
161140

162141
---
163142

@@ -1514,7 +1493,7 @@ Following are debug terminal output and screen shots when running example [Async
15141493
15151494
```
15161495
Starting AsyncMultiWebServer_WT32_ETH01 on WT32-ETH01 with ETH_PHY_LAN8720
1517-
AsyncWebServer_WT32_ETH01 v1.2.4
1496+
AsyncWebServer_WT32_ETH01 v1.2.5
15181497
ETH MAC: A8:03:2A:A1:61:73, IPv4: 192.168.2.232
15191498
FULL_DUPLEX, 100Mbps
15201499

@@ -1588,37 +1567,6 @@ Submit issues to: [AsyncWebServer_WT32_ETH01 issues](https://github.com/khoih-pr
15881567
---
15891568
---
15901569

1591-
## Releases
1592-
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-
1598-
#### Releases v1.2.3
1599-
1600-
1. Initial coding to port [ESPAsyncWebServer](https://github.com/me-no-dev/ESPAsyncWebServer) to WT32_ETH01 boards using builtin LAN8720A Ethernet.
1601-
2. Add more examples.
1602-
3. Add debugging features.
1603-
4. Bump up to v1.2.3 to sync with [ESPAsyncWebServer v1.2.3](https://github.com/me-no-dev/ESPAsyncWebServer).
1604-
1605-
---
1606-
1607-
#### Currently Supported Boards
1608-
1609-
1. **WT32_ETH01 boards** using ESP32-based boards and LAN8720A Ethernet
1610-
1611-
1612-
---
1613-
1614-
This library is based on, modified from:
1615-
1616-
1. [Hristo Gochkov's ESPAsyncWebServer](https://github.com/me-no-dev/ESPAsyncWebServer)
1617-
1618-
to apply the better and faster **asynchronous** feature of the [ESPAsyncWebServer Library](https://github.com/me-no-dev/ESPAsyncWebServer) into WT32_ETH01 boards using LAN8720A Ethernet.
1619-
1620-
---
1621-
---
16221570

16231571
### Contributions and Thanks
16241572

changelog.md

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# AsyncWebServer_WT32_ETH01
2+
3+
[![arduino-library-badge](https://www.ardu-badge.com/badge/AsyncWebServer_WT32_ETH01.svg?)](https://www.ardu-badge.com/AsyncWebServer_WT32_ETH01)
4+
[![GitHub release](https://img.shields.io/github/release/khoih-prog/AsyncWebServer_WT32_ETH01.svg)](https://github.com/khoih-prog/AsyncWebServer_WT32_ETH01/releases)
5+
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](#Contributing)
6+
[![GitHub issues](https://img.shields.io/github/issues/khoih-prog/AsyncWebServer_WT32_ETH01.svg)](http://github.com/khoih-prog/AsyncWebServer_WT32_ETH01/issues)
7+
8+
---
9+
---
10+
11+
## Table of contents
12+
13+
* [Changelog](#changelog)
14+
* [Releases v1.2.5](#releases-v125)
15+
* [Releases v1.2.4](#releases-v124)
16+
* [Releases v1.2.3](#releases-v123)
17+
18+
19+
---
20+
---
21+
22+
## Changelog
23+
24+
### Releases v1.2.5
25+
26+
1. Update `platform.ini` and `library.json` to use original `khoih-prog` instead of `khoih.prog` after PIO fix
27+
28+
29+
#### Releases v1.2.4
30+
31+
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)
32+
2. Verify compatibility with new ESP32 core v2.0.0-rc1+
33+
34+
35+
#### Releases v1.2.3
36+
37+
1. Initial coding to port [ESPAsyncWebServer](https://github.com/me-no-dev/ESPAsyncWebServer) to WT32_ETH01 boards using builtin LAN8720A Ethernet.
38+
2. Add more examples.
39+
3. Add debugging features.
40+
4. Bump up to v1.2.3 to sync with [ESPAsyncWebServer v1.2.3](https://github.com/me-no-dev/ESPAsyncWebServer).
41+
42+

examples/AsyncFSBrowser_WT32_ETH01/AsyncFSBrowser_WT32_ETH01.ino

-7
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,6 @@
88
Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer)
99
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_WT32_ETH01
1010
Licensed under GPLv3 license
11-
12-
Version: 1.2.4
13-
14-
Version Modified By Date Comments
15-
------- ----------- ---------- -----------
16-
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+
1811
*****************************************************************************************************************************/
1912

2013
#if !( defined(ESP32) )

examples/AsyncMultiWebServer_WT32_ETH01/AsyncMultiWebServer_WT32_ETH01.ino

-7
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,6 @@
88
Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer)
99
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_WT32_ETH01
1010
Licensed under GPLv3 license
11-
12-
Version: 1.2.4
13-
14-
Version Modified By Date Comments
15-
------- ----------- ---------- -----------
16-
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+
1811
*****************************************************************************************************************************/
1912

2013
#if !( defined(ESP32) )

examples/AsyncSimpleServer_WT32_ETH01/AsyncSimpleServer_WT32_ETH01.ino

-7
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,6 @@
2121
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
24-
25-
Version: 1.2.4
26-
27-
Version Modified By Date Comments
28-
------- ----------- ---------- -----------
29-
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+
3124
*****************************************************************************************************************************/
3225

3326
#if !( defined(ESP32) )

examples/Async_AdvancedWebServer/Async_AdvancedWebServer.ino

-7
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,6 @@
3636
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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.
39-
40-
Version: 1.2.4
41-
42-
Version Modified By Date Comments
43-
------- ----------- ---------- -----------
44-
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+
4639
*****************************************************************************************************************************/
4740

4841
#if !( defined(ESP32) )

examples/Async_HelloServer/Async_HelloServer.ino

-7
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,6 @@
88
Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer)
99
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_WT32_ETH01
1010
Licensed under GPLv3 license
11-
12-
Version: 1.2.4
13-
14-
Version Modified By Date Comments
15-
------- ----------- ---------- -----------
16-
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+
1811
*****************************************************************************************************************************/
1912

2013
#if !( defined(ESP32) )

examples/Async_HelloServer2/Async_HelloServer2.ino

-7
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,6 @@
88
Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer)
99
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_WT32_ETH01
1010
Licensed under GPLv3 license
11-
12-
Version: 1.2.4
13-
14-
Version Modified By Date Comments
15-
------- ----------- ---------- -----------
16-
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+
1811
*****************************************************************************************************************************/
1912

2013
#if !( defined(ESP32) )

examples/Async_PostServer/Async_PostServer.ino

-7
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,6 @@
88
Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer)
99
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_WT32_ETH01
1010
Licensed under GPLv3 license
11-
12-
Version: 1.2.4
13-
14-
Version Modified By Date Comments
15-
------- ----------- ---------- -----------
16-
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+
1811
*****************************************************************************************************************************/
1912

2013
#if !( defined(ESP32) )

examples/Async_RegexPatterns_WT32_ETH01/Async_RegexPatterns_WT32_ETH01.ino

-7
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,6 @@
88
Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer)
99
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_WT32_ETH01
1010
Licensed under GPLv3 license
11-
12-
Version: 1.2.4
13-
14-
Version Modified By Date Comments
15-
------- ----------- ---------- -----------
16-
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+
1811
*****************************************************************************************************************************/
1912
//
2013
// 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.4",
3+
"version": "1.2.5",
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.4
2+
version=1.2.5
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,12 +22,13 @@
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.4
25+
Version: 1.2.5
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
3030
1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+
31+
1.2.5 K Hoang 09/10/2021 Update `platform.ini` and `library.json`
3132
*****************************************************************************************************************************/
3233

3334
#include "Arduino.h"

src/AsyncEventSource.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@
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.4
25+
Version: 1.2.5
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
3030
1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+
31+
1.2.5 K Hoang 09/10/2021 Update `platform.ini` and `library.json`
3132
*****************************************************************************************************************************/
3233

3334
#ifndef ASYNCEVENTSOURCE_H_

src/AsyncJson.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@
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.4
25+
Version: 1.2.5
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
3030
1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+
31+
1.2.5 K Hoang 09/10/2021 Update `platform.ini` and `library.json`
3132
*****************************************************************************************************************************/
3233
/*
3334
Async Response to use with ArduinoJson and AsyncWebServer

src/AsyncWebServer_WT32_ETH01.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@
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.4
25+
Version: 1.2.5
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
3030
1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+
31+
1.2.5 K Hoang 09/10/2021 Update `platform.ini` and `library.json`
3132
*****************************************************************************************************************************/
3233

3334
#include "AsyncWebServer_WT32_ETH01.h"

src/AsyncWebServer_WT32_ETH01.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,19 @@
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.4
25+
Version: 1.2.5
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
3030
1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+
31+
1.2.5 K Hoang 09/10/2021 Update `platform.ini` and `library.json`
3132
*****************************************************************************************************************************/
3233

3334
#ifndef _AsyncWebServer_WT32_ETH01_H_
3435
#define _AsyncWebServer_WT32_ETH01_H_
3536

36-
#define ASYNC_WEBSERVER_WT32_ETH01_VERSION "AsyncWebServer_WT32_ETH01 v1.2.4"
37+
#define ASYNC_WEBSERVER_WT32_ETH01_VERSION "AsyncWebServer_WT32_ETH01 v1.2.5"
3738

3839
#if ESP32
3940
#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,12 +22,13 @@
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.4
25+
Version: 1.2.5
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
3030
1.2.4 K Hoang 02/08/2021 Fix Mbed TLS compile error with ESP32 core v2.0.0-rc1+
31+
1.2.5 K Hoang 09/10/2021 Update `platform.ini` and `library.json`
3132
*****************************************************************************************************************************/
3233

3334
#pragma once

0 commit comments

Comments
 (0)