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

Commit df638a9

Browse files
authored
v1.4.1 to update to arduino.tips
### Releases v1.4.1 1. Change from `arduino.cc` to `arduino.tips` in examples
1 parent 8616dc6 commit df638a9

27 files changed

+142
-109
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Please ensure to specify the following:
2929
Arduino IDE version: 1.8.19
3030
STM32F7 Nucleo-144 NUCLEO_F767ZI, STM32 core v2.2.0
3131
OS: Ubuntu 20.04 LTS
32-
Linux xy-Inspiron-3593 5.13.0-39-generic #44~20.04.1-Ubuntu SMP Thu Mar 24 16:43:35 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
32+
Linux xy-Inspiron-3593 5.13.0-40-generic #45~20.04.1-Ubuntu SMP Mon Apr 4 09:38:31 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
3333
3434
Context:
3535
I encountered a crash while trying to use the Timer Interrupt.

README.md

Lines changed: 59 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -277,10 +277,10 @@ Check [`EthernetWebServer Library Issue: Support for STM32F Series`](https://git
277277
2. [`Arduino Core for STM32 v2.2.0+`](https://github.com/stm32duino/Arduino_Core_STM32) for STM32 boards. [![GitHub release](https://img.shields.io/github/release/stm32duino/Arduino_Core_STM32.svg)](https://github.com/stm32duino/Arduino_Core_STM32/releases/latest)
278278
3. [`Functional-Vlpp library v1.0.2+`](https://github.com/khoih-prog/functional-vlpp) to use server's lambda function. To install. check [![arduino-library-badge](https://www.ardu-badge.com/badge/Functional-Vlpp.svg?)](https://www.ardu-badge.com/Functional-Vlpp)
279279
4. For built-in LAN8742A or LAN8720 Ethernet:
280-
- [`STM32Ethernet library v1.2.0+`](https://github.com/stm32duino/STM32Ethernet) for built-in LAN8742A Ethernet on (Nucleo-144, Discovery). [![GitHub release](https://img.shields.io/github/release/stm32duino/STM32Ethernet.svg)](https://github.com/stm32duino/STM32Ethernet/releases/latest)
280+
- [`STM32Ethernet library v1.3.0+`](https://github.com/stm32duino/STM32Ethernet) for built-in LAN8742A Ethernet on (Nucleo-144, Discovery). [![GitHub release](https://img.shields.io/github/release/stm32duino/STM32Ethernet.svg)](https://github.com/stm32duino/STM32Ethernet/releases/latest)
281281
- [`LwIP library v2.1.2+`](https://github.com/stm32duino/LwIP) for built-in LAN8742A Ethernet on (Nucleo-144, Discovery). [![GitHub release](https://img.shields.io/github/release/stm32duino/LwIP.svg)](https://github.com/stm32duino/LwIP/releases/latest)
282282
5. For W5x00 Ethernet:
283-
- [`Ethernet_Generic library v2.0.0+`](https://github.com/khoih-prog/Ethernet_Generic) for W5100, W5200 and W5500/WIZ550io/WIZ850io/USR-ES1 with Wiznet W5500 chip. [![GitHub release](https://img.shields.io/github/release/khoih-prog/Ethernet_Generic.svg)](https://github.com/khoih-prog/Ethernet_Generic/releases/latest)
283+
- [`Ethernet_Generic library v2.1.0+`](https://github.com/khoih-prog/Ethernet_Generic) for W5100, W5200 and W5500/WIZ550io/WIZ850io/USR-ES1 with Wiznet W5500 chip. [![GitHub release](https://img.shields.io/github/release/khoih-prog/Ethernet_Generic.svg)](https://github.com/khoih-prog/Ethernet_Generic/releases/latest)
284284
6. For ENC28J60 Ethernet:
285285
- [`EthernetENC library v2.0.2+`](https://github.com/jandrassy/EthernetENC) for ENC28J60. [![GitHub release](https://img.shields.io/github/release/jandrassy/EthernetENC.svg)](https://github.com/jandrassy/EthernetENC/releases/latest). **New and Better**
286286
- [`UIPEthernet library v2.0.11+`](https://github.com/UIPEthernet/UIPEthernet) for ENC28J60. [![GitHub release](https://img.shields.io/github/release/UIPEthernet/UIPEthernet.svg)](https://github.com/UIPEthernet/UIPEthernet/releases/latest)
@@ -592,7 +592,7 @@ The Debug Terminal will then show that the current SPI pin usage of **NUCLEO_F76
592592
```
593593
594594
Start AdvancedWebServer on NUCLEO_F767ZI, using W5x00 using Ethernet_Generic Library
595-
EthernetWebServer_STM32 v1.4.0
595+
EthernetWebServer_STM32 v1.4.1
596596
[EWS] Board : NUCLEO_F767ZI , setCsPin: 10
597597
[EWS] Default SPI pinout:
598598
[EWS] MOSI: 11
@@ -601,7 +601,6 @@ EthernetWebServer_STM32 v1.4.0
601601
[EWS] SS: 10
602602
[EWS] =========================
603603
Connected! IP address: 192.168.2.89
604-
605604
```
606605

607606
Connect the wires according to the displayed information.
@@ -954,7 +953,7 @@ Following is debug terminal output and screen shot when running example [Advance
954953

955954
```
956955
Start AdvancedWebServer on NUCLEO_F767ZI, using LAN8742A Ethernet & STM32Ethernet Library
957-
EthernetWebServer_STM32 v1.4.0
956+
EthernetWebServer_STM32 v1.4.1
958957
HTTP EthernetWebServer is @ IP : 192.168.2.117
959958
EthernetWebServer::handleClient: New Client
960959
method: GET
@@ -1078,7 +1077,7 @@ The following is debug terminal output when running example [WebClientRepeating]
10781077

10791078
```
10801079
Start WebClientRepeating on NUCLEO_F767ZI, using ENC28J60 & EthernetENC Library
1081-
EthernetWebServer_STM32 v1.4.0
1080+
EthernetWebServer_STM32 v1.4.1
10821081
[EWS] Board : NUCLEO_F767ZI , setCsPin: 10
10831082
[EWS] Default SPI pinout:
10841083
[EWS] MOSI: 11
@@ -1087,26 +1086,32 @@ EthernetWebServer_STM32 v1.4.0
10871086
[EWS] SS: 10
10881087
[EWS] =========================
10891088
You're connected to the network, IP = 192.168.2.123
1089+
10901090
Connecting...
10911091
HTTP/1.1 200 OK
1092-
Server: nginx/1.4.2
1093-
Date: Wed, 16 Sep 2020 22:17:04 GMT
1092+
Date: Wed, 27 Apr 2022 17:12:43 GMT
10941093
Content-Type: text/plain
10951094
Content-Length: 2263
1096-
Last-Modified: Wed, 02 Oct 2013 13:46:47 GMT
10971095
Connection: close
1098-
Vary: Accept-Encoding
1099-
ETag: "524c23c7-8d7"
1100-
Accept-Ranges: bytes
1096+
x-amz-id-2: Y0KDwqmE5CUvFMSLnxWUV4XoqEDCUL1h9GN+vWHRz7vpjDK77h8fqAbuEqBXVEZRm3Ybv7bCZtE=
1097+
x-amz-request-id: EFJSRB21CQFZQDRX
1098+
Last-Modified: Wed, 23 Feb 2022 14:56:42 GMT
1099+
ETag: "667cf48afcc12c38c8c1637947a04224"
1100+
CF-Cache-Status: DYNAMIC
1101+
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=T2F7koaxDm8y3draFWHzKSKtqF3brIseyVbvIpy%2FDp4RGAh7d6Lc%2F7rw%2B96w7hYckhvRgN1l9sMJJuNuQCxG8JZeCIelNLNXDBKH5BJajxjC7kMiQ3PwdUm8jFr%2B0aA%3D"}],"group":"cf-nel","max_age":604800}
1102+
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
1103+
Server: cloudflare
1104+
CF-RAY: 70292f44ceb3a253-YYZ
1105+
alt-svc: h3=":443"; ma=86400, h3-29=":443"; ma=86400
11011106
11021107
11031108
`:;;;,` .:;;:.
11041109
.;;;;;;;;;;;` :;;;;;;;;;;: TM
1105-
`;;;;;;;;;;;;;;;` :;;;;;;;;;;;;;;;
1106-
:;;;;;;;;;;;;;;;;;; `;;;;;;;;;;;;;;;;;;
1107-
;;;;;;;;;;;;;;;;;;;;; .;;;;;;;;;;;;;;;;;;;;
1108-
;;;;;;;;:` `;;;;;;;;; ,;;;;;;;;.` .;;;;;;;;
1109-
.;;;;;;, :;;;;;;; .;;;;;;; ;;;;;;;
1110+
`;;;;;;;;;;;;;;;` :;;;;;;;;;;;;;;;
1111+
:;;;;;;;;;;;;;;;;;; `;;;;;;;;;;;;;;;;;;
1112+
;;;;;;;;;;;;;;;;;;;;; .;;;;;;;;;;;;;;;;;;;;
1113+
;;;;;;;;:` `;;;;;;;;; ,;;;;;;;;.` .;;;;;;;;
1114+
.;;;;;;, :;;;;;;; .;;;;;;; ;;;;;;;
11101115
;;;;;; ;;;;;;; ;;;;;;, ;;;;;;.
11111116
,;;;;; ;;;;;;.;;;;;;` ;;;;;;
11121117
;;;;;. ;;;;;;;;;;;` ``` ;;;;;`
@@ -1120,25 +1125,25 @@ Accept-Ranges: bytes
11201125
;;;;; .;;;;;;;;;; ;;; ;;;;;,
11211126
;;;;;; `;;;;;;;;;;;; ;;;;;
11221127
`;;;;;, .;;;;;; ;;;;;;; ;;;;;;
1123-
;;;;;;: :;;;;;;. ;;;;;;; ;;;;;;
1124-
;;;;;;;` .;;;;;;;, ;;;;;;;; ;;;;;;;:
1125-
;;;;;;;;;:,:;;;;;;;;;: ;;;;;;;;;;:,;;;;;;;;;;
1126-
`;;;;;;;;;;;;;;;;;;;. ;;;;;;;;;;;;;;;;;;;;
1127-
;;;;;;;;;;;;;;;;; :;;;;;;;;;;;;;;;;:
1128-
,;;;;;;;;;;;;;, ;;;;;;;;;;;;;;
1128+
;;;;;;: :;;;;;;. ;;;;;;; ;;;;;;
1129+
;;;;;;;` .;;;;;;;, ;;;;;;;; ;;;;;;;:
1130+
;;;;;;;;;:,:;;;;;;;;;: ;;;;;;;;;;:,;;;;;;;;;;
1131+
`;;;;;;;;;;;;;;;;;;;. ;;;;;;;;;;;;;;;;;;;;
1132+
;;;;;;;;;;;;;;;;; :;;;;;;;;;;;;;;;;:
1133+
,;;;;;;;;;;;;;, ;;;;;;;;;;;;;;
11291134
.;;;;;;;;;` ,;;;;;;;;:
11301135
11311136
11321137
11331138
1134-
;;; ;;;;;` ;;;;: .;; ;; ,;;;;;, ;;. `;, ;;;;
1135-
;;; ;;:;;; ;;;;;; .;; ;; ,;;;;;: ;;; `;, ;;;:;;
1136-
,;:; ;; ;; ;; ;; .;; ;; ,;, ;;;,`;, ;; ;;
1139+
;;; ;;;;;` ;;;;: .;; ;; ,;;;;;, ;;. `;, ;;;;
1140+
;;; ;;:;;; ;;;;;; .;; ;; ,;;;;;: ;;; `;, ;;;:;;
1141+
,;:; ;; ;; ;; ;; .;; ;; ,;, ;;;,`;, ;; ;;
11371142
;; ;: ;; ;; ;; ;; .;; ;; ,;, ;;;;`;, ;; ;;.
11381143
;: ;; ;;;;;: ;; ;; .;; ;; ,;, ;;`;;;, ;; ;;`
1139-
,;;;;; ;;`;; ;; ;; .;; ;; ,;, ;; ;;;, ;; ;;
1140-
;; ,;, ;; .;; ;;;;;: ;;;;;: ,;;;;;: ;; ;;, ;;;;;;
1141-
;; ;; ;; ;;` ;;;;. `;;;: ,;;;;;, ;; ;;, ;;;;
1144+
,;;;;; ;;`;; ;; ;; .;; ;; ,;, ;; ;;;, ;; ;;
1145+
;; ,;, ;; .;; ;;;;;: ;;;;;: ,;;;;;: ;; ;;, ;;;;;;
1146+
;; ;; ;; ;;` ;;;;. `;;;: ,;;;;;, ;; ;;, ;;;;
11421147
11431148
Disconnecting from server...
11441149
@@ -1152,7 +1157,7 @@ The following is debug terminal output when running example [UdpNTPClient](examp
11521157

11531158
```
11541159
Start UdpNTPClient on NUCLEO_F767ZI, using W5x00 & Ethernet_Generic Library
1155-
EthernetWebServer_STM32 v1.4.0
1160+
EthernetWebServer_STM32 v1.4.1
11561161
[EWS] Board : NUCLEO_F767ZI , setCsPin: 10
11571162
[EWS] Default SPI pinout:
11581163
[EWS] MOSI: 11
@@ -1176,7 +1181,7 @@ The terminal output of **STM32F7 Nucleo-144 NUCLEO_F767ZI with LAN8742A Ethernet
11761181

11771182
```
11781183
Starting SimpleWebSocket on NUCLEO_F767ZI with LAN8742A Ethernet & STM32Ethernet Library
1179-
EthernetWebServer_STM32 v1.4.0
1184+
EthernetWebServer_STM32 v1.4.1
11801185
Using mac index = 10
11811186
Connected! IP address: 192.168.2.139
11821187
starting WebSocket client
@@ -1206,7 +1211,7 @@ The terminal output of **STM32F7 Nucleo-144 NUCLEO_F767ZI with W5x00 & Ethernet_
12061211

12071212
```
12081213
Starting SimpleWebSocket on NUCLEO_F767ZI with W5x00 & Ethernet_Generic Library
1209-
EthernetWebServer_STM32 v1.4.0
1214+
EthernetWebServer_STM32 v1.4.1
12101215
[EWS] =========== USE_Ethernet_Generic ===========
12111216
[EWS] Default SPI pinout:
12121217
[EWS] MOSI: 11
@@ -1246,7 +1251,7 @@ The terminal output of **STM32F7 Nucleo-144 NUCLEO_F767ZI with LAN8742A Ethernet
12461251

12471252
```
12481253
Starting SimpleHTTPExample on NUCLEO_F767ZI with LAN8742A Ethernet & STM32Ethernet Library
1249-
EthernetWebServer_STM32 v1.4.0
1254+
EthernetWebServer_STM32 v1.4.1
12501255
Connected! IP address: 192.168.2.139
12511256
startedRequest ok
12521257
Got status code: 200
@@ -1293,6 +1298,7 @@ Body returned follows:
12931298
,;;;;; ;;`;; ;; ;; .;; ;; ,;, ;; ;;;, ;; ;;
12941299
;; ,;, ;; .;; ;;;;;: ;;;;;: ,;;;;;: ;; ;;, ;;;;;;
12951300
;; ;; ;; ;;` ;;;;. `;;;: ,;;;;;, ;; ;;, ;;;;
1301+
12961302
```
12971303

12981304
---
@@ -1303,7 +1309,7 @@ The terminal output of **STM32F7 Nucleo-144 NUCLEO_F767ZI with LAN8742A Ethernet
13031309

13041310
```
13051311
Start MQTTClient_Auth on NUCLEO_F767ZI with LAN8742A Ethernet & STM32Ethernet Library
1306-
EthernetWebServer_STM32 v1.4.0
1312+
EthernetWebServer_STM32 v1.4.1
13071313
Connected! IP address: 192.168.2.152
13081314
Attempting MQTT connection to broker.emqx.io...connected
13091315
Message Send : MQTT_Pub => Hello from MQTTClient_Auth on NUCLEO_F767ZI with LAN8742A Ethernet & STM32Ethernet Library
@@ -1326,7 +1332,7 @@ The terminal output of **STM32F7 Nucleo-144 NUCLEO_F767ZI with ENC28J60 & Ethern
13261332

13271333
```
13281334
Start MQTTClient_Auth on NUCLEO_F767ZI with ENC28J60 & EthernetENC Library
1329-
EthernetWebServer_STM32 v1.4.0
1335+
EthernetWebServer_STM32 v1.4.1
13301336
[EWS] =========== USE_ETHERNET_ENC ===========
13311337
[EWS] Default SPI pinout:
13321338
[EWS] MOSI: 11
@@ -1365,7 +1371,7 @@ The terminal output of **STM32F7 Nucleo-144 NUCLEO_F767ZI with W5x00 & Ethernet_
13651371

13661372
```
13671373
Start MQTTClient_Auth on NUCLEO_F767ZI with W5x00 & Ethernet_Generic Library
1368-
EthernetWebServer_STM32 v1.4.0
1374+
EthernetWebServer_STM32 v1.4.1
13691375
[EWS] =========== USE_Ethernet_Generic ===========
13701376
[EWS] Default SPI pinout:
13711377
[EWS] MOSI: 11
@@ -1390,7 +1396,7 @@ The terminal output of **STM32F4 BLACK_F407VE with LAN8720 Ethernet and STM32Eth
13901396

13911397
```
13921398
Starting SimpleWebSocket_LAN8720 on BLACK_F407VE with LAN8720 Ethernet & STM32Ethernet Library
1393-
EthernetWebServer_STM32 v1.4.0
1399+
EthernetWebServer_STM32 v1.4.1
13941400
Using mac index = 6
13951401
Connected! IP address: 192.168.2.138
13961402
starting WebSocket client
@@ -1415,20 +1421,24 @@ The terminal output of **BLACK_F407VE using LAN8720 Ethernet and STM32Ethernet L
14151421

14161422
```
14171423
Start WebClient_LAN8720 on BLACK_F407VE, using LAN8720 Ethernet & STM32Ethernet Library
1418-
EthernetWebServer_STM32 v1.4.0
1424+
EthernetWebServer_STM32 v1.4.1
14191425
You're connected to the network, IP = 192.168.2.139
1420-
Starting connection to server...
1421-
Connected to server
1426+
Connecting...
14221427
HTTP/1.1 200 OK
1423-
Server: nginx/1.4.2
1424-
Date: Sun, 11 Apr 2021 04:37:16 GMT
1428+
Date: Wed, 27 Apr 2022 17:12:43 GMT
14251429
Content-Type: text/plain
14261430
Content-Length: 2263
1427-
Last-Modified: Wed, 02 Oct 2013 13:46:47 GMT
14281431
Connection: close
1429-
Vary: Accept-Encoding
1430-
ETag: "524c23c7-8d7"
1431-
Accept-Ranges: bytes
1432+
x-amz-id-2: Y0KDwqmE5CUvFMSLnxWUV4XoqEDCUL1h9GN+vWHRz7vpjDK77h8fqAbuEqBXVEZRm3Ybv7bCZtE=
1433+
x-amz-request-id: EFJSRB21CQFZQDRX
1434+
Last-Modified: Wed, 23 Feb 2022 14:56:42 GMT
1435+
ETag: "667cf48afcc12c38c8c1637947a04224"
1436+
CF-Cache-Status: DYNAMIC
1437+
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=T2F7koaxDm8y3draFWHzKSKtqF3brIseyVbvIpy%2FDp4RGAh7d6Lc%2F7rw%2B96w7hYckhvRgN1l9sMJJuNuQCxG8JZeCIelNLNXDBKH5BJajxjC7kMiQ3PwdUm8jFr%2B0aA%3D"}],"group":"cf-nel","max_age":604800}
1438+
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
1439+
Server: cloudflare
1440+
CF-RAY: 70292f44ceb3a253-YYZ
1441+
alt-svc: h3=":443"; ma=86400, h3-29=":443"; ma=86400
14321442
14331443
14341444
`:;;;,` .:;;:.
@@ -1469,7 +1479,7 @@ Accept-Ranges: bytes
14691479
;: ;; ;;;;;: ;; ;; .;; ;; ,;, ;;`;;;, ;; ;;`
14701480
,;;;;; ;;`;; ;; ;; .;; ;; ,;, ;; ;;;, ;; ;;
14711481
;; ,;, ;; .;; ;;;;;: ;;;;;: ,;;;;;: ;; ;;, ;;;;;;
1472-
;; ;; ;; ;;` ;;;;. `;;;: ,;;;;;, ;; ;;, ;;;;
1482+
;; ;; ;; ;;` ;;;;. `;;;: ,;;;;;, ;; ;;, ;;;;
14731483
14741484
Disconnecting from server...
14751485
```
@@ -1487,7 +1497,7 @@ Following is debug terminal output and screen shot when running example [Advance
14871497

14881498
```
14891499
Start AdvancedWebServer_LAN8720 on BLACK_F407VE, using LAN8720 Ethernet & STM32Ethernet Library
1490-
EthernetWebServer_STM32 v1.4.0
1500+
EthernetWebServer_STM32 v1.4.1
14911501
.[EWS] String Len = 0, extend to 2048
14921502
......... .......... .......... .......... .......... .......... .......... ..........
14931503
```
@@ -1557,6 +1567,7 @@ Submit issues to: [EthernetWebServer_STM32 issues](https://github.com/khoih-prog
15571567
11. Fix authenticate issue and compiler warnings caused by libb64
15581568
12. Use new [**Ethernet_Generic** library](https://github.com/khoih-prog/Ethernet_Generic) as default for W5x00.
15591569
13. Rewrite library and add example [multiFileProject](examples/multiFileProject) to demo for multiple-file project to fix `multiple-definitions` linker error
1570+
14. Change from `arduino.cc` to `arduino.tips` in examples
15601571

15611572

15621573
---

changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
## Table of Contents
1313

1414
* [Changelog](#changelog)
15+
* [Releases v1.4.1](#releases-v141)
1516
* [Releases v1.4.0](#releases-v140)
1617
* [Releases v1.3.4](#releases-v134)
1718
* [Releases v1.3.3](#releases-v133)
@@ -34,6 +35,10 @@
3435

3536
## Changelog
3637

38+
### Releases v1.4.1
39+
40+
1. Change from `arduino.cc` to `arduino.tips` in examples
41+
3742
### Releases v1.4.0
3843

3944
1. Use new [Ethernet_Generic library](https://github.com/khoih-prog/Ethernet_Generic) as default for W5x00.

library.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "EthernetWebServer_STM32",
3-
"version": "1.4.0",
3+
"version": "1.4.1",
44
"keywords": "WebServer, built-in-Ethernet, STM32F, STM32L, STM32H, STM32G, STM32WB, STM32MP1, Ethernet-shield, Nucleo-144, Nucleo-64, Nucleo-32, LAN8742A, LAN8720, ENC28J60, W5x00, W5500, W5100, Ethernet, Ethernet2, Ethernet3, EthernetLarge, EtnernetENC, UIPEthernet, HTTP-Client, WebSocket-Client, server, client, websocket",
55
"description": "Simple Ethernet WebServer, HTTP Client and WebSocket Client library for STM32F/L/H/G/WB/MP1 boards running built-in Ethernet LAN8742A, LAN8720 or Ethernet W5x00, ENC28J60 shields. Ethernet_Generic library is used as default for W5x00",
66
"authors":
@@ -33,7 +33,7 @@
3333
{
3434
"owner": "stm32duino",
3535
"name": "STM32Ethernet",
36-
"version": "^1.2.0",
36+
"version": "^1.3.0",
3737
"platforms": "ststm32"
3838
},
3939
{
@@ -44,7 +44,7 @@
4444
{
4545
"owner": "khoih-prog",
4646
"name": "Ethernet_Generic",
47-
"version": "^2.0.0"
47+
"version": "^2.1.0"
4848
}
4949
],
5050
"frameworks": "arduino",

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=EthernetWebServer_STM32
2-
version=1.4.0
2+
version=1.4.1
33
author=Khoi Hoang
44
license=MIT
55
maintainer=Khoi Hoang <khoih.prog@gmail.com>

platformio/platformio.ini

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -32,21 +32,17 @@ lib_compat_mode = strict
3232
lib_deps =
3333
; PlatformIO 4.x
3434
; STM32duino LwIP@~2.1.2
35-
; STM32duino STM32Ethernet@~1.2.0
35+
; STM32duino STM32Ethernet@~1.3.0
3636
; Functional-Vlpp@~1.0.2
37-
; UIPEthernet@~2.0.9
38-
; Ethernet_Generic>=2.0.0
39-
; Ethernet@~2.0.0
40-
; EthernetLarge@~2.0.0
41-
; Ethernet2@~1.0.4
42-
; Ethernet3@~1.5.5
43-
EthernetENC@~2.0.2
37+
; UIPEthernet@~2.0.11
38+
; Ethernet_Generic>=2.1.0
39+
; EthernetENC@~2.0.2
4440
; PlatformIO 5.x
4541
stm32duino/STM32duino LwIP@~2.1.2
46-
stm32duino/STM32duino STM32Ethernet@~1.2.0
42+
stm32duino/STM32duino STM32Ethernet@~1.3.0
4743
khoih-prog/Functional-Vlpp@~1.0.2
48-
khoih-prog/Ethernet_Generic@~2.0.0
49-
UIPEthernet/UIPEthernet@~2.0.9
44+
khoih-prog/Ethernet_Generic@~2.1.0
45+
uipethernet/UIPEthernet@~2.0.11
5046
; PaulStoffregen/Ethernet@~2.0.0
5147
; PaulStoffregen/EthernetLarge@~2.0.0
5248
; adafruit/Ethernet2@~1.0.4

src/EthernetHttpClient_STM32.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
@file Esp8266WebServer.h
1313
@author Ivan Grokhotkov
1414
15-
Version: 1.4.0
15+
Version: 1.4.1
1616
1717
Version Modified By Date Comments
1818
------- ----------- ---------- -----------
@@ -23,7 +23,8 @@
2323
1.3.2 K Hoang 28/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
2424
1.3.3 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2525
1.3.4 K Hoang 02/03/2022 Fix decoding error bug
26-
1.4.0 K Hoang 04/04/2022 Use Ethernet_Generic library as default for W5x00 Ethernet.
26+
1.4.0 K Hoang 04/04/2022 Use Ethernet_Generic library as default for W5x00 Ethernet
27+
1.4.1 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
2728
*************************************************************************************************************************************/
2829

2930
// Library to simplify HTTP fetching on Arduino

src/EthernetWebServer_STM32-impl.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
@file Esp8266WebServer.h
1313
@author Ivan Grokhotkov
1414
15-
Version: 1.4.0
15+
Version: 1.4.1
1616
1717
Version Modified By Date Comments
1818
------- ----------- ---------- -----------
@@ -23,7 +23,8 @@
2323
1.3.2 K Hoang 28/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
2424
1.3.3 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2525
1.3.4 K Hoang 02/03/2022 Fix decoding error bug
26-
1.4.0 K Hoang 04/04/2022 Use Ethernet_Generic library as default for W5x00 Ethernet.
26+
1.4.0 K Hoang 04/04/2022 Use Ethernet_Generic library as default for W5x00 Ethernet
27+
1.4.1 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
2728
*************************************************************************************************************************************/
2829

2930
#pragma once

0 commit comments

Comments
 (0)