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

Commit 4a9f8bc

Browse files
authored
v1.10.0 for LwIP W6100
### Releases v1.10.0 1. Add support to `ESP32` and `ESP32S2/S3/C3` boards using `LwIP W6100 Ethernet`
1 parent a974269 commit 4a9f8bc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+226
-183
lines changed

src/AsyncMQTT_ESP32.h

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
/****************************************************************************************************************************
22
AsyncMQTT_ESP32.h
33
4-
AsyncMQTT_ESP32 is a library for ESP32 boards using WiFi or LwIP W5500, LAN8720 or ENC28J60
4+
AsyncMQTT_ESP32 is a library for ESP32 boards using WiFi or LwIP W5500 / W6100 / ENC28J60 / LAN8720 Ethernet
55
66
Based on and modified from :
77
88
1) async-mqtt-client (https://github.com/marvinroger/async-mqtt-client)
9-
2) async-mqtt-client (https://github.com/khoih-prog/AsyncMQTT_Generic)
9+
2) AsyncMQTT_Generic (https://github.com/khoih-prog/AsyncMQTT_Generic)
1010
1111
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMQTT_ESP32
1212
13-
Version: 1.9.0
13+
Version: 1.10.0
1414
1515
Version Modified By Date Comments
1616
------- ----------- ---------- -----------
1717
1.8.0 K Hoang 17/12/2022 Initial coding to port to ESP32 boards using WiFi or LwIP W5500, LAN8720 or ENC28J60
1818
1.9.0 K Hoang 21/12/2022 Add support to ESP32S2/C3 boards using LwIP W5500 or ENC28J60 Ethernet
19+
1.10.0 K Hoang 09/01/2023 Add support to ESP32 and ESP32S2/S3/C3 boards using LwIP W6100
1920
*****************************************************************************************************************************/
2021

2122
#pragma once

src/AsyncMQTT_ESP32.hpp

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
/****************************************************************************************************************************
22
AsyncMQTT_ESP32.hpp
33
4-
AsyncMQTT_ESP32 is a library for ESP32 boards using WiFi or LwIP W5500, LAN8720 or ENC28J60
4+
AsyncMQTT_ESP32 is a library for ESP32 boards using WiFi or LwIP W5500 / W6100 / ENC28J60 / LAN8720 Ethernet
55
66
Based on and modified from :
77
88
1) async-mqtt-client (https://github.com/marvinroger/async-mqtt-client)
9-
2) async-mqtt-client (https://github.com/khoih-prog/AsyncMQTT_Generic)
9+
2) AsyncMQTT_Generic (https://github.com/khoih-prog/AsyncMQTT_Generic)
1010
1111
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMQTT_ESP32
1212
13-
Version: 1.9.0
13+
Version: 1.10.0
1414
1515
Version Modified By Date Comments
1616
------- ----------- ---------- -----------
1717
1.8.0 K Hoang 17/12/2022 Initial coding to port to ESP32 boards using WiFi or LwIP W5500, LAN8720 or ENC28J60
1818
1.9.0 K Hoang 21/12/2022 Add support to ESP32S2/C3 boards using LwIP W5500 or ENC28J60 Ethernet
19+
1.10.0 K Hoang 09/01/2023 Add support to ESP32 and ESP32S2/S3/C3 boards using LwIP W6100
1920
*****************************************************************************************************************************/
2021

2122
#pragma once
@@ -34,15 +35,15 @@
3435

3536
/////////////////////////////////////////////////////////
3637

37-
#define ASYNC_MQTT_ESP32_SHORT_VERSION "AsyncMQTT_ESP32 v1.9.0"
38+
#define ASYNC_MQTT_ESP32_SHORT_VERSION "AsyncMQTT_ESP32 v1.10.0"
3839

3940
/////////////////////////////////////////////////////////
4041

4142
#define ASYNC_MQTT_ESP32_VERSION_MAJOR 1
42-
#define ASYNC_MQTT_ESP32_VERSION_MINOR 9
43+
#define ASYNC_MQTT_ESP32_VERSION_MINOR 10
4344
#define ASYNC_MQTT_ESP32_VERSION_PATCH 0
4445

45-
#define ASYNC_MQTT_ESP32_VERSION_INT 1009000
46+
#define ASYNC_MQTT_ESP32_VERSION_INT 1010000
4647

4748
/////////////////////////////////////////////////////////
4849

src/AsyncMQTT_ESP32_Debug.h

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
/****************************************************************************************************************************
22
AsyncMQTT_ESP32_Debug.h
33
4-
AsyncMQTT_ESP32 is a library for ESP32 boards using WiFi or LwIP W5500, LAN8720 or ENC28J60
4+
AsyncMQTT_ESP32 is a library for ESP32 boards using WiFi or LwIP W5500 / W6100 / ENC28J60 / LAN8720 Ethernet
55
66
Based on and modified from :
77
88
1) async-mqtt-client (https://github.com/marvinroger/async-mqtt-client)
9-
2) async-mqtt-client (https://github.com/khoih-prog/AsyncMQTT_Generic)
9+
2) AsyncMQTT_Generic (https://github.com/khoih-prog/AsyncMQTT_Generic)
1010
1111
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMQTT_ESP32
1212
13-
Version: 1.9.0
13+
Version: 1.10.0
1414
1515
Version Modified By Date Comments
1616
------- ----------- ---------- -----------
1717
1.8.0 K Hoang 17/12/2022 Initial coding to port to ESP32 boards using WiFi or LwIP W5500, LAN8720 or ENC28J60
1818
1.9.0 K Hoang 21/12/2022 Add support to ESP32S2/C3 boards using LwIP W5500 or ENC28J60 Ethernet
19+
1.10.0 K Hoang 09/01/2023 Add support to ESP32 and ESP32S2/S3/C3 boards using LwIP W6100
1920
*****************************************************************************************************************************/
2021

2122
#pragma once

src/AsyncMQTT_ESP32_Impl.h

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
/****************************************************************************************************************************
22
AsyncMQTT_ESP32_Impl.h
33
4-
AsyncMQTT_ESP32 is a library for ESP32 boards using WiFi or LwIP W5500, LAN8720 or ENC28J60
4+
AsyncMQTT_ESP32 is a library for ESP32 boards using WiFi or LwIP W5500 / W6100 / ENC28J60 / LAN8720 Ethernet
55
66
Based on and modified from :
77
88
1) async-mqtt-client (https://github.com/marvinroger/async-mqtt-client)
9-
2) async-mqtt-client (https://github.com/khoih-prog/AsyncMQTT_Generic)
9+
2) AsyncMQTT_Generic (https://github.com/khoih-prog/AsyncMQTT_Generic)
1010
1111
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMQTT_ESP32
1212
13-
Version: 1.9.0
13+
Version: 1.10.0
1414
1515
Version Modified By Date Comments
1616
------- ----------- ---------- -----------
1717
1.8.0 K Hoang 17/12/2022 Initial coding to port to ESP32 boards using WiFi or LwIP W5500, LAN8720 or ENC28J60
1818
1.9.0 K Hoang 21/12/2022 Add support to ESP32S2/C3 boards using LwIP W5500 or ENC28J60 Ethernet
19+
1.10.0 K Hoang 09/01/2023 Add support to ESP32 and ESP32S2/S3/C3 boards using LwIP W6100
1920
*****************************************************************************************************************************/
2021

2122
#pragma once

src/AsyncMqttClient/Callbacks.hpp

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
/****************************************************************************************************************************
22
Callbacks.hpp
33
4-
AsyncMqttClient_Generic is a library for ESP32, ESP8266, Protenta_H7, STM32F7, etc. with current AsyncTCP support
5-
4+
AsyncMQTT_ESP32 is a library for ESP32 boards using WiFi or LwIP W5500 / W6100 / ENC28J60 / LAN8720 Ethernet
5+
66
Based on and modified from :
7-
7+
88
1) async-mqtt-client (https://github.com/marvinroger/async-mqtt-client)
9-
10-
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
9+
2) AsyncMQTT_Generic (https://github.com/khoih-prog/AsyncMQTT_Generic)
10+
11+
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMQTT_ESP32
1112
*****************************************************************************************************************************/
1213

1314
#pragma once

src/AsyncMqttClient/DisconnectReasons.hpp

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
/****************************************************************************************************************************
22
DisconnectReasons.hpp
33
4-
AsyncMqttClient_Generic is a library for ESP32, ESP8266, Protenta_H7, STM32F7, etc. with current AsyncTCP support
5-
4+
AsyncMQTT_ESP32 is a library for ESP32 boards using WiFi or LwIP W5500 / W6100 / ENC28J60 / LAN8720 Ethernet
5+
66
Based on and modified from :
7-
7+
88
1) async-mqtt-client (https://github.com/marvinroger/async-mqtt-client)
9-
10-
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
9+
2) AsyncMQTT_Generic (https://github.com/khoih-prog/AsyncMQTT_Generic)
10+
11+
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMQTT_ESP32
1112
*****************************************************************************************************************************/
1213

1314
#pragma once

src/AsyncMqttClient/Errors.hpp

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
/****************************************************************************************************************************
22
Errors.hpp
33
4-
AsyncMqttClient_Generic is a library for ESP32, ESP8266, Protenta_H7, STM32F7, etc. with current AsyncTCP support
5-
4+
AsyncMQTT_ESP32 is a library for ESP32 boards using WiFi or LwIP W5500 / W6100 / ENC28J60 / LAN8720 Ethernet
5+
66
Based on and modified from :
7-
7+
88
1) async-mqtt-client (https://github.com/marvinroger/async-mqtt-client)
9-
10-
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
9+
2) AsyncMQTT_Generic (https://github.com/khoih-prog/AsyncMQTT_Generic)
10+
11+
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMQTT_ESP32
1112
*****************************************************************************************************************************/
1213

1314
#pragma once

src/AsyncMqttClient/Flags.hpp

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
/****************************************************************************************************************************
22
Flags.hpp
33
4-
AsyncMqttClient_Generic is a library for ESP32, ESP8266, Protenta_H7, STM32F7, etc. with current AsyncTCP support
5-
4+
AsyncMQTT_ESP32 is a library for ESP32 boards using WiFi or LwIP W5500 / W6100 / ENC28J60 / LAN8720 Ethernet
5+
66
Based on and modified from :
7-
7+
88
1) async-mqtt-client (https://github.com/marvinroger/async-mqtt-client)
9-
10-
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
9+
2) AsyncMQTT_Generic (https://github.com/khoih-prog/AsyncMQTT_Generic)
10+
11+
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMQTT_ESP32
1112
*****************************************************************************************************************************/
1213

1314
#pragma once

src/AsyncMqttClient/Helpers.hpp

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
/****************************************************************************************************************************
22
Helpers.hpp
33
4-
AsyncMqttClient_Generic is a library for ESP32, ESP8266, Protenta_H7, STM32F7, etc. with current AsyncTCP support
5-
4+
AsyncMQTT_ESP32 is a library for ESP32 boards using WiFi or LwIP W5500 / W6100 / ENC28J60 / LAN8720 Ethernet
5+
66
Based on and modified from :
7-
7+
88
1) async-mqtt-client (https://github.com/marvinroger/async-mqtt-client)
9-
10-
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
9+
2) AsyncMQTT_Generic (https://github.com/khoih-prog/AsyncMQTT_Generic)
10+
11+
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMQTT_ESP32
1112
*****************************************************************************************************************************/
1213

1314
#pragma once

src/AsyncMqttClient/MessageProperties.hpp

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
/****************************************************************************************************************************
22
MessageProperties.hpp
33
4-
AsyncMqttClient_Generic is a library for ESP32, ESP8266, Protenta_H7, STM32F7, etc. with current AsyncTCP support
5-
4+
AsyncMQTT_ESP32 is a library for ESP32 boards using WiFi or LwIP W5500 / W6100 / ENC28J60 / LAN8720 Ethernet
5+
66
Based on and modified from :
7-
7+
88
1) async-mqtt-client (https://github.com/marvinroger/async-mqtt-client)
9-
10-
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
9+
2) AsyncMQTT_Generic (https://github.com/khoih-prog/AsyncMQTT_Generic)
10+
11+
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMQTT_ESP32
1112
*****************************************************************************************************************************/
1213

1314
#pragma once

src/AsyncMqttClient/Packets/ConnAckPacket.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
/****************************************************************************************************************************
22
ConnAckPacket.cpp
33
4-
AsyncMqttClient_Generic is a library for ESP32, ESP8266, Protenta_H7, STM32F7, etc. with current AsyncTCP support
4+
AsyncMQTT_ESP32 is a library for ESP32 boards using WiFi or LwIP W5500 / W6100 / ENC28J60 / LAN8720 Ethernet
55
66
Based on and modified from :
77
88
1) async-mqtt-client (https://github.com/marvinroger/async-mqtt-client)
9+
2) AsyncMQTT_Generic (https://github.com/khoih-prog/AsyncMQTT_Generic)
910
10-
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
11+
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMQTT_ESP32
1112
*****************************************************************************************************************************/
1213

1314
#include "ConnAckPacket.hpp"

src/AsyncMqttClient/Packets/ConnAckPacket.hpp

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
/****************************************************************************************************************************
22
ConnAckPacket.hpp
33
4-
AsyncMqttClient_Generic is a library for ESP32, ESP8266, Protenta_H7, STM32F7, etc. with current AsyncTCP support
5-
4+
AsyncMQTT_ESP32 is a library for ESP32 boards using WiFi or LwIP W5500 / W6100 / ENC28J60 / LAN8720 Ethernet
5+
66
Based on and modified from :
7-
7+
88
1) async-mqtt-client (https://github.com/marvinroger/async-mqtt-client)
9-
10-
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
9+
2) AsyncMQTT_Generic (https://github.com/khoih-prog/AsyncMQTT_Generic)
10+
11+
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMQTT_ESP32
1112
*****************************************************************************************************************************/
1213

1314
#pragma once

src/AsyncMqttClient/Packets/Out/Connect.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
/****************************************************************************************************************************
22
Connect.cpp
33
4-
AsyncMqttClient_Generic is a library for ESP32, ESP8266, Protenta_H7, STM32F7, etc. with current AsyncTCP support
4+
AsyncMQTT_ESP32 is a library for ESP32 boards using WiFi or LwIP W5500 / W6100 / ENC28J60 / LAN8720 Ethernet
55
66
Based on and modified from :
77
88
1) async-mqtt-client (https://github.com/marvinroger/async-mqtt-client)
9+
2) AsyncMQTT_Generic (https://github.com/khoih-prog/AsyncMQTT_Generic)
910
10-
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
11+
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMQTT_ESP32
1112
*****************************************************************************************************************************/
1213

1314
#include "Connect.hpp"

src/AsyncMqttClient/Packets/Out/Connect.hpp

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
/****************************************************************************************************************************
22
Connect.hpp
33
4-
AsyncMqttClient_Generic is a library for ESP32, ESP8266, Protenta_H7, STM32F7, etc. with current AsyncTCP support
5-
4+
AsyncMQTT_ESP32 is a library for ESP32 boards using WiFi or LwIP W5500 / W6100 / ENC28J60 / LAN8720 Ethernet
5+
66
Based on and modified from :
7-
7+
88
1) async-mqtt-client (https://github.com/marvinroger/async-mqtt-client)
9-
10-
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
9+
2) AsyncMQTT_Generic (https://github.com/khoih-prog/AsyncMQTT_Generic)
10+
11+
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMQTT_ESP32
1112
*****************************************************************************************************************************/
1213

1314
#pragma once

src/AsyncMqttClient/Packets/Out/Disconn.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
/****************************************************************************************************************************
22
Disconn.cpp
33
4-
AsyncMqttClient_Generic is a library for ESP32, ESP8266, Protenta_H7, STM32F7, etc. with current AsyncTCP support
4+
AsyncMQTT_ESP32 is a library for ESP32 boards using WiFi or LwIP W5500 / W6100 / ENC28J60 / LAN8720 Ethernet
55
66
Based on and modified from :
77
88
1) async-mqtt-client (https://github.com/marvinroger/async-mqtt-client)
9+
2) AsyncMQTT_Generic (https://github.com/khoih-prog/AsyncMQTT_Generic)
910
10-
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
11+
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMQTT_ESP32
1112
*****************************************************************************************************************************/
1213

1314
#include "Disconn.hpp"

src/AsyncMqttClient/Packets/Out/Disconn.hpp

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
/****************************************************************************************************************************
22
Disconn.hpp
33
4-
AsyncMqttClient_Generic is a library for ESP32, ESP8266, Protenta_H7, STM32F7, etc. with current AsyncTCP support
5-
4+
AsyncMQTT_ESP32 is a library for ESP32 boards using WiFi or LwIP W5500 / W6100 / ENC28J60 / LAN8720 Ethernet
5+
66
Based on and modified from :
7-
7+
88
1) async-mqtt-client (https://github.com/marvinroger/async-mqtt-client)
9-
10-
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
9+
2) AsyncMQTT_Generic (https://github.com/khoih-prog/AsyncMQTT_Generic)
10+
11+
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMQTT_ESP32
1112
*****************************************************************************************************************************/
1213

1314
#pragma once

src/AsyncMqttClient/Packets/Out/OutPacket.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
/****************************************************************************************************************************
22
OutPacket.cpp
33
4-
AsyncMqttClient_Generic is a library for ESP32, ESP8266, Protenta_H7, STM32F7, etc. with current AsyncTCP support
4+
AsyncMQTT_ESP32 is a library for ESP32 boards using WiFi or LwIP W5500 / W6100 / ENC28J60 / LAN8720 Ethernet
55
66
Based on and modified from :
77
88
1) async-mqtt-client (https://github.com/marvinroger/async-mqtt-client)
9+
2) AsyncMQTT_Generic (https://github.com/khoih-prog/AsyncMQTT_Generic)
910
10-
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
11+
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMQTT_ESP32
1112
*****************************************************************************************************************************/
1213

1314
#include "OutPacket.hpp"

src/AsyncMqttClient/Packets/Out/OutPacket.hpp

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
/****************************************************************************************************************************
22
OutPacket.hpp
33
4-
AsyncMqttClient_Generic is a library for ESP32, ESP8266, Protenta_H7, STM32F7, etc. with current AsyncTCP support
5-
4+
AsyncMQTT_ESP32 is a library for ESP32 boards using WiFi or LwIP W5500 / W6100 / ENC28J60 / LAN8720 Ethernet
5+
66
Based on and modified from :
7-
7+
88
1) async-mqtt-client (https://github.com/marvinroger/async-mqtt-client)
9-
10-
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMqttClient_Generic
9+
2) AsyncMQTT_Generic (https://github.com/khoih-prog/AsyncMQTT_Generic)
10+
11+
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMQTT_ESP32
1112
*****************************************************************************************************************************/
1213

1314
#pragma once

0 commit comments

Comments
 (0)