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

Commit f6c7fdf

Browse files
authored
v1.5.1 to update to arduino.tips
### Releases v1.5.1 1. Change from `arduino.cc` to `arduino.tips` in HTTP examples 2. Add `lib_ldf_mode = chain+` in `platformio.ini`
1 parent 58ec6f5 commit f6c7fdf

File tree

6 files changed

+67
-56
lines changed

6 files changed

+67
-56
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: 48 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -294,10 +294,10 @@ These boards are not supported:
294294
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)
295295
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)
296296
4. For built-in LAN8742A or LAN8720 Ethernet:
297-
- [`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)
297+
- [`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)
298298
- [`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)
299299
5. For W5x00 Ethernet:
300-
- [`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)
300+
- [`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)
301301
6. For ENC28J60 Ethernet:
302302
- [`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**
303303
- [`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)
@@ -1223,7 +1223,7 @@ Following is debug terminal output and screen shot when running example [Advance
12231223

12241224
```
12251225
Start AdvancedWebServer on NUCLEO_F767ZI, using LAN8742A Ethernet & STM32Ethernet Library
1226-
EthernetWebServer_SSL_STM32 v1.5.0
1226+
EthernetWebServer_SSL_STM32 v1.5.1
12271227
HTTP EthernetWebServer is @ IP : 192.168.2.117
12281228
.[EWS] String Len = 0, extend to 2048
12291229
EthernetWebServer::handleClient: New Client
@@ -1348,7 +1348,7 @@ The following is debug terminal output when running example [WebClientRepeating]
13481348

13491349
```
13501350
Start WebClientRepeating on NUCLEO_F767ZI, using ENC28J60 & EthernetENC Library
1351-
EthernetWebServer_SSL_STM32 v1.5.0
1351+
EthernetWebServer_SSL_STM32 v1.5.1
13521352
[EWS] Board : NUCLEO_F767ZI , setCsPin: 10
13531353
[EWS] Default SPI pinout:
13541354
[EWS] MOSI: 11
@@ -1357,27 +1357,31 @@ EthernetWebServer_SSL_STM32 v1.5.0
13571357
[EWS] SS: 10
13581358
[EWS] =========================
13591359
You're connected to the network, IP = 192.168.2.123
1360-
13611360
Connecting...
13621361
HTTP/1.1 200 OK
1363-
Server: nginx/1.4.2
1364-
Date: Wed, 16 Sep 2020 22:17:04 GMT
1362+
Date: Wed, 27 Apr 2022 17:12:43 GMT
13651363
Content-Type: text/plain
13661364
Content-Length: 2263
1367-
Last-Modified: Wed, 02 Oct 2013 13:46:47 GMT
13681365
Connection: close
1369-
Vary: Accept-Encoding
1370-
ETag: "524c23c7-8d7"
1371-
Accept-Ranges: bytes
1366+
x-amz-id-2: Y0KDwqmE5CUvFMSLnxWUV4XoqEDCUL1h9GN+vWHRz7vpjDK77h8fqAbuEqBXVEZRm3Ybv7bCZtE=
1367+
x-amz-request-id: EFJSRB21CQFZQDRX
1368+
Last-Modified: Wed, 23 Feb 2022 14:56:42 GMT
1369+
ETag: "667cf48afcc12c38c8c1637947a04224"
1370+
CF-Cache-Status: DYNAMIC
1371+
Report-To: {"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=T2F7koaxDm8y3draFWHzKSKtqF3brIseyVbvIpy%2FDp4RGAh7d6Lc%2F7rw%2B96w7hYckhvRgN1l9sMJJuNuQCxG8JZeCIelNLNXDBKH5BJajxjC7kMiQ3PwdUm8jFr%2B0aA%3D"}],"group":"cf-nel","max_age":604800}
1372+
NEL: {"success_fraction":0,"report_to":"cf-nel","max_age":604800}
1373+
Server: cloudflare
1374+
CF-RAY: 70292f44ceb3a253-YYZ
1375+
alt-svc: h3=":443"; ma=86400, h3-29=":443"; ma=86400
13721376
13731377
13741378
`:;;;,` .:;;:.
13751379
.;;;;;;;;;;;` :;;;;;;;;;;: TM
1376-
`;;;;;;;;;;;;;;;` :;;;;;;;;;;;;;;;
1377-
:;;;;;;;;;;;;;;;;;; `;;;;;;;;;;;;;;;;;;
1378-
;;;;;;;;;;;;;;;;;;;;; .;;;;;;;;;;;;;;;;;;;;
1379-
;;;;;;;;:` `;;;;;;;;; ,;;;;;;;;.` .;;;;;;;;
1380-
.;;;;;;, :;;;;;;; .;;;;;;; ;;;;;;;
1380+
`;;;;;;;;;;;;;;;` :;;;;;;;;;;;;;;;
1381+
:;;;;;;;;;;;;;;;;;; `;;;;;;;;;;;;;;;;;;
1382+
;;;;;;;;;;;;;;;;;;;;; .;;;;;;;;;;;;;;;;;;;;
1383+
;;;;;;;;:` `;;;;;;;;; ,;;;;;;;;.` .;;;;;;;;
1384+
.;;;;;;, :;;;;;;; .;;;;;;; ;;;;;;;
13811385
;;;;;; ;;;;;;; ;;;;;;, ;;;;;;.
13821386
,;;;;; ;;;;;;.;;;;;;` ;;;;;;
13831387
;;;;;. ;;;;;;;;;;;` ``` ;;;;;`
@@ -1391,28 +1395,25 @@ Accept-Ranges: bytes
13911395
;;;;; .;;;;;;;;;; ;;; ;;;;;,
13921396
;;;;;; `;;;;;;;;;;;; ;;;;;
13931397
`;;;;;, .;;;;;; ;;;;;;; ;;;;;;
1394-
;;;;;;: :;;;;;;. ;;;;;;; ;;;;;;
1395-
;;;;;;;` .;;;;;;;, ;;;;;;;; ;;;;;;;:
1396-
;;;;;;;;;:,:;;;;;;;;;: ;;;;;;;;;;:,;;;;;;;;;;
1397-
`;;;;;;;;;;;;;;;;;;;. ;;;;;;;;;;;;;;;;;;;;
1398-
;;;;;;;;;;;;;;;;; :;;;;;;;;;;;;;;;;:
1399-
,;;;;;;;;;;;;;, ;;;;;;;;;;;;;;
1398+
;;;;;;: :;;;;;;. ;;;;;;; ;;;;;;
1399+
;;;;;;;` .;;;;;;;, ;;;;;;;; ;;;;;;;:
1400+
;;;;;;;;;:,:;;;;;;;;;: ;;;;;;;;;;:,;;;;;;;;;;
1401+
`;;;;;;;;;;;;;;;;;;;. ;;;;;;;;;;;;;;;;;;;;
1402+
;;;;;;;;;;;;;;;;; :;;;;;;;;;;;;;;;;:
1403+
,;;;;;;;;;;;;;, ;;;;;;;;;;;;;;
14001404
.;;;;;;;;;` ,;;;;;;;;:
14011405
14021406
14031407
14041408
1405-
;;; ;;;;;` ;;;;: .;; ;; ,;;;;;, ;;. `;, ;;;;
1406-
;;; ;;:;;; ;;;;;; .;; ;; ,;;;;;: ;;; `;, ;;;:;;
1407-
,;:; ;; ;; ;; ;; .;; ;; ,;, ;;;,`;, ;; ;;
1409+
;;; ;;;;;` ;;;;: .;; ;; ,;;;;;, ;;. `;, ;;;;
1410+
;;; ;;:;;; ;;;;;; .;; ;; ,;;;;;: ;;; `;, ;;;:;;
1411+
,;:; ;; ;; ;; ;; .;; ;; ,;, ;;;,`;, ;; ;;
14081412
;; ;: ;; ;; ;; ;; .;; ;; ,;, ;;;;`;, ;; ;;.
14091413
;: ;; ;;;;;: ;; ;; .;; ;; ,;, ;;`;;;, ;; ;;`
1410-
,;;;;; ;;`;; ;; ;; .;; ;; ,;, ;; ;;;, ;; ;;
1411-
;; ,;, ;; .;; ;;;;;: ;;;;;: ,;;;;;: ;; ;;, ;;;;;;
1412-
;; ;; ;; ;;` ;;;;. `;;;: ,;;;;;, ;; ;;, ;;;;
1413-
1414-
Disconnecting from server...
1415-
1414+
,;;;;; ;;`;; ;; ;; .;; ;; ,;, ;; ;;;, ;; ;;
1415+
;; ,;, ;; .;; ;;;;;: ;;;;;: ,;;;;;: ;; ;;, ;;;;;;
1416+
;; ;; ;; ;;` ;;;;. `;;;: ,;;;;;, ;; ;;, ;;;;
14161417
```
14171418

14181419
---
@@ -1423,7 +1424,7 @@ Disconnecting from server...
14231424

14241425
```
14251426
Start UdpNTPClient on NUCLEO_F767ZI, using W5x00 & Ethernet_Generic Library
1426-
EthernetWebServer_SSL_STM32 v1.5.0
1427+
EthernetWebServer_SSL_STM32 v1.5.1
14271428
[EWS] Board : NUCLEO_F767ZI , setCsPin: 10
14281429
[EWS] Default SPI pinout:
14291430
[EWS] MOSI: 11
@@ -1447,7 +1448,7 @@ The UTC time is 22:20:21
14471448

14481449
```
14491450
Start WebClient_SSL on NUCLEO_F767ZI with LAN8742A Ethernet & STM32Ethernet Library
1450-
EthernetWebServer_SSL_STM32 v1.5.0
1451+
EthernetWebServer_SSL_STM32 v1.5.1
14511452
[EWS] =========================
14521453
[EWS] Default SPI pinout:
14531454
[EWS] MOSI: 11
@@ -1552,7 +1553,7 @@ The terminal output of **NUCLEO_F767ZI with W5x00 & Ethernet_Generic Library** r
15521553

15531554
```
15541555
Start WebClient_SSL on NUCLEO_F767ZI with W5x00 & Ethernet_Generic Library
1555-
EthernetWebServer_SSL_STM32 v1.5.0
1556+
EthernetWebServer_SSL_STM32 v1.5.1
15561557
[EWS] =========== USE_ETHERNET_GENERIC ===========
15571558
[EWS] Default SPI pinout:
15581559
[EWS] MOSI: 11
@@ -1654,7 +1655,7 @@ The terminal output of **NUCLEO_F767ZI with ENC28J60 & EthernetENC Library** run
16541655

16551656
```
16561657
Start WebClientMulti_SSL on NUCLEO_F767ZI with ENC28J60 & EthernetENC Library
1657-
EthernetWebServer_SSL_STM32 v1.5.0
1658+
EthernetWebServer_SSL_STM32 v1.5.1
16581659
[EWS] =========================
16591660
[EWS] Default SPI pinout:
16601661
[EWS] MOSI: 11
@@ -1790,7 +1791,7 @@ The terminal output of **NUCLEO_F767ZI with LAN8742A Ethernet & STM32Ethernet Li
17901791

17911792
```
17921793
Start MQTTClient_SSL_Complex on NUCLEO_F767ZI with LAN8742A Ethernet & STM32Ethernet Library
1793-
EthernetWebServer_SSL_STM32 v1.5.0
1794+
EthernetWebServer_SSL_STM32 v1.5.1
17941795
[EWS] Board : NUCLEO_F767ZI , setCsPin: 10
17951796
[EWS] Default SPI pinout:
17961797
[EWS] MOSI: 11
@@ -1824,7 +1825,7 @@ The terminal output of **NUCLEO_F767ZI with W5x00 & Ethernet_Generic Library** r
18241825

18251826
```
18261827
Start MQTTClient_SSL_Complex on NUCLEO_F767ZI with W5x00 & Ethernet_Generic Library
1827-
EthernetWebServer_SSL_STM32 v1.5.0
1828+
EthernetWebServer_SSL_STM32 v1.5.1
18281829
[EWS] Board : NUCLEO_F767ZI , setCsPin: 10
18291830
[EWS] Default SPI pinout:
18301831
[EWS] MOSI: 11
@@ -1856,7 +1857,7 @@ The terminal output of **NUCLEO_F767ZI with LAN8742A Ethernet & STM32Ethernet Li
18561857

18571858
```
18581859
Start MQTTS_ThingStream on NUCLEO_F767ZI with LAN8742A Ethernet & STM32Ethernet Library
1859-
EthernetWebServer_SSL_STM32 v1.5.0
1860+
EthernetWebServer_SSL_STM32 v1.5.1
18601861
[EWS] Board : NUCLEO_F767ZI , setCsPin: 10
18611862
[EWS] Default SPI pinout:
18621863
[EWS] MOSI: 11
@@ -1890,7 +1891,7 @@ The terminal output of **NUCLEO_F767ZI with ENC28J60 & EthernetENC Library** run
18901891

18911892
```
18921893
Start MQTTS_ThingStream_ThingStream on NUCLEO_F767ZI with ENC28J60 & EthernetENC Library
1893-
EthernetWebServer_SSL_STM32 v1.5.0
1894+
EthernetWebServer_SSL_STM32 v1.5.1
18941895
[EWS] Board : NUCLEO_F767ZI , setCsPin: 10
18951896
[EWS] Default SPI pinout:
18961897
[EWS] MOSI: 11
@@ -1922,7 +1923,7 @@ The terminal output of **NUCLEO_F767ZI with W5x00 & Ethernet_Generic Library** r
19221923

19231924
```
19241925
Start MQTTS_ThingStream_ThingStream on NUCLEO_F767ZI with W5x00 & Ethernet_Generic Library
1925-
EthernetWebServer_SSL_STM32 v1.5.0
1926+
EthernetWebServer_SSL_STM32 v1.5.1
19261927
[EWS] Board : NUCLEO_F767ZI , setCsPin: 10
19271928
[EWS] Default SPI pinout:
19281929
[EWS] MOSI: 11
@@ -1954,7 +1955,7 @@ The terminal output of **BLACK_F407VE with LAN8720 Ethernet and STM32Ethernet Li
19541955

19551956
```
19561957
Start MQTTS_ThingStream_ThingStream on on BLACK_F407VE with LAN8720 Ethernet & STM32Ethernet Library
1957-
EthernetWebServer_SSL_STM32 v1.5.0
1958+
EthernetWebServer_SSL_STM32 v1.5.1
19581959
You're connected to the network, IP = 192.168.2.107
19591960
***************************************
19601961
esp32-sniffer/12345678/ble
@@ -1978,7 +1979,7 @@ The terminal output of **BLACK_F407VE with LAN8720 Ethernet and STM32Ethernet Li
19781979

19791980
```
19801981
Start WebClient_SSL_LAN8720 on BLACK_F407VE with LAN8720 Ethernet & STM32Ethernet Library
1981-
EthernetWebServer_SSL_STM32 v1.5.0
1982+
EthernetWebServer_SSL_STM32 v1.5.1
19821983
Using mac index = 6
19831984
Connected! IP address: 192.168.2.138
19841985
Connecting to : www.arduino.cc, port : 443
@@ -2060,7 +2061,7 @@ The terminal output of **BLACK_F407VE with LAN8720 Ethernet and STM32Ethernet Li
20602061

20612062
```
20622063
Start MQTTClient_SSL_LAN8720 on BLACK_F407VE with LAN8720 Ethernet & STM32Ethernet Library
2063-
EthernetWebServer_SSL_STM32 v1.5.0
2064+
EthernetWebServer_SSL_STM32 v1.5.1
20642065
You're connected to the network, IP = 192.168.2.138
20652066
Attempting MQTT connection to broker.emqx.io...connected
20662067
Published connection message successfully!
@@ -2084,7 +2085,7 @@ The terminal output of **BLACK_F407VE with LAN8720 Ethernet and STM32Ethernet Li
20842085

20852086
```
20862087
Start MQTTClient_SSL_Complex_LAN8720 on BLACK_F407VE with LAN8720 Ethernet & STM32Ethernet Library
2087-
EthernetWebServer_SSL_STM32 v1.5.0
2088+
EthernetWebServer_SSL_STM32 v1.5.1
20882089
You're connected to the network, IP = 192.168.2.142
20892090
Attempting MQTT connection to broker.emqx.io...connected
20902091
Published connection message successfully!
@@ -2163,7 +2164,9 @@ Submit issues to: [EthernetWebServer_SSL_STM32 issues](https://github.com/khoih-
21632164
14. Sync with [SSLClient v1.6.11](https://github.com/OPEnSLab-OSU/SSLClient/releases/tag/v1.6.11)
21642165
15. Use new [**Ethernet_Generic** library](https://github.com/khoih-prog/Ethernet_Generic) as default for W5x00.
21652166
16. Rewrite library and add example [multiFileProject](examples/multiFileProject) to demo for multiple-file project to fix `multiple-definitions` linker error
2166-
2167+
17. Change from `arduino.cc` to `arduino.tips` in examples
2168+
18. Add `lib_ldf_mode = chain+` in `platformio.ini`
2169+
21672170
---
21682171

21692172
### Contributions and Thanks

changelog.md

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

1313
* [Changelog](#changelog)
14+
* [Releases v1.5.1](#releases-v151)
1415
* [Releases v1.5.0](#releases-v150)
1516
* [Releases v1.4.5](#releases-v145)
1617
* [Releases v1.4.4](#releases-v144)
@@ -31,6 +32,11 @@
3132

3233
## Changelog
3334

35+
### Releases v1.5.1
36+
37+
1. Change from `arduino.cc` to `arduino.tips` in HTTP examples
38+
2. Add `lib_ldf_mode = chain+` in `platformio.ini`
39+
3440
### Releases v1.5.0
3541

3642
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_SSL_STM32",
3-
"version": "1.5.0",
3+
"version": "1.5.1",
44
"keywords": "WebServer, built-in Ethernet, Arduino, STM32F, STM32L, STM32H, STM32G, STM32WB, STM32MP1, Ethernet shield, Nucleo-144, Nucleo-64, Nucleo-32, LAN8742A, LAN8720, ENC28J60, W5x00, W5500, W5100, SSL, TLS, HTTP-Client, WebSocket-Client, server, client, websocket",
55
"description": "Simple TLS/SSL 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. The WebServer supports HTTP/HTTPS GET and POST requests, provides argument parsing, handles one client at a time. It now provides HTTP(S) Client and Secured WebSockets Client. It supports Arduino STM32F/L/H/G/WB/MP1 series with 32+ Kbytes of Flash, using built-in LAN8742A Ethernet (Nucleo-144: F429ZI, F767ZI, Discovery: STM32F746G-DISCOVERY), or LAN8720, ENC28J60, W5x00 Ethernet 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
"license": "GPL-3.0",

library.properties

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

platformio/platformio.ini

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,21 +28,23 @@ upload_speed = 921600
2828

2929
; Checks for the compatibility with frameworks and dev/platforms
3030
lib_compat_mode = strict
31+
lib_ldf_mode = chain+
32+
;lib_ldf_mode = deep+
3133

3234
lib_deps =
3335
; PlatformIO 4.x
3436
; STM32duino LwIP@~2.1.2
35-
; STM32duino STM32Ethernet@~1.2.0
37+
; STM32duino STM32Ethernet@~1.3.0
3638
; Functional-Vlpp@~1.0.2
37-
; UIPEthernet@~2.0.9
38-
; Ethernet_Generic>=2.0.0
39+
; UIPEthernet@~2.0.11
40+
; Ethernet_Generic>=2.1.0
3941
; EthernetENC@~2.0.2
4042
; PlatformIO 5.x
4143
stm32duino/STM32duino LwIP@~2.1.2
42-
stm32duino/STM32duino STM32Ethernet@~1.2.0
44+
stm32duino/STM32duino STM32Ethernet@~1.3.0
4345
khoih-prog/Functional-Vlpp@~1.0.2
44-
khoih-prog/Ethernet_Generic@~2.0.0
45-
UIPEthernet/UIPEthernet@~2.0.9
46+
khoih-prog/Ethernet_Generic@~2.1.0
47+
uipethernet/UIPEthernet@~2.0.11
4648
; PaulStoffregen/Ethernet@~2.0.0
4749
; PaulStoffregen/EthernetLarge@~2.0.0
4850
; adafruit/Ethernet2@~1.0.4

0 commit comments

Comments
 (0)