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

Commit 3272f5f

Browse files
authored
v1.14.0 for LwIP W6100
### Releases v1.14.0 1. Add support to `ESP32` and `ESP32S2/S3/C3` boards using `LwIP W6100 Ethernet`
1 parent 301d251 commit 3272f5f

File tree

20 files changed

+1243
-42
lines changed

20 files changed

+1243
-42
lines changed

CONTRIBUTING.md

+8-5
Original file line numberDiff line numberDiff line change
@@ -10,31 +10,34 @@ However, before reporting a bug please check through the following:
1010

1111
If you don't find anything, please [open a new issue](https://github.com/khoih-prog/AsyncHTTPRequest_ESP32_Ethernet/issues/new).
1212

13+
---
14+
1315
### How to submit a bug report
1416

1517
Please ensure to specify the following:
1618

1719
* Arduino IDE version (e.g. 1.8.19) or Platform.io version
18-
* Board Type (e.g. ESP32S3_DEV, ESP32S2_DEV, ESP32C3_DEV)
19-
* Board Core Version (e.g. ESP32 core v2.0.5)
20+
* Board Type (e.g. ESP32_DEV, ESP32S3_DEV, ESP32S2_DEV, ESP32C3_DEV)
21+
* Board Core Version (e.g. ESP32 core v2.0.6)
2022
* Contextual information (e.g. what you were trying to achieve)
2123
* Simplest possible steps to reproduce
2224
* Anything that might be relevant in your opinion, such as:
2325
* Operating system (Windows, Ubuntu, etc.) and the output of `uname -a`
2426
* Network configuration
2527

2628

27-
Please be educated, civilized and constructive. Disrespective posts against [GitHub Code of Conduct](https://docs.github.com/en/site-policy/github-terms/github-event-code-of-conduct) will be ignored and deleted.
29+
Please be educated, civilized and constructive as you've always been. Disrespective posts against [GitHub Code of Conduct](https://docs.github.com/en/site-policy/github-terms/github-event-code-of-conduct) will be ignored and deleted.
2830

31+
---
2932

3033
### Example
3134

3235
```
3336
Arduino IDE version: 1.8.19
3437
ESP32S3_DEV board
35-
ESP32 core v2.0.5
38+
ESP32 core v2.0.6
3639
OS: Ubuntu 20.04 LTS
37-
Linux xy-Inspiron-3593 5.15.0-56-generic #62~20.04.1-Ubuntu SMP Tue Nov 22 21:24:20 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
40+
Linux xy-Inspiron-3593 5.15.0-57-generic #63~20.04.1-Ubuntu SMP Wed Nov 30 13:40:16 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
3841
3942
Context:
4043
I encountered a crash while using this library

changelog.md

+5
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
## Table of Contents
1818

1919
* [Changelog](#changelog)
20+
* [Releases v1.14.0](#releases-v1140)
2021
* [Releases v1.13.0](#releases-v1130)
2122
* [Releases v1.12.0](#releases-v1120)
2223

@@ -25,6 +26,10 @@
2526

2627
## Changelog
2728

29+
### Releases v1.14.0
30+
31+
1. Add support to `ESP32` and `ESP32S2/S3/C3` boards using `LwIP W6100 Ethernet`
32+
2833
### Releases v1.13.0
2934

3035
1. Add support to `ESP32S2/C3` boards using `LwIP W5500 or ENC28J60 Ethernet`

examples/ESP32_ENC/AsyncHTTPMultiRequests_ESP32_ENC/AsyncHTTPMultiRequests_ESP32_ENC.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@
7373

7474
#include <WebServer_ESP32_ENC.h> // https://github.com/khoih-prog/WebServer_ESP32_ENC
7575

76-
#define ASYNC_HTTP_REQUEST_ESP32_ETHERNET_VERSION_MIN_TARGET "AsyncHTTPRequest_ESP32_Ethernet v1.12.0"
77-
#define ASYNC_HTTP_REQUEST_ESP32_ETHERNET_VERSION_MIN 1012000
76+
#define ASYNC_HTTP_REQUEST_ESP32_ETHERNET_VERSION_MIN_TARGET "AsyncHTTPRequest_ESP32_Ethernet v1.14.0"
77+
#define ASYNC_HTTP_REQUEST_ESP32_ETHERNET_VERSION_MIN 1014000
7878

7979
// Uncomment for certain HTTP site to optimize
8080
//#define NOT_SEND_HEADER_AFTER_CONNECTED true

examples/ESP32_ENC/AsyncHTTPRequest_ESP32_ENC/AsyncHTTPRequest_ESP32_ENC.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@
7373

7474
#include <WebServer_ESP32_ENC.h> // https://github.com/khoih-prog/WebServer_ESP32_ENC
7575

76-
#define ASYNC_HTTP_REQUEST_ESP32_ETHERNET_VERSION_MIN_TARGET "AsyncHTTPRequest_ESP32_Ethernet v1.12.0"
77-
#define ASYNC_HTTP_REQUEST_ESP32_ETHERNET_VERSION_MIN 1012000
76+
#define ASYNC_HTTP_REQUEST_ESP32_ETHERNET_VERSION_MIN_TARGET "AsyncHTTPRequest_ESP32_Ethernet v1.14.0"
77+
#define ASYNC_HTTP_REQUEST_ESP32_ETHERNET_VERSION_MIN 1014000
7878

7979
// Uncomment for certain HTTP site to optimize
8080
//#define NOT_SEND_HEADER_AFTER_CONNECTED true

examples/ESP32_SC_ENC/AsyncHTTPMultiRequests_ESP32_SC_ENC/AsyncHTTPMultiRequests_ESP32_SC_ENC.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@
8888

8989
#include <WebServer_ESP32_SC_ENC.h> // https://github.com/khoih-prog/WebServer_ESP32_SC_ENC
9090

91-
#define ASYNC_HTTP_REQUEST_ESP32_ETHERNET_VERSION_MIN_TARGET "AsyncHTTPRequest_ESP32_Ethernet v1.13.0"
92-
#define ASYNC_HTTP_REQUEST_ESP32_ETHERNET_VERSION_MIN 1013000
91+
#define ASYNC_HTTP_REQUEST_ESP32_ETHERNET_VERSION_MIN_TARGET "AsyncHTTPRequest_ESP32_Ethernet v1.14.0"
92+
#define ASYNC_HTTP_REQUEST_ESP32_ETHERNET_VERSION_MIN 1014000
9393

9494
// Uncomment for certain HTTP site to optimize
9595
//#define NOT_SEND_HEADER_AFTER_CONNECTED true

examples/ESP32_SC_ENC/AsyncHTTPRequest_ESP32_SC_ENC/AsyncHTTPRequest_ESP32_SC_ENC.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@
8888

8989
#include <WebServer_ESP32_SC_ENC.h> // https://github.com/khoih-prog/WebServer_ESP32_SC_ENC
9090

91-
#define ASYNC_HTTP_REQUEST_ESP32_ETHERNET_VERSION_MIN_TARGET "AsyncHTTPRequest_ESP32_Ethernet v1.13.0"
92-
#define ASYNC_HTTP_REQUEST_ESP32_ETHERNET_VERSION_MIN 1013000
91+
#define ASYNC_HTTP_REQUEST_ESP32_ETHERNET_VERSION_MIN_TARGET "AsyncHTTPRequest_ESP32_Ethernet v1.14.0"
92+
#define ASYNC_HTTP_REQUEST_ESP32_ETHERNET_VERSION_MIN 1014000
9393

9494
// Uncomment for certain HTTP site to optimize
9595
//#define NOT_SEND_HEADER_AFTER_CONNECTED true

examples/ESP32_SC_W5500/AsyncHTTPMultiRequests_ESP32_SC_W5500/AsyncHTTPMultiRequests_ESP32_SC_W5500.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@
8888

8989
#include <WebServer_ESP32_SC_W5500.h> // https://github.com/khoih-prog/WebServer_ESP32_SC_W5500
9090

91-
#define ASYNC_HTTP_REQUEST_ESP32_ETHERNET_VERSION_MIN_TARGET "AsyncHTTPRequest_ESP32_Ethernet v1.13.0"
92-
#define ASYNC_HTTP_REQUEST_ESP32_ETHERNET_VERSION_MIN 1013000
91+
#define ASYNC_HTTP_REQUEST_ESP32_ETHERNET_VERSION_MIN_TARGET "AsyncHTTPRequest_ESP32_Ethernet v1.14.0"
92+
#define ASYNC_HTTP_REQUEST_ESP32_ETHERNET_VERSION_MIN 1014000
9393

9494
// Uncomment for certain HTTP site to optimize
9595
//#define NOT_SEND_HEADER_AFTER_CONNECTED true

examples/ESP32_SC_W5500/AsyncHTTPRequest_ESP32_SC_W5500/AsyncHTTPRequest_ESP32_SC_W5500.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@
8888

8989
#include <WebServer_ESP32_SC_W5500.h> // https://github.com/khoih-prog/WebServer_ESP32_SC_W5500
9090

91-
#define ASYNC_HTTP_REQUEST_ESP32_ETHERNET_VERSION_MIN_TARGET "AsyncHTTPRequest_ESP32_Ethernet v1.13.0"
92-
#define ASYNC_HTTP_REQUEST_ESP32_ETHERNET_VERSION_MIN 1013000
91+
#define ASYNC_HTTP_REQUEST_ESP32_ETHERNET_VERSION_MIN_TARGET "AsyncHTTPRequest_ESP32_Ethernet v1.14.0"
92+
#define ASYNC_HTTP_REQUEST_ESP32_ETHERNET_VERSION_MIN 1014000
9393

9494
// Uncomment for certain HTTP site to optimize
9595
//#define NOT_SEND_HEADER_AFTER_CONNECTED true

0 commit comments

Comments
 (0)