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

Commit

Permalink
v2.1.0 for ESP32 & LwIP Ethernet
Browse files Browse the repository at this point in the history
### 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)
  • Loading branch information
khoih-prog authored Jan 11, 2023
1 parent ca4c450 commit c63051f
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion examples/AsyncUDPClient/AsyncUDPClient.ino
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*****************************************************************************************************************************/

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

#include <Arduino.h>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*****************************************************************************************************************************/

#if !( defined(ESP32) )
#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.
#error This code is designed for (ESP32 + LwIP W5500, W6100 or ENC28J60) to run on ESP32 platform! Please check your Tools->Board setting.
#endif

#include <Arduino.h>
Expand Down
2 changes: 1 addition & 1 deletion examples/AsyncUDPServer/AsyncUDPServer.ino
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*****************************************************************************************************************************/

#if !( defined(ESP32) )
#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.
#error This code is designed for (ESP32 + LwIP W5500, W6100 or ENC28J60) to run on ESP32 platform! Please check your Tools->Board setting.
#endif

#include <Arduino.h>
Expand Down
2 changes: 1 addition & 1 deletion examples/AsyncUdpNTPClient/AsyncUdpNTPClient.ino
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*****************************************************************************************************************************/

#if !( defined(ESP32) )
#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.
#error This code is designed for (ESP32 + LwIP W5500, W6100 or ENC28J60) to run on ESP32 platform! Please check your Tools->Board setting.
#endif

#include <Arduino.h>
Expand Down
2 changes: 1 addition & 1 deletion examples/AsyncUdpSendReceive/AsyncUdpSendReceive.ino
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*****************************************************************************************************************************/

#if !( defined(ESP32) )
#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.
#error This code is designed for (ESP32 + LwIP W5500, W6100 or ENC28J60) to run on ESP32 platform! Please check your Tools->Board setting.
#endif

#include <Arduino.h>
Expand Down
2 changes: 1 addition & 1 deletion examples/multiFileProject/multiFileProject.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#pragma once

#if !( defined(ESP32) )
#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.
#error This code is designed for (ESP32 + LwIP W5500, W6100 or ENC28J60) to run on ESP32 platform! Please check your Tools->Board setting.
#endif

#include <Arduino.h>
Expand Down
2 changes: 1 addition & 1 deletion src/AsyncUDP_ESP32_Ethernet.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
Version Modified By Date Comments
------- ----------- ---------- -----------
2.1.0 K Hoang 10/01/2023 Initial coding for ESP32_S2/S3/C3 using LwIP W5500 / W6100 / ENC28J60
2.1.0 K Hoang 10/01/2023 Initial coding for ESP32 using LwIP W5500 / W6100 / ENC28J60
*****************************************************************************************************************************/

#pragma once
Expand Down
4 changes: 2 additions & 2 deletions src/AsyncUDP_ESP32_Ethernet.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
Version Modified By Date Comments
------- ----------- ---------- -----------
2.1.0 K Hoang 10/01/2023 Initial coding for ESP32_S2/S3/C3 using LwIP W5500 / W6100 / ENC28J60
2.1.0 K Hoang 10/01/2023 Initial coding for ESP32 using LwIP W5500 / W6100 / ENC28J60
*****************************************************************************************************************************/

#pragma once
Expand Down Expand Up @@ -48,7 +48,7 @@
////////////////////////////////////////

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

/////////////////////////////////////////////////
Expand Down
2 changes: 1 addition & 1 deletion src/AsyncUDP_ESP32_Ethernet_Debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
Version Modified By Date Comments
------- ----------- ---------- -----------
2.1.0 K Hoang 10/01/2023 Initial coding for ESP32_S2/S3/C3 using LwIP W5500 / W6100 / ENC28J60
2.1.0 K Hoang 10/01/2023 Initial coding for ESP32 using LwIP W5500 / W6100 / ENC28J60
*****************************************************************************************************************************/

#pragma once
Expand Down
2 changes: 1 addition & 1 deletion src/AsyncUDP_ESP32_Ethernet_Impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
Version Modified By Date Comments
------- ----------- ---------- -----------
2.1.0 K Hoang 10/01/2023 Initial coding for ESP32_S2/S3/C3 using LwIP W5500 / W6100 / ENC28J60
2.1.0 K Hoang 10/01/2023 Initial coding for ESP32 using LwIP W5500 / W6100 / ENC28J60
*****************************************************************************************************************************/

#pragma once
Expand Down

0 comments on commit c63051f

Please sign in to comment.