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

Commit 4f4c284

Browse files
authored
v2.4.0 for ESP32 and LwIP W5500 Ethernet
### Releases v2.4.0 1. Add support to ESP32 boards using `LwIP W5500 Ethernet` 2. Fix bug. Check [Fix "blank new line in chunk" bug #50](khoih-prog/AsyncHTTPRequest_Generic#50)
1 parent 6168613 commit 4f4c284

9 files changed

+155
-33
lines changed

README.md

Lines changed: 124 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@
3838
* [1. ESP32 has 2 ADCs, named ADC1 and ADC2](#1--esp32-has-2-adcs-named-adc1-and-adc2)
3939
* [2. ESP32 ADCs functions](#2-esp32-adcs-functions)
4040
* [3. ESP32 WiFi uses ADC2 for WiFi functions](#3-esp32-wifi-uses-adc2-for-wifi-functions)
41+
* [HOWTO use ESP32 with LwIP W5500 or ENC28J60 Ethernet](#HOWTO-use-ESP32-with-LwIP-W5500-or-ENC28J60-Ethernet)
42+
* [1. ESP32 Wiring](#1-ESP32-wiring)
4143
* [Examples](#examples)
4244
* [For ESP32](#for-esp32)
4345
* [1. AsyncHTTPSRequest_ESP](examples/AsyncHTTPSRequest_ESP)
@@ -63,6 +65,7 @@
6365
* [ 9. AsyncHTTPSRequest_ESP_Multi on ESP32_DEV](#9-AsyncHTTPSRequest_ESP_Multi-on-ESP32_DEV) **New**
6466
* [10. AsyncHTTP_HTTPSRequest_ESP on ESP32_DEV](#10-AsyncHTTP_HTTPSRequest_ESP-on-ESP32_DEV) **New**
6567
* [11. AsyncHTTPSRequest_ESP32_ENC using ESP32_DEV with ESP32_ENC28J60](#11-AsyncHTTPSRequest_ESP32_ENC-using-ESP32_DEV-with-ESP32_ENC28J60) **New**
68+
* [12. AsyncHTTPSRequest_ESP32_W5500 using ESP32_DEV with ESP32_W5500](#12-AsyncHTTPSRequest_ESP32_W5500-using-ESP32_DEV-with-ESP32_W5500) **New**
6669
* [Debug](#debug)
6770
* [Troubleshooting](#troubleshooting)
6871
* [Issues](#issues)
@@ -163,6 +166,8 @@ This library is based on, modified from:
163166

164167
#### 3. **ESP32 boards using LwIP ENC28J60 Ethernet**
165168

169+
#### 4. **ESP32 boards using LwIP W5500 Ethernet**
170+
166171

167172
---
168173

@@ -184,8 +189,9 @@ This library is based on, modified from:
184189
3. [`AsyncTCP_SSL v1.3.1+`](https://github.com/khoih-prog/AsyncTCP_SSL) for ESP32. [![GitHub release](https://img.shields.io/github/release/khoih-prog/AsyncTCP_SSL.svg)](https://github.com/khoih-prog/AsyncTCP_SSL/releases)
185190
4. [`WebServer_WT32_ETH01 v1.5.1+`](https://github.com/khoih-prog/WebServer_WT32_ETH01) for ESP32-based WT32_ETH01 using **either ESP32 core v2.0.0+ or v1.0.6-**. [![GitHub release](https://img.shields.io/github/release/khoih-prog/WebServer_WT32_ETH01.svg)](https://github.com/khoih-prog/WebServer_WT32_ETH01/releases)
186191
5. [`WebServer_ESP32_ENC v1.5.1+`](https://github.com/khoih-prog/WebServer_ESP32_ENC) for ESP32 boards using `LwIP ENC28J60 Ethernet`. [![GitHub release](https://img.shields.io/github/release/khoih-prog/WebServer_ESP32_ENC.svg)](https://github.com/khoih-prog/WebServer_ESP32_ENC/releases)
187-
5. [`ESPAsync_WiFiManager library v1.15.1+`](https://github.com/khoih-prog/ESPAsync_WiFiManager) for ESP32/ESP8266 using some examples. [![GitHub release](https://img.shields.io/github/release/khoih-prog/ESPAsync_WiFiManager.svg)](https://github.com/khoih-prog/ESPAsync_WiFiManager/releases)
188-
6. [`AsyncHTTPRequest_Generic library v1.11.0+`](https://github.com/khoih-prog/AsyncHTTPRequest_Generic) for ESP32/ESP8266 using with [AsyncHTTP_HTTPSRequest_ESP example](https://github.com/khoih-prog/AsyncHTTPSRequest_Generic/tree/main/examples/AsyncHTTP_HTTPSRequest_ESP). [![GitHub release](https://img.shields.io/github/release/khoih-prog/AsyncHTTPRequest_Generic.svg)](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/releases)
192+
6. [`WebServer_ESP32_W5500 v1.5.1+`](https://github.com/khoih-prog/WebServer_ESP32_W5500) for ESP32 boards using `LwIP W5500 Ethernet`. [![GitHub release](https://img.shields.io/github/release/khoih-prog/WebServer_ESP32_W5500.svg)](https://github.com/khoih-prog/WebServer_ESP32_W5500/releases)
193+
7. [`ESPAsync_WiFiManager library v1.15.1+`](https://github.com/khoih-prog/ESPAsync_WiFiManager) for ESP32/ESP8266 using some examples. [![GitHub release](https://img.shields.io/github/release/khoih-prog/ESPAsync_WiFiManager.svg)](https://github.com/khoih-prog/ESPAsync_WiFiManager/releases)
194+
8. [`AsyncHTTPRequest_Generic library v1.12.0+`](https://github.com/khoih-prog/AsyncHTTPRequest_Generic) for ESP32/ESP8266 using with [AsyncHTTP_HTTPSRequest_ESP example](https://github.com/khoih-prog/AsyncHTTPSRequest_Generic/tree/main/examples/AsyncHTTP_HTTPSRequest_ESP). [![GitHub release](https://img.shields.io/github/release/khoih-prog/AsyncHTTPRequest_Generic.svg)](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/releases)
189195

190196

191197

@@ -323,6 +329,29 @@ Look in file [**adc_common.c**](https://github.com/espressif/esp-idf/blob/master
323329
- Use `ADC1`, and pins GPIO32-GPIO39
324330
- If somehow it's a must to use those pins serviced by `ADC2` (**GPIO0, 2, 4, 12, 13, 14, 15, 25, 26 and 27**), use the **fix mentioned at the end** of [**ESP_WiFiManager Issue 39: Not able to read analog port when using the autoconnect example**](https://github.com/khoih-prog/ESP_WiFiManager/issues/39) to work with ESP32 WiFi/BlueTooth (BT/BLE).
325331
332+
---
333+
---
334+
335+
### HOWTO use ESP32 with LwIP W5500 or ENC28J60 Ethernet
336+
337+
#### 1. ESP32 Wiring
338+
339+
This is the wiring for ESP8266 `W5500` or `ENC28J60` Ethernet when using `SS = GPIO5`
340+
341+
https://github.com/khoih-prog/AsyncHTTPSRequest_Generic/blob/6168613ea8c6cb4fd9dcdf831bacba7d0db04fa6/examples/ESP32_W5500/AsyncHTTPSRequest_ESP32_W5500/AsyncHTTPSRequest_ESP32_W5500.ino#L81-L92
342+
343+
344+
|W5x00/ENC28J60 Ethernet|<--->|ESP32|
345+
|:-:|:-:|:-:|
346+
|MOSI|<--->|MOSI = GPIO23|
347+
|MISO|<--->|MISO = GPIO19|
348+
|SCK|<--->|SCK = GPIO18|
349+
|SS|<--->|GPIO5|
350+
|INT|<--->|GPIO4|
351+
|GND|<--->|GND|
352+
|VCC|<--->|+3.3V|
353+
354+
326355
---
327356
---
328357
@@ -343,6 +372,10 @@ Look in file [**adc_common.c**](https://github.com/espressif/esp-idf/blob/master
343372
344373
1. [AsyncHTTPSRequest_ESP32_ENC](examples/ESP32_ENC/AsyncHTTPSRequest_ESP32_ENC)
345374
375+
#### For ESP32_W5500
376+
377+
1. [AsyncHTTPSRequest_ESP32_W5500](examples/ESP32_W5500/AsyncHTTPSRequest_ESP32_W5500)
378+
346379
#### For ESP32, WT32_ETH01 or ESP32_ENC
347380
348381
1. [multiFileProject](examples/multiFileProject)
@@ -366,7 +399,7 @@ Following is the debug terminal when running example [AsyncHTTPSRequest_ESP](exa
366399
```cpp
367400
Starting AsyncHTTPSRequest_ESP using ESP32_DEV
368401
AsyncTCP_SSL v1.3.1
369-
AsyncHTTPSRequest_Generic v2.2.1
402+
AsyncHTTPSRequest_Generic v2.4.0
370403
Connecting to WiFi SSID: HueNet1
371404
...
372405
AsyncHTTPSRequest @ IP : 192.168.2.80
@@ -426,7 +459,7 @@ Following is the debug terminal when running example [AsyncHTTPSRequest_ESP](exa
426459
```cpp
427460
Starting AsyncHTTPSRequest_ESP using ESP32S2_DEV
428461
AsyncTCP_SSL v1.3.1
429-
AsyncHTTPSRequest_Generic v2.2.1
462+
AsyncHTTPSRequest_Generic v2.4.0
430463
Connecting to WiFi SSID: HueNet1
431464
.......
432465
AsyncHTTPSRequest @ IP : 192.168.2.79
@@ -503,7 +536,7 @@ Following is the debug terminal when running example [AsyncHTTPSRequest_ESP](exa
503536
```cpp
504537
Starting AsyncHTTPSRequest_ESP using ESP32C3_DEV
505538
AsyncTCP_SSL v1.3.1
506-
AsyncHTTPSRequest_Generic v2.2.1
539+
AsyncHTTPSRequest_Generic v2.4.0
507540
Connecting to WiFi SSID: HueNet1
508541
.........
509542
AsyncHTTPSRequest @ IP : 192.168.2.80
@@ -552,9 +585,9 @@ Following is the debug terminal when running example [AsyncHTTPSRequest_ESP_WiFi
552585

553586
```cpp
554587
Starting AsyncHTTPSRequest_ESP_WiFiManager using LittleFS on ESP32_DEV
555-
ESPAsync_WiFiManager v1.15.0
588+
ESPAsync_WiFiManager v1.15.1
556589
AsyncTCP_SSL v1.3.1
557-
AsyncHTTPSRequest_Generic v2.2.1
590+
AsyncHTTPSRequest_Generic v2.4.0
558591
Stored: SSID = HueNet1, Pass = 12345678
559592
Got stored Credentials. Timeout 120s
560593
ConnectMultiWiFi in setup
@@ -588,9 +621,9 @@ Following is the debug terminal when running example [AsyncHTTPSRequest_WT32_ETH
588621

589622
```cpp
590623
Starting AsyncHTTPSRequest_WT32_ETH01 using ESP32_DEV with ETH_PHY_LAN8720
591-
WebServer_WT32_ETH01 v1.5.0 for core v2.0.0+
624+
WebServer_WT32_ETH01 v1.5.1 for core v2.0.0+
592625
AsyncTCP_SSL v1.3.1
593-
AsyncHTTPSRequest_Generic v2.2.1
626+
AsyncHTTPSRequest_Generic v2.4.0
594627
ETH MAC: A8:03:2A:A1:61:73, IPv4: 192.168.2.82, FULL_DUPLEX, 100Mbps
595628

596629
HTTP WebClient is @ IP : 192.168.2.82
@@ -622,9 +655,9 @@ Following is the debug terminal when running example [AsyncHTTPSRequest_WT32_ETH
622655

623656
```cpp
624657
Starting AsyncHTTPSRequest_WT32_ETH01 using ESP32_DEV with ETH_PHY_LAN8720
625-
WebServer_WT32_ETH01 v1.5.0 for core v1.0.6-
658+
WebServer_WT32_ETH01 v1.5.1 for core v1.0.6-
626659
AsyncTCP_SSL v1.3.1
627-
AsyncHTTPSRequest_Generic v2.2.1
660+
AsyncHTTPSRequest_Generic v2.4.0
628661
ETH MAC: A8:03:2A:A1:61:73, IPv4: 192.168.2.232, FULL_DUPLEX, 100Mbps
629662

630663
HTTP WebClient is @ IP : 192.168.2.232
@@ -656,8 +689,8 @@ Following is the debug terminal when running example [AsyncHTTPSRequest_ESP_WiFi
656689

657690
```cpp
658691
Starting AsyncHTTPSRequest_ESP_WiFiManager using LittleFS on ESP32C3_DEV
659-
ESPAsync_WiFiManager v1.15.0
660-
AsyncHTTPSRequest_Generic v2.2.1
692+
ESPAsync_WiFiManager v1.15.1
693+
AsyncHTTPSRequest_Generic v2.4.0
661694
Stored: SSID = HueNet1, Pass = password
662695
Got stored Credentials. Timeout 120s
663696
ConnectMultiWiFi in setup
@@ -710,8 +743,8 @@ Following is the debug terminal when running example [AsyncHTTPSRequest_ESP_WiFi
710743

711744
```cpp
712745
Starting AsyncHTTPSRequest_ESP_WiFiManager using LittleFS on ESP32S3_DEV
713-
ESPAsync_WiFiManager v1.15.0
714-
AsyncHTTPSRequest_Generic v2.2.1
746+
ESPAsync_WiFiManager v1.15.1
747+
AsyncHTTPSRequest_Generic v2.4.0
715748
Stored: SSID = HueNet1, Pass = password
716749
Got stored Credentials. Timeout 120s
717750
ConnectMultiWiFi in setup
@@ -747,7 +780,7 @@ The terminal output of [AsyncHTTPSRequest_ESP_Multi example](examples/AsyncHTTPS
747780
```cpp
748781
Starting AsyncHTTPSRequest_ESP_Multi on ESP32_DEV
749782
AsyncTCP_SSL v1.3.1
750-
AsyncHTTPSRequest_Generic v2.2.1
783+
AsyncHTTPSRequest_Generic v2.4.0
751784
Connecting to WiFi SSID: HueNet1
752785
...
753786
AsyncHTTPSRequest @ IP : 192.168.2.187
@@ -821,8 +854,8 @@ The terminal output of [AsyncHTTP_HTTPSRequest_ESP example](examples/AsyncHTTP_H
821854
```cpp
822855
Starting AsyncHTTP_HTTPSRequest_ESP on ESP32_DEV
823856
AsyncTCP_SSL v1.3.1
824-
AsyncHTTPSRequest_Generic v2.2.1
825-
AsyncHTTPRequest_Generic v1.10.2
857+
AsyncHTTPSRequest_Generic v2.4.0
858+
AsyncHTTPRequest_Generic v1.12.0
826859
Connecting to WiFi SSID: HueNet1
827860
...
828861
AsyncHTTPSRequest @ IP : 192.168.2.80
@@ -906,14 +939,14 @@ week_number: 42
906939

907940
#### 11. AsyncHTTPSRequest_ESP32_ENC using ESP32_DEV with ESP32_ENC28J60
908941

909-
Following is the debug terminal when running example [AsyncHTTPSRequest_ESP32_ENC](examples/ESP32_ENC/AsyncHTTPSRequest_ESP32_ENC) on `ESP32_DEV` boards using `LwIP ENC28J60 Ethernet`, to demonstrate the operation of SSL Async HTTPS request, using [AsyncTCP_SSL Library](https://github.com/khoih-prog/AsyncTCP_SSL)
942+
Following is the debug terminal when running example [AsyncHTTPSRequest_ESP32_ENC](examples/ESP32_ENC/AsyncHTTPSRequest_ESP32_ENC) on `ESP32_DEV` boards using `LwIP ENC28J60 Ethernet`, to demonstrate the operation of `SSL Async HTTPS` request, using [AsyncTCP_SSL Library](https://github.com/khoih-prog/AsyncTCP_SSL)
910943

911944

912945
```cpp
913946
Starting AsyncHTTPSRequest_ESP32_ENC using ESP32_DEV with ESP32_ENC28J60
914947
WebServer_ESP32_ENC v1.5.1 for core v2.0.0+
915948
AsyncTCP_SSL v1.3.1
916-
AsyncHTTPSRequest_Generic v2.2.1
949+
AsyncHTTPSRequest_Generic v2.4.0
917950
[AHTTPS] Default SPI pinout:
918951
[AHTTPS] MOSI: 23
919952
[AHTTPS] MISO: 19
@@ -966,6 +999,74 @@ utc_offset: -05:00
966999
week_number: 48
9671000
**************************************
9681001
```
1002+
1003+
---
1004+
1005+
1006+
#### 12. AsyncHTTPSRequest_ESP32_W5500 using ESP32_DEV with ESP32_W5500
1007+
1008+
Following is the debug terminal when running example [AsyncHTTPSRequest_ESP32_W5500](examples/ESP32_W5500/AsyncHTTPSRequest_ESP32_W5500) on `ESP32_DEV` boards using `LwIP W5500 Ethernet`, to demonstrate the operation of `SSL Async HTTPS` request, using [AsyncTCP_SSL Library](https://github.com/khoih-prog/AsyncTCP_SSL)
1009+
1010+
1011+
```cpp
1012+
Starting AsyncHTTPSRequest_ESP32_W5500 using ESP32_DEV with ESP32_W5500
1013+
WebServer_ESP32_W5500 v1.5.1 for core v2.0.0+
1014+
AsyncTCP_SSL v1.3.1
1015+
AsyncHTTPSRequest_Generic v2.4.0
1016+
[AHTTPS] Default SPI pinout:
1017+
[AHTTPS] SPI_HOST: 2
1018+
[AHTTPS] MOSI: 23
1019+
[AHTTPS] MISO: 19
1020+
[AHTTPS] SCK: 18
1021+
[AHTTPS] CS: 5
1022+
[AHTTPS] INT: 4
1023+
[AHTTPS] SPI Clock (MHz): 25
1024+
[AHTTPS] =========================
1025+
1026+
ETH Started
1027+
ETH Connected
1028+
ETH MAC: DE:AD:BE:EF:BE:12, IPv4: 192.168.2.103
1029+
FULL_DUPLEX, 100Mbps
1030+
1031+
HTTP WebClient is @ IP : 192.168.2.103
1032+
1033+
**************************************
1034+
abbreviation: EST
1035+
client_ip: 216.154.12.9
1036+
datetime: 2022-11-30T19:05:25.743559-05:00
1037+
day_of_week: 3
1038+
day_of_year: 334
1039+
dst: false
1040+
dst_from:
1041+
dst_offset: 0
1042+
dst_until:
1043+
raw_offset: -18000
1044+
timezone: America/Toronto
1045+
unixtime: 1669853125
1046+
utc_datetime: 2022-12-01T00:05:25.743559+00:00
1047+
utc_offset: -05:00
1048+
week_number: 48
1049+
**************************************
1050+
HHHHHH
1051+
**************************************
1052+
abbreviation: EST
1053+
client_ip: 216.154.12.9
1054+
datetime: 2022-11-30T19:06:24.624668-05:00
1055+
day_of_week: 3
1056+
day_of_year: 334
1057+
dst: false
1058+
dst_from:
1059+
dst_offset: 0
1060+
dst_until:
1061+
raw_offset: -18000
1062+
timezone: America/Toronto
1063+
unixtime: 1669853184
1064+
utc_datetime: 2022-12-01T00:06:24.624668+00:00
1065+
utc_offset: -05:00
1066+
week_number: 48
1067+
**************************************
1068+
HHHH
1069+
```
9691070
---
9701071
---
9711072

@@ -1035,6 +1136,9 @@ Submit issues to: [AsyncHTTPSRequest_Generic issues](https://github.com/khoih-pr
10351136
21. Default to reconnect to the same `host:port` after connected for new HTTP sites.
10361137
22. Use `allman` astyle
10371138
23. Add support to ESP32 boards using `LwIP ENC28J60 Ethernet`
1139+
24. Add support to ESP32 boards using `LwIP W5500 Ethernet`
1140+
25. [Fix "blank new line in chunk" bug #50](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/pull/50)
1141+
10381142

10391143
---
10401144
---

changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@
4040

4141
## Changelog
4242

43+
### Releases v2.4.0
44+
45+
1. Add support to ESP32 boards using `LwIP W5500 Ethernet`
46+
2. Fix bug. Check [Fix "blank new line in chunk" bug #50](https://github.com/khoih-prog/AsyncHTTPRequest_Generic/pull/50)
47+
4348
### Releases v2.3.0
4449

4550
1. Add support to ESP32 boards using `LwIP ENC28J60 Ethernet`

library.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,16 @@
4848
"version": ">=1.5.1",
4949
"platforms": ["espressif32"]
5050
},
51+
{
52+
"owner": "khoih-prog",
53+
"name": "WebServer_ESP32_W5500",
54+
"version": ">=1.5.1",
55+
"platforms": ["espressif32"]
56+
},
5157
{
5258
"owner": "khoih-prog",
5359
"name": "AsyncHTTPRequest_Generic",
54-
"version": ">=1.11.0",
60+
"version": ">=1.12.0",
5561
"platforms": ["espressif8266", "espressif32"]
5662
},
5763
{

library.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=AsyncHTTPSRequest_Generic
2-
version=2.3.0
2+
version=2.4.0
33
author=Bob Lemaire,Khoi Hoang <khoih.prog@gmail.com>
44
maintainer=Khoi Hoang <khoih.prog@gmail.com>
55
license=GPLv3
@@ -8,5 +8,5 @@ paragraph=Supporting in the future for RP2040W, ESP8266, Portenta_H7, STM32 with
88
category=Communication
99
url=https://github.com/khoih-prog/AsyncHTTPSRequest_Generic
1010
architectures=*
11-
depends=AsyncTCP_SSL, WebServer_WT32_ETH01, WebServer_ESP32_ENC, AsyncHTTPRequest_Generic, ESPAsync_WiFiManager
11+
depends=AsyncTCP_SSL, WebServer_WT32_ETH01, WebServer_ESP32_ENC, WebServer_ESP32_W5500, AsyncHTTPRequest_Generic, ESPAsync_WiFiManager
1212
includes=AsyncHTTPSRequest_Generic.h,AsyncHTTPSRequest_Generic.hpp

platformio/platformio.ini

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,17 @@ lib_ldf_mode = chain+
4848
lib_deps =
4949
; PlatformIO 4.x
5050
; AsyncTCP_SSL@>=1.3.1
51-
; AsyncHTTPRequest_Generic@>=1.11.0
51+
; AsyncHTTPRequest_Generic@>=1.12.0
5252
; WebServer_WT32_ETH01@>=1.5.1
5353
; WebServer_ESP32_ENC@>=1.5.1
54+
; WebServer_ESP32_W5500@>=1.5.1
5455
; ESPAsync_WiFiManager@>=1.15.1
5556
; PlatformIO 5.x
5657
khoih-prog/AsyncTCP_SSL@>=1.3.1
57-
khoih-prog/AsyncHTTPRequest_Generic@>=1.11.0
58+
khoih-prog/AsyncHTTPRequest_Generic@>=1.12.0
5859
khoih-prog/WebServer_WT32_ETH01@>=1.5.1
5960
khoih-prog/WebServer_ESP32_ENC@>=1.5.1
61+
khoih-prog/WebServer_ESP32_W5500@>=1.5.1
6062
khoih-prog/ESPAsync_WiFiManager@>=1.15.1
6163

6264

src/AsyncHTTPSRequest_Debug_Generic.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
You should have received a copy of the GNU General Public License along with this program.
1818
If not, see <https://www.gnu.org/licenses/>.
1919
20-
Version: 2.3.0
20+
Version: 2.4.0
2121
2222
Version Modified By Date Comments
2323
------- ----------- ---------- -----------
@@ -37,6 +37,7 @@
3737
2.2.0 K Hoang 20/10/2022 Fix crash and memory leak
3838
2.2.1 K Hoang 09/11/2022 Default to reconnect to the same host:port after connected for new HTTP sites
3939
2.3.0 K Hoang 28/11/2022 Add support to ESP32 boards using LwIP ENC28J60 Ethernet
40+
2.4.0 K Hoang 30/11/2022 Add support to ESP32 boards using LwIP W5500 Ethernet. Fix bug
4041
*****************************************************************************************************************************/
4142

4243
#pragma once

src/AsyncHTTPSRequest_Generic.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
You should have received a copy of the GNU General Public License along with this program.
1818
If not, see <https://www.gnu.org/licenses/>.
1919
20-
Version: 2.3.0
20+
Version: 2.4.0
2121
2222
Version Modified By Date Comments
2323
------- ----------- ---------- -----------
@@ -37,6 +37,7 @@
3737
2.2.0 K Hoang 20/10/2022 Fix crash and memory leak
3838
2.2.1 K Hoang 09/11/2022 Default to reconnect to the same host:port after connected for new HTTP sites
3939
2.3.0 K Hoang 28/11/2022 Add support to ESP32 boards using LwIP ENC28J60 Ethernet
40+
2.4.0 K Hoang 30/11/2022 Add support to ESP32 boards using LwIP W5500 Ethernet. Fix bug
4041
*****************************************************************************************************************************/
4142

4243
#pragma once

0 commit comments

Comments
 (0)