diff --git a/README.md b/README.md index 81a4c20..492741d 100644 --- a/README.md +++ b/README.md @@ -1728,7 +1728,7 @@ Following is debug terminal output when running example [MQTT_ThingStream](examp ``` Start MQTT_ThingStream on PORTENTA_H7_M7 with Ethernet using Portenta_Ethernet Library Portenta_H7_AsyncTCP v1.1.0 -Portenta_H7_AsyncWebServer v1.1.0 +Portenta_H7_AsyncWebServer v1.1.1 Using mac index = 17 Connected! IP address: 192.168.2.87 *************************************** @@ -1753,7 +1753,7 @@ Following is debug terminal output when running example [WebClient](examples/Eth ``` Start WebClientRepeating on PORTENTA_H7_M7 with Ethernet using Portenta_Ethernet Library Portenta_H7_AsyncTCP v1.1.0 -Portenta_H7_AsyncWebServer v1.1.0 +Portenta_H7_AsyncWebServer v1.1.1 Using mac index = 16 Connected! IP address: 192.168.2.87 @@ -1821,7 +1821,7 @@ Following is debug terminal output when running example [MQTTClient_Auth](exampl ``` Start MQTTClient_Auth on PORTENTA_H7_M7 with Ethernet using Portenta_Ethernet Library Portenta_H7_AsyncTCP v1.1.0 -Portenta_H7_AsyncWebServer v1.1.0 +Portenta_H7_AsyncWebServer v1.1.1 Using mac index = 9 Connected! IP address: 192.168.2.87 Attempting MQTT connection to broker.emqx.io...connected @@ -1842,7 +1842,7 @@ Following is debug terminal output when running example [MQTTClient_Basic](examp ``` Start MQTTClient_Basic on PORTENTA_H7_M7 with Ethernet using Portenta_Ethernet Library Portenta_H7_AsyncTCP v1.1.0 -Portenta_H7_AsyncWebServer v1.1.0 +Portenta_H7_AsyncWebServer v1.1.1 Using mac index = 8 Connected! IP address: 192.168.2.87 Attempting MQTT connection to broker.emqx.io...connected @@ -1861,7 +1861,7 @@ Following is debug terminal output when running example [Async_HTTPBasicAuth](ex ``` Start Async_HTTPBasicAuth on PORTENTA_H7_M7 with Ethernet using Portenta_Ethernet Library Portenta_H7_AsyncTCP v1.1.0 -Portenta_H7_AsyncWebServer v1.1.0 +Portenta_H7_AsyncWebServer v1.1.1 Using mac index = 16 Connected! IP address: 192.168.2.87 Async_HttpBasicAuth started @ IP : 192.168.2.87 @@ -1891,7 +1891,7 @@ Following are debug terminal output and screen shots when running example [Async ``` Start Async_AdvancedWebServer on PORTENTA_H7_M7 with Ethernet using Portenta_Ethernet Library Portenta_H7_AsyncTCP v1.1.0 -Portenta_H7_AsyncWebServer v1.1.0 +Portenta_H7_AsyncWebServer v1.1.1 Using mac index = 4 Connected! IP address: 192.168.2.87 HTTP EthernetWebServer is @ IP : 192.168.2.87 @@ -1912,7 +1912,7 @@ Following is the debug terminal and screen shot when running example [Async_Adva ``` Start Async_AdvancedWebServer on PORTENTA_H7_M7 with Portenta_H7 WiFi Portenta_H7_AsyncTCP v1.1.0 -Portenta_H7_AsyncWebServer v1.1.0 +Portenta_H7_AsyncWebServer v1.1.1 Connecting to SSID: HueNet1 SSID: HueNet1 Local IP Address: 192.168.2.94 diff --git a/changelog.md b/changelog.md index 82ca4ea..050c0e9 100644 --- a/changelog.md +++ b/changelog.md @@ -11,6 +11,7 @@ ## Table of Contents * [Changelog](#changelog) + * [Releases v1.1.1](#Releases-v111) * [Releases v1.1.0](#Releases-v110) * [Initial Releases v1.0.0](#Initial-Releases-v100) @@ -19,6 +20,11 @@ ## Changelog +### Releases v1.1.1 + +1. Update `platform.ini` and `library.json` to use original `khoih-prog` instead of `khoih.prog` after PIO fix + + ### Releases v1.1.0 1. Add support to **Portenta_H7 boards** such as Portenta_H7 Rev2 ABX00042, etc., using [**ArduinoCore-mbed mbed_portenta** core](https://github.com/arduino/ArduinoCore-mbed) and `Murata WiFi` diff --git a/examples/Ethernet/Async_AdvancedWebServer/Async_AdvancedWebServer.ino b/examples/Ethernet/Async_AdvancedWebServer/Async_AdvancedWebServer.ino index 979aa09..9a63766 100644 --- a/examples/Ethernet/Async_AdvancedWebServer/Async_AdvancedWebServer.ino +++ b/examples/Ethernet/Async_AdvancedWebServer/Async_AdvancedWebServer.ino @@ -36,13 +36,6 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Version: 1.1.0 - - Version Modified By Date Comments - ------- ----------- ---------- ----------- - 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet - 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi *****************************************************************************************************************************/ #if !( defined(ARDUINO_PORTENTA_H7_M7) || defined(ARDUINO_PORTENTA_H7_M4) ) diff --git a/examples/Ethernet/Async_HelloServer/Async_HelloServer.ino b/examples/Ethernet/Async_HelloServer/Async_HelloServer.ino index 1675ccd..a7a9c5c 100644 --- a/examples/Ethernet/Async_HelloServer/Async_HelloServer.ino +++ b/examples/Ethernet/Async_HelloServer/Async_HelloServer.ino @@ -8,13 +8,6 @@ Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer) Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - - Version: 1.1.0 - - Version Modified By Date Comments - ------- ----------- ---------- ----------- - 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet - 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi *****************************************************************************************************************************/ #if !( defined(ARDUINO_PORTENTA_H7_M7) || defined(ARDUINO_PORTENTA_H7_M4) ) diff --git a/examples/Ethernet/Async_HelloServer2/Async_HelloServer2.ino b/examples/Ethernet/Async_HelloServer2/Async_HelloServer2.ino index b602593..696af44 100644 --- a/examples/Ethernet/Async_HelloServer2/Async_HelloServer2.ino +++ b/examples/Ethernet/Async_HelloServer2/Async_HelloServer2.ino @@ -8,13 +8,6 @@ Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer) Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - - Version: 1.1.0 - - Version Modified By Date Comments - ------- ----------- ---------- ----------- - 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet - 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi *****************************************************************************************************************************/ #if !( defined(ARDUINO_PORTENTA_H7_M7) || defined(ARDUINO_PORTENTA_H7_M4) ) diff --git a/examples/Ethernet/Async_HttpBasicAuth/Async_HttpBasicAuth.ino b/examples/Ethernet/Async_HttpBasicAuth/Async_HttpBasicAuth.ino index cb56b4e..7997e50 100644 --- a/examples/Ethernet/Async_HttpBasicAuth/Async_HttpBasicAuth.ino +++ b/examples/Ethernet/Async_HttpBasicAuth/Async_HttpBasicAuth.ino @@ -8,13 +8,6 @@ Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer) Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - - Version: 1.1.0 - - Version Modified By Date Comments - ------- ----------- ---------- ----------- - 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet - 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi *****************************************************************************************************************************/ #if !( defined(ARDUINO_PORTENTA_H7_M7) || defined(ARDUINO_PORTENTA_H7_M4) ) diff --git a/examples/Ethernet/Async_PostServer/Async_PostServer.ino b/examples/Ethernet/Async_PostServer/Async_PostServer.ino index e87427d..46c23bb 100644 --- a/examples/Ethernet/Async_PostServer/Async_PostServer.ino +++ b/examples/Ethernet/Async_PostServer/Async_PostServer.ino @@ -8,13 +8,6 @@ Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer) Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - - Version: 1.1.0 - - Version Modified By Date Comments - ------- ----------- ---------- ----------- - 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet - 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi *****************************************************************************************************************************/ #if !( defined(ARDUINO_PORTENTA_H7_M7) || defined(ARDUINO_PORTENTA_H7_M4) ) diff --git a/examples/Ethernet/MQTTClient_Auth/MQTTClient_Auth.ino b/examples/Ethernet/MQTTClient_Auth/MQTTClient_Auth.ino index 40611c5..67ce1a2 100644 --- a/examples/Ethernet/MQTTClient_Auth/MQTTClient_Auth.ino +++ b/examples/Ethernet/MQTTClient_Auth/MQTTClient_Auth.ino @@ -8,13 +8,6 @@ Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer) Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - - Version: 1.1.0 - - Version Modified By Date Comments - ------- ----------- ---------- ----------- - 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet - 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi *****************************************************************************************************************************/ /* diff --git a/examples/Ethernet/MQTTClient_Basic/MQTTClient_Basic.ino b/examples/Ethernet/MQTTClient_Basic/MQTTClient_Basic.ino index 1d1f23e..d822cb3 100644 --- a/examples/Ethernet/MQTTClient_Basic/MQTTClient_Basic.ino +++ b/examples/Ethernet/MQTTClient_Basic/MQTTClient_Basic.ino @@ -8,13 +8,6 @@ Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer) Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - - Version: 1.1.0 - - Version Modified By Date Comments - ------- ----------- ---------- ----------- - 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet - 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi *****************************************************************************************************************************/ /* diff --git a/examples/Ethernet/MQTT_ThingStream/MQTT_ThingStream.ino b/examples/Ethernet/MQTT_ThingStream/MQTT_ThingStream.ino index a3f8d27..ff44744 100644 --- a/examples/Ethernet/MQTT_ThingStream/MQTT_ThingStream.ino +++ b/examples/Ethernet/MQTT_ThingStream/MQTT_ThingStream.ino @@ -8,13 +8,6 @@ Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer) Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - - Version: 1.1.0 - - Version Modified By Date Comments - ------- ----------- ---------- ----------- - 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet - 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi *****************************************************************************************************************************/ /* diff --git a/examples/Ethernet/WebClient/WebClient.ino b/examples/Ethernet/WebClient/WebClient.ino index ef998a6..5ecba90 100644 --- a/examples/Ethernet/WebClient/WebClient.ino +++ b/examples/Ethernet/WebClient/WebClient.ino @@ -8,13 +8,6 @@ Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer) Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - - Version: 1.1.0 - - Version Modified By Date Comments - ------- ----------- ---------- ----------- - 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet - 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi *****************************************************************************************************************************/ diff --git a/examples/Ethernet/WebClientRepeating/WebClientRepeating.ino b/examples/Ethernet/WebClientRepeating/WebClientRepeating.ino index a37171b..92f77c6 100644 --- a/examples/Ethernet/WebClientRepeating/WebClientRepeating.ino +++ b/examples/Ethernet/WebClientRepeating/WebClientRepeating.ino @@ -8,13 +8,6 @@ Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer) Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - - Version: 1.1.0 - - Version Modified By Date Comments - ------- ----------- ---------- ----------- - 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet - 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi *****************************************************************************************************************************/ #include "defines.h" diff --git a/examples/WiFi/Async_AdvancedWebServer/Async_AdvancedWebServer.ino b/examples/WiFi/Async_AdvancedWebServer/Async_AdvancedWebServer.ino index 825f720..6386881 100644 --- a/examples/WiFi/Async_AdvancedWebServer/Async_AdvancedWebServer.ino +++ b/examples/WiFi/Async_AdvancedWebServer/Async_AdvancedWebServer.ino @@ -36,13 +36,6 @@ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - Version: 1.1.0 - - Version Modified By Date Comments - ------- ----------- ---------- ----------- - 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet - 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi *****************************************************************************************************************************/ #if !( defined(ARDUINO_PORTENTA_H7_M7) || defined(ARDUINO_PORTENTA_H7_M4) ) diff --git a/examples/WiFi/Async_HelloServer/Async_HelloServer.ino b/examples/WiFi/Async_HelloServer/Async_HelloServer.ino index 0771d42..be2db51 100644 --- a/examples/WiFi/Async_HelloServer/Async_HelloServer.ino +++ b/examples/WiFi/Async_HelloServer/Async_HelloServer.ino @@ -8,13 +8,6 @@ Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer) Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - - Version: 1.1.0 - - Version Modified By Date Comments - ------- ----------- ---------- ----------- - 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet - 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi *****************************************************************************************************************************/ #if !( defined(ARDUINO_PORTENTA_H7_M7) || defined(ARDUINO_PORTENTA_H7_M4) ) diff --git a/examples/WiFi/Async_HelloServer2/Async_HelloServer2.ino b/examples/WiFi/Async_HelloServer2/Async_HelloServer2.ino index 76322fd..bfbd427 100644 --- a/examples/WiFi/Async_HelloServer2/Async_HelloServer2.ino +++ b/examples/WiFi/Async_HelloServer2/Async_HelloServer2.ino @@ -8,13 +8,6 @@ Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer) Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - - Version: 1.1.0 - - Version Modified By Date Comments - ------- ----------- ---------- ----------- - 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet - 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi *****************************************************************************************************************************/ #if !( defined(ARDUINO_PORTENTA_H7_M7) || defined(ARDUINO_PORTENTA_H7_M4) ) diff --git a/examples/WiFi/Async_HttpBasicAuth/Async_HttpBasicAuth.ino b/examples/WiFi/Async_HttpBasicAuth/Async_HttpBasicAuth.ino index c79c6be..8ad010c 100644 --- a/examples/WiFi/Async_HttpBasicAuth/Async_HttpBasicAuth.ino +++ b/examples/WiFi/Async_HttpBasicAuth/Async_HttpBasicAuth.ino @@ -8,13 +8,6 @@ Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer) Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - - Version: 1.1.0 - - Version Modified By Date Comments - ------- ----------- ---------- ----------- - 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet - 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi *****************************************************************************************************************************/ #if !( defined(ARDUINO_PORTENTA_H7_M7) || defined(ARDUINO_PORTENTA_H7_M4) ) diff --git a/examples/WiFi/Async_PostServer/Async_PostServer.ino b/examples/WiFi/Async_PostServer/Async_PostServer.ino index 4b2c317..10a4d3d 100644 --- a/examples/WiFi/Async_PostServer/Async_PostServer.ino +++ b/examples/WiFi/Async_PostServer/Async_PostServer.ino @@ -8,13 +8,6 @@ Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer) Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - - Version: 1.1.0 - - Version Modified By Date Comments - ------- ----------- ---------- ----------- - 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet - 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi *****************************************************************************************************************************/ #if !( defined(ARDUINO_PORTENTA_H7_M7) || defined(ARDUINO_PORTENTA_H7_M4) ) diff --git a/examples/WiFi/MQTTClient_Auth/MQTTClient_Auth.ino b/examples/WiFi/MQTTClient_Auth/MQTTClient_Auth.ino index 3376dc0..bbe71ea 100644 --- a/examples/WiFi/MQTTClient_Auth/MQTTClient_Auth.ino +++ b/examples/WiFi/MQTTClient_Auth/MQTTClient_Auth.ino @@ -8,13 +8,6 @@ Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer) Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - - Version: 1.1.0 - - Version Modified By Date Comments - ------- ----------- ---------- ----------- - 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet - 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi *****************************************************************************************************************************/ /* diff --git a/examples/WiFi/MQTTClient_Basic/MQTTClient_Basic.ino b/examples/WiFi/MQTTClient_Basic/MQTTClient_Basic.ino index ee4edbf..e0f017a 100644 --- a/examples/WiFi/MQTTClient_Basic/MQTTClient_Basic.ino +++ b/examples/WiFi/MQTTClient_Basic/MQTTClient_Basic.ino @@ -8,13 +8,6 @@ Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer) Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - - Version: 1.1.0 - - Version Modified By Date Comments - ------- ----------- ---------- ----------- - 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet - 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi *****************************************************************************************************************************/ /* diff --git a/examples/WiFi/MQTT_ThingStream/MQTT_ThingStream.ino b/examples/WiFi/MQTT_ThingStream/MQTT_ThingStream.ino index 5acbde6..b14ba80 100644 --- a/examples/WiFi/MQTT_ThingStream/MQTT_ThingStream.ino +++ b/examples/WiFi/MQTT_ThingStream/MQTT_ThingStream.ino @@ -8,13 +8,6 @@ Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer) Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - - Version: 1.1.0 - - Version Modified By Date Comments - ------- ----------- ---------- ----------- - 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet - 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi *****************************************************************************************************************************/ /* diff --git a/examples/WiFi/WebClient/WebClient.ino b/examples/WiFi/WebClient/WebClient.ino index 1253745..3247f7e 100644 --- a/examples/WiFi/WebClient/WebClient.ino +++ b/examples/WiFi/WebClient/WebClient.ino @@ -8,13 +8,6 @@ Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer) Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - - Version: 1.1.0 - - Version Modified By Date Comments - ------- ----------- ---------- ----------- - 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet - 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi *****************************************************************************************************************************/ diff --git a/examples/WiFi/WebClientRepeating/WebClientRepeating.ino b/examples/WiFi/WebClientRepeating/WebClientRepeating.ino index 296220f..880308a 100644 --- a/examples/WiFi/WebClientRepeating/WebClientRepeating.ino +++ b/examples/WiFi/WebClientRepeating/WebClientRepeating.ino @@ -8,13 +8,6 @@ Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer) Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - - Version: 1.1.0 - - Version Modified By Date Comments - ------- ----------- ---------- ----------- - 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet - 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi *****************************************************************************************************************************/ #include "defines.h" diff --git a/library.json b/library.json index 8d6b40f..cf24009 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "Portenta_H7_AsyncWebServer", - "version": "1.1.0", + "version": "1.1.1", "keywords": "http, async, websocket, webserver, async-webserver, async-tcp, async-udp, async-websocket, async-http, ssl, tls, mbed, mbed-portenta, portenta-h7, portentah7, portenta-h7-m7, portenta-h7-m4, portentah7-m7, portentah7-m4, stm32h7", "description": "Asynchronous WebServer Library for STM32H7-based Portenta_H7 using mbed_portenta core. This library, which is relied on Portenta_H7_AsyncTCP, is part of a series of advanced Async libraries, such as AsyncTCP, AsyncUDP, AsyncWebSockets, AsyncHTTPRequest, AsyncHTTPSRequest, etc.", "authors": @@ -12,7 +12,7 @@ { "name": "Khoi Hoang", "url": "https://github.com/khoih-prog", - "email": "khoih.prog@gmail.com", + "email": "khoih-prog@gmail.com", "maintainer": true } ], @@ -32,7 +32,7 @@ "dependencies": [ { - "owner": "khoih.prog", + "owner": "khoih-prog", "name": "Portenta_H7_AsyncTCP", "version": "^1.1.0" } diff --git a/library.properties b/library.properties index dd38d2a..df25c87 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=Portenta_H7_AsyncWebServer -version=1.1.0 +version=1.1.1 author=Hristo Gochkov,Khoi Hoang maintainer=Khoi Hoang sentence=Asynchronous WebServer Library for STM32H7-based Portenta_H7 using mbed_portenta core. diff --git a/platformio/platformio.ini b/platformio/platformio.ini index 14e8bb0..3603f59 100644 --- a/platformio/platformio.ini +++ b/platformio/platformio.ini @@ -41,6 +41,11 @@ upload_speed = 921600 lib_compat_mode = strict lib_deps = +; PlatformIO 4.x + + Portenta_H7_AsyncTCP@>=1.1.0 +; PlatformIO 5.x +; khoih-prog/Portenta_H7_AsyncTCP@>=1.1.0 build_flags = diff --git a/src/Portenta_H7_AsyncEventSource.cpp b/src/Portenta_H7_AsyncEventSource.cpp index 62cbdcd..e433fa3 100644 --- a/src/Portenta_H7_AsyncEventSource.cpp +++ b/src/Portenta_H7_AsyncEventSource.cpp @@ -9,12 +9,13 @@ Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - Version: 1.1.0 + Version: 1.1.1 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi + 1.1.1 K Hoang 12/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #if !defined(_PORTENTA_H7_AWS_LOGLEVEL_) diff --git a/src/Portenta_H7_AsyncEventSource.h b/src/Portenta_H7_AsyncEventSource.h index 7fc35d2..22c81df 100644 --- a/src/Portenta_H7_AsyncEventSource.h +++ b/src/Portenta_H7_AsyncEventSource.h @@ -9,12 +9,13 @@ Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - Version: 1.1.0 + Version: 1.1.1 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi + 1.1.1 K Hoang 12/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #pragma once diff --git a/src/Portenta_H7_AsyncJson.h b/src/Portenta_H7_AsyncJson.h index a099439..034f53a 100644 --- a/src/Portenta_H7_AsyncJson.h +++ b/src/Portenta_H7_AsyncJson.h @@ -9,12 +9,13 @@ Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - Version: 1.1.0 + Version: 1.1.1 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi + 1.1.1 K Hoang 12/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ /* Async Response to use with ArduinoJson and AsyncWebServer diff --git a/src/Portenta_H7_AsyncWebAuthentication.cpp b/src/Portenta_H7_AsyncWebAuthentication.cpp index a285713..a492d85 100644 --- a/src/Portenta_H7_AsyncWebAuthentication.cpp +++ b/src/Portenta_H7_AsyncWebAuthentication.cpp @@ -9,12 +9,13 @@ Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - Version: 1.1.0 + Version: 1.1.1 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi + 1.1.1 K Hoang 12/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #if !defined(_PORTENTA_H7_AWS_LOGLEVEL_) diff --git a/src/Portenta_H7_AsyncWebAuthentication.h b/src/Portenta_H7_AsyncWebAuthentication.h index 0dc2d44..6aa570c 100644 --- a/src/Portenta_H7_AsyncWebAuthentication.h +++ b/src/Portenta_H7_AsyncWebAuthentication.h @@ -9,12 +9,13 @@ Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - Version: 1.1.0 + Version: 1.1.1 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi + 1.1.1 K Hoang 12/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #pragma once diff --git a/src/Portenta_H7_AsyncWebHandlerImpl.h b/src/Portenta_H7_AsyncWebHandlerImpl.h index 6c7e8c4..e64db8f 100644 --- a/src/Portenta_H7_AsyncWebHandlerImpl.h +++ b/src/Portenta_H7_AsyncWebHandlerImpl.h @@ -9,12 +9,13 @@ Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - Version: 1.1.0 + Version: 1.1.1 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi + 1.1.1 K Hoang 12/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #pragma once diff --git a/src/Portenta_H7_AsyncWebHandlers.cpp b/src/Portenta_H7_AsyncWebHandlers.cpp index 18da72b..0540754 100644 --- a/src/Portenta_H7_AsyncWebHandlers.cpp +++ b/src/Portenta_H7_AsyncWebHandlers.cpp @@ -9,12 +9,13 @@ Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - Version: 1.1.0 + Version: 1.1.1 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi + 1.1.1 K Hoang 12/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #if !defined(_PORTENTA_H7_AWS_LOGLEVEL_) diff --git a/src/Portenta_H7_AsyncWebRequest.cpp b/src/Portenta_H7_AsyncWebRequest.cpp index c2820be..b973940 100644 --- a/src/Portenta_H7_AsyncWebRequest.cpp +++ b/src/Portenta_H7_AsyncWebRequest.cpp @@ -9,12 +9,13 @@ Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - Version: 1.1.0 + Version: 1.1.1 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi + 1.1.1 K Hoang 12/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #if !defined(_PORTENTA_H7_AWS_LOGLEVEL_) diff --git a/src/Portenta_H7_AsyncWebResponseImpl.h b/src/Portenta_H7_AsyncWebResponseImpl.h index 12ef7bc..11a870b 100644 --- a/src/Portenta_H7_AsyncWebResponseImpl.h +++ b/src/Portenta_H7_AsyncWebResponseImpl.h @@ -9,12 +9,13 @@ Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - Version: 1.1.0 + Version: 1.1.1 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi + 1.1.1 K Hoang 12/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #pragma once diff --git a/src/Portenta_H7_AsyncWebResponses.cpp b/src/Portenta_H7_AsyncWebResponses.cpp index 067ed50..c390247 100644 --- a/src/Portenta_H7_AsyncWebResponses.cpp +++ b/src/Portenta_H7_AsyncWebResponses.cpp @@ -9,12 +9,13 @@ Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - Version: 1.1.0 + Version: 1.1.1 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi + 1.1.1 K Hoang 12/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #if !defined(_PORTENTA_H7_AWS_LOGLEVEL_) diff --git a/src/Portenta_H7_AsyncWebServer.cpp b/src/Portenta_H7_AsyncWebServer.cpp index 8bd077f..bec044e 100644 --- a/src/Portenta_H7_AsyncWebServer.cpp +++ b/src/Portenta_H7_AsyncWebServer.cpp @@ -9,12 +9,13 @@ Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - Version: 1.1.0 + Version: 1.1.1 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi + 1.1.1 K Hoang 12/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #if !defined(_PORTENTA_H7_AWS_LOGLEVEL_) diff --git a/src/Portenta_H7_AsyncWebServer.h b/src/Portenta_H7_AsyncWebServer.h index f30eb66..61678e3 100644 --- a/src/Portenta_H7_AsyncWebServer.h +++ b/src/Portenta_H7_AsyncWebServer.h @@ -9,12 +9,13 @@ Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - Version: 1.1.0 + Version: 1.1.1 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi + 1.1.1 K Hoang 12/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #ifndef _PORTENTA_H7_ASYNC_WEBSERVER_H_ @@ -29,7 +30,7 @@ #endif -#define PORTENTA_H7_ASYNC_WEBSERVER_VERSION "Portenta_H7_AsyncWebServer v1.1.0" +#define PORTENTA_H7_ASYNC_WEBSERVER_VERSION "Portenta_H7_AsyncWebServer v1.1.1" #ifndef PORTENTA_H7_AWS_UNUSED #define PORTENTA_H7_AWS_UNUSED(x) (void)(x) diff --git a/src/Portenta_H7_AsyncWebServer_Debug.h b/src/Portenta_H7_AsyncWebServer_Debug.h index 7311345..b54696d 100644 --- a/src/Portenta_H7_AsyncWebServer_Debug.h +++ b/src/Portenta_H7_AsyncWebServer_Debug.h @@ -9,12 +9,13 @@ Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - Version: 1.1.0 + Version: 1.1.1 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi + 1.1.1 K Hoang 12/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #pragma once diff --git a/src/Portenta_H7_AsyncWebSocket.cpp b/src/Portenta_H7_AsyncWebSocket.cpp index 4e7a1af..e10c739 100644 --- a/src/Portenta_H7_AsyncWebSocket.cpp +++ b/src/Portenta_H7_AsyncWebSocket.cpp @@ -9,12 +9,13 @@ Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - Version: 1.1.0 + Version: 1.1.1 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi + 1.1.1 K Hoang 12/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #include "Arduino.h" diff --git a/src/Portenta_H7_AsyncWebSocket.h b/src/Portenta_H7_AsyncWebSocket.h index a1afd46..3d939c9 100644 --- a/src/Portenta_H7_AsyncWebSocket.h +++ b/src/Portenta_H7_AsyncWebSocket.h @@ -9,12 +9,13 @@ Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - Version: 1.1.0 + Version: 1.1.1 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi + 1.1.1 K Hoang 12/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #pragma once diff --git a/src/Portenta_H7_AsyncWebSynchronization.h b/src/Portenta_H7_AsyncWebSynchronization.h index a3222a3..cd7246e 100644 --- a/src/Portenta_H7_AsyncWebSynchronization.h +++ b/src/Portenta_H7_AsyncWebSynchronization.h @@ -9,12 +9,13 @@ Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - Version: 1.1.0 + Version: 1.1.1 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi + 1.1.1 K Hoang 12/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #pragma once diff --git a/src/Portenta_H7_StringArray.h b/src/Portenta_H7_StringArray.h index 6e0cbba..621a871 100644 --- a/src/Portenta_H7_StringArray.h +++ b/src/Portenta_H7_StringArray.h @@ -9,12 +9,13 @@ Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - Version: 1.1.0 + Version: 1.1.1 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi + 1.1.1 K Hoang 12/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #pragma once diff --git a/src/libb64/cdecode.c b/src/libb64/cdecode.c index 73d5eea..87dd0be 100644 --- a/src/libb64/cdecode.c +++ b/src/libb64/cdecode.c @@ -12,12 +12,13 @@ Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - Version: 1.1.0 + Version: 1.1.1 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi + 1.1.1 K Hoang 12/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #include "cdecode.h" diff --git a/src/libb64/cdecode.h b/src/libb64/cdecode.h index f5d2145..98041a2 100644 --- a/src/libb64/cdecode.h +++ b/src/libb64/cdecode.h @@ -12,12 +12,13 @@ Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - Version: 1.1.0 + Version: 1.1.1 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi + 1.1.1 K Hoang 12/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #pragma once diff --git a/src/libb64/cencode.c b/src/libb64/cencode.c index 5e4ff63..631403b 100644 --- a/src/libb64/cencode.c +++ b/src/libb64/cencode.c @@ -12,12 +12,13 @@ Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - Version: 1.1.0 + Version: 1.1.1 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi + 1.1.1 K Hoang 12/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #include "cencode.h" diff --git a/src/libb64/cencode.h b/src/libb64/cencode.h index 163c173..d715d42 100644 --- a/src/libb64/cencode.h +++ b/src/libb64/cencode.h @@ -12,12 +12,13 @@ Built by Khoi Hoang https://github.com/khoih-prog/Portenta_H7_AsyncWebServer Licensed under GPLv3 license - Version: 1.1.0 + Version: 1.1.1 Version Modified By Date Comments ------- ----------- ---------- ----------- 1.0.0 K Hoang 06/10/2021 Initial coding for Portenta_H7 (STM32H7) with Vision-Shield Ethernet 1.1.0 K Hoang 08/10/2021 Add support to Portenta_H7 (STM32H7) using Murata WiFi + 1.1.1 K Hoang 12/10/2021 Update `platform.ini` and `library.json` *****************************************************************************************************************************/ #pragma once