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

Commit c63051f

Browse files
authored
v2.1.0 for ESP32 & LwIP Ethernet
### Releases v2.1.0 1. Initial coding to port [AsyncUDP](https://github.com/espressif/arduino-esp32/tree/master/libraries/AsyncUDP) to ESP32 boards using `LwIP W5500, W6100 or ENC28J60 Ethernet` 2. Bump up to v2.1.0 to sync with [AsyncUDP_ESP32_SC_Ethernet v2.1.0](https://github.com/khoih-prog/AsyncUDP_ESP32_SC_Ethernet)
1 parent ca4c450 commit c63051f

10 files changed

+11
-11
lines changed

examples/AsyncUDPClient/AsyncUDPClient.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*****************************************************************************************************************************/
1010

1111
#if !( defined(ESP32) )
12-
#error This code is designed for (ESP32S2/S3/C3 + LwIP W5500 or ENC28J60) to run on ESP32 platform! Please check your Tools->Board setting.
12+
#error This code is designed for (ESP32 + LwIP W5500, W6100 or ENC28J60) to run on ESP32 platform! Please check your Tools->Board setting.
1313
#endif
1414

1515
#include <Arduino.h>

examples/AsyncUDPMulticastServer/AsyncUDPMulticastServer.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*****************************************************************************************************************************/
1010

1111
#if !( defined(ESP32) )
12-
#error This code is designed for (ESP32S2/S3/C3 + LwIP W5500, W6100 or ENC28J60) to run on ESP32 platform! Please check your Tools->Board setting.
12+
#error This code is designed for (ESP32 + LwIP W5500, W6100 or ENC28J60) to run on ESP32 platform! Please check your Tools->Board setting.
1313
#endif
1414

1515
#include <Arduino.h>

examples/AsyncUDPServer/AsyncUDPServer.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*****************************************************************************************************************************/
1010

1111
#if !( defined(ESP32) )
12-
#error This code is designed for (ESP32S2/S3/C3 + LwIP W5500, W6100 or ENC28J60) to run on ESP32 platform! Please check your Tools->Board setting.
12+
#error This code is designed for (ESP32 + LwIP W5500, W6100 or ENC28J60) to run on ESP32 platform! Please check your Tools->Board setting.
1313
#endif
1414

1515
#include <Arduino.h>

examples/AsyncUdpNTPClient/AsyncUdpNTPClient.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*****************************************************************************************************************************/
1010

1111
#if !( defined(ESP32) )
12-
#error This code is designed for (ESP32S2/S3/C3 + LwIP W5500, W6100 or ENC28J60) to run on ESP32 platform! Please check your Tools->Board setting.
12+
#error This code is designed for (ESP32 + LwIP W5500, W6100 or ENC28J60) to run on ESP32 platform! Please check your Tools->Board setting.
1313
#endif
1414

1515
#include <Arduino.h>

examples/AsyncUdpSendReceive/AsyncUdpSendReceive.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*****************************************************************************************************************************/
1010

1111
#if !( defined(ESP32) )
12-
#error This code is designed for (ESP32S2/S3/C3 + LwIP W5500, W6100 or ENC28J60) to run on ESP32 platform! Please check your Tools->Board setting.
12+
#error This code is designed for (ESP32 + LwIP W5500, W6100 or ENC28J60) to run on ESP32 platform! Please check your Tools->Board setting.
1313
#endif
1414

1515
#include <Arduino.h>

examples/multiFileProject/multiFileProject.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#pragma once
1313

1414
#if !( defined(ESP32) )
15-
#error This code is designed for (ESP32S2/S3/C3 + LwIP W5500, W6100 or ENC28J60) to run on ESP32 platform! Please check your Tools->Board setting.
15+
#error This code is designed for (ESP32 + LwIP W5500, W6100 or ENC28J60) to run on ESP32 platform! Please check your Tools->Board setting.
1616
#endif
1717

1818
#include <Arduino.h>

src/AsyncUDP_ESP32_Ethernet.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
1212
Version Modified By Date Comments
1313
------- ----------- ---------- -----------
14-
2.1.0 K Hoang 10/01/2023 Initial coding for ESP32_S2/S3/C3 using LwIP W5500 / W6100 / ENC28J60
14+
2.1.0 K Hoang 10/01/2023 Initial coding for ESP32 using LwIP W5500 / W6100 / ENC28J60
1515
*****************************************************************************************************************************/
1616

1717
#pragma once

src/AsyncUDP_ESP32_Ethernet.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
1212
Version Modified By Date Comments
1313
------- ----------- ---------- -----------
14-
2.1.0 K Hoang 10/01/2023 Initial coding for ESP32_S2/S3/C3 using LwIP W5500 / W6100 / ENC28J60
14+
2.1.0 K Hoang 10/01/2023 Initial coding for ESP32 using LwIP W5500 / W6100 / ENC28J60
1515
*****************************************************************************************************************************/
1616

1717
#pragma once
@@ -48,7 +48,7 @@
4848
////////////////////////////////////////
4949

5050
#else
51-
#error This code is intended to run on the ESP32_S2/3, ESP32_C3 platform! Please check your Tools->Board setting.
51+
#error This code is intended to run on the ESP32 platform! Please check your Tools->Board setting.
5252
#endif
5353

5454
/////////////////////////////////////////////////

src/AsyncUDP_ESP32_Ethernet_Debug.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
1212
Version Modified By Date Comments
1313
------- ----------- ---------- -----------
14-
2.1.0 K Hoang 10/01/2023 Initial coding for ESP32_S2/S3/C3 using LwIP W5500 / W6100 / ENC28J60
14+
2.1.0 K Hoang 10/01/2023 Initial coding for ESP32 using LwIP W5500 / W6100 / ENC28J60
1515
*****************************************************************************************************************************/
1616

1717
#pragma once

src/AsyncUDP_ESP32_Ethernet_Impl.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
1212
Version Modified By Date Comments
1313
------- ----------- ---------- -----------
14-
2.1.0 K Hoang 10/01/2023 Initial coding for ESP32_S2/S3/C3 using LwIP W5500 / W6100 / ENC28J60
14+
2.1.0 K Hoang 10/01/2023 Initial coding for ESP32 using LwIP W5500 / W6100 / ENC28J60
1515
*****************************************************************************************************************************/
1616

1717
#pragma once

0 commit comments

Comments
 (0)