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

Commit 7c8be7f

Browse files
authored
v1.9.2 to slow SPI clock only when necessary
### Releases v1.9.2 1. Slow SPI clock for old `W5100` shield or `SAMD Zero` 2. Use correct Debug Terminal `Serial` for so-called **SAMD21 Zero** boards from Arduino as well as Adafruit 3. Update `Packages' Patches`
1 parent 256f772 commit 7c8be7f

26 files changed

+55
-263
lines changed

src/EthernetHttpClient_SSL.h

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,19 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.9.1
11+
Version: 1.9.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
1515
1.1.0 K Hoang 14/11/2020 Initial coding for SAMD21/SAMD51, nRF52, SAM DUE to support Ethernet shields using SSL.
1616
Supporting W5x00 using Ethernetx, ENC28J60 using EthernetENC and UIPEthernet libraries
1717
...
18-
1.7.0 K Hoang 19/12/2021 Reduce usage of Arduino String with std::string. Add support to Portenta H7 Ethernet
19-
1.7.1 K Hoang 25/12/2021 Fix bug relating to String
20-
1.7.2 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
21-
1.7.3 K Hoang 11/01/2022 Fix libb64 compile error for ESP8266
22-
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
23-
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
24-
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
25-
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26-
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2718
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2819
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
2920
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
3021
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
3122
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
23+
1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
3224
*****************************************************************************************************************************/
3325

3426
// Library to simplify HTTP fetching on Arduino

src/EthernetWebServer_SSL-impl.h

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,19 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.9.1
11+
Version: 1.9.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
1515
1.1.0 K Hoang 14/11/2020 Initial coding for SAMD21/SAMD51, nRF52, SAM DUE to support Ethernet shields using SSL.
1616
Supporting W5x00 using Ethernetx, ENC28J60 using EthernetENC and UIPEthernet libraries
1717
...
18-
1.7.0 K Hoang 19/12/2021 Reduce usage of Arduino String with std::string. Add support to Portenta H7 Ethernet
19-
1.7.1 K Hoang 25/12/2021 Fix bug relating to String
20-
1.7.2 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
21-
1.7.3 K Hoang 11/01/2022 Fix libb64 compile error for ESP8266
22-
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
23-
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
24-
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
25-
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26-
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2718
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2819
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
2920
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
3021
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
3122
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
23+
1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
3224
*****************************************************************************************************************************/
3325

3426
#pragma once

src/EthernetWebServer_SSL.h

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,41 +8,33 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.9.1
11+
Version: 1.9.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
1515
1.1.0 K Hoang 14/11/2020 Initial coding for SAMD21/SAMD51, nRF52, SAM DUE to support Ethernet shields using SSL.
1616
Supporting W5x00 using Ethernetx, ENC28J60 using EthernetENC and UIPEthernet libraries
1717
...
18-
1.7.0 K Hoang 19/12/2021 Reduce usage of Arduino String with std::string. Add support to Portenta H7 Ethernet
19-
1.7.1 K Hoang 25/12/2021 Fix bug relating to String
20-
1.7.2 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
21-
1.7.3 K Hoang 11/01/2022 Fix libb64 compile error for ESP8266
22-
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
23-
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
24-
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
25-
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26-
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2718
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2819
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
2920
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
3021
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
3122
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
23+
1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
3224
*****************************************************************************************************************************/
3325

3426
#pragma once
3527

3628
#ifndef ETHERNET_WEBSERVER_SSL_H
3729
#define ETHERNET_WEBSERVER_SSL_H
3830

39-
#define ETHERNET_WEBSERVER_SSL_VERSION "EthernetWebServer_SSL v1.9.1"
31+
#define ETHERNET_WEBSERVER_SSL_VERSION "EthernetWebServer_SSL v1.9.2"
4032

4133
#define ETHERNET_WEBSERVER_SSL_VERSION_MAJOR 1
4234
#define ETHERNET_WEBSERVER_SSL_VERSION_MINOR 9
43-
#define ETHERNET_WEBSERVER_SSL_VERSION_PATCH 1
35+
#define ETHERNET_WEBSERVER_SSL_VERSION_PATCH 2
4436

45-
#define ETHERNET_WEBSERVER_SSL_VERSION_INT 1009001
37+
#define ETHERNET_WEBSERVER_SSL_VERSION_INT 1009002
4638

4739
/////////////////////////////////////////////////////////////////////////
4840

src/EthernetWebServer_SSL.hpp

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,19 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.9.1
11+
Version: 1.9.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
1515
1.1.0 K Hoang 14/11/2020 Initial coding for SAMD21/SAMD51, nRF52, SAM DUE to support Ethernet shields using SSL.
1616
Supporting W5x00 using Ethernetx, ENC28J60 using EthernetENC and UIPEthernet libraries
1717
...
18-
1.7.0 K Hoang 19/12/2021 Reduce usage of Arduino String with std::string. Add support to Portenta H7 Ethernet
19-
1.7.1 K Hoang 25/12/2021 Fix bug relating to String
20-
1.7.2 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
21-
1.7.3 K Hoang 11/01/2022 Fix libb64 compile error for ESP8266
22-
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
23-
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
24-
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
25-
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26-
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2718
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2819
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
2920
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
3021
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
3122
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
23+
1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
3224
*****************************************************************************************************************************/
3325

3426
#pragma once

src/Ethernet_HTTPClient/Ethernet_HttpClient.cpp

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,19 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.9.1
11+
Version: 1.9.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
1515
1.1.0 K Hoang 14/11/2020 Initial coding for SAMD21/SAMD51, nRF52, SAM DUE to support Ethernet shields using SSL.
1616
Supporting W5x00 using Ethernetx, ENC28J60 using EthernetENC and UIPEthernet libraries
1717
...
18-
1.7.0 K Hoang 19/12/2021 Reduce usage of Arduino String with std::string. Add support to Portenta H7 Ethernet
19-
1.7.1 K Hoang 25/12/2021 Fix bug relating to String
20-
1.7.2 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
21-
1.7.3 K Hoang 11/01/2022 Fix libb64 compile error for ESP8266
22-
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
23-
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
24-
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
25-
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26-
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2718
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2819
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
2920
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
3021
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
3122
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
23+
1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
3224
*****************************************************************************************************************************/
3325

3426
// Class to simplify HTTP fetching on Arduino

src/Ethernet_HTTPClient/Ethernet_HttpClient.h

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,19 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.9.1
11+
Version: 1.9.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
1515
1.1.0 K Hoang 14/11/2020 Initial coding for SAMD21/SAMD51, nRF52, SAM DUE to support Ethernet shields using SSL.
1616
Supporting W5x00 using Ethernetx, ENC28J60 using EthernetENC and UIPEthernet libraries
1717
...
18-
1.7.0 K Hoang 19/12/2021 Reduce usage of Arduino String with std::string. Add support to Portenta H7 Ethernet
19-
1.7.1 K Hoang 25/12/2021 Fix bug relating to String
20-
1.7.2 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
21-
1.7.3 K Hoang 11/01/2022 Fix libb64 compile error for ESP8266
22-
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
23-
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
24-
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
25-
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26-
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2718
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2819
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
2920
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
3021
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
3122
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
23+
1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
3224
*****************************************************************************************************************************/
3325

3426
// Class to simplify HTTP fetching on Arduino

src/Ethernet_HTTPClient/Ethernet_URLEncoder.cpp

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,19 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.9.1
11+
Version: 1.9.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
1515
1.1.0 K Hoang 14/11/2020 Initial coding for SAMD21/SAMD51, nRF52, SAM DUE to support Ethernet shields using SSL.
1616
Supporting W5x00 using Ethernetx, ENC28J60 using EthernetENC and UIPEthernet libraries
1717
...
18-
1.7.0 K Hoang 19/12/2021 Reduce usage of Arduino String with std::string. Add support to Portenta H7 Ethernet
19-
1.7.1 K Hoang 25/12/2021 Fix bug relating to String
20-
1.7.2 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
21-
1.7.3 K Hoang 11/01/2022 Fix libb64 compile error for ESP8266
22-
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
23-
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
24-
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
25-
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26-
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2718
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2819
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
2920
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
3021
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
3122
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
23+
1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
3224
*****************************************************************************************************************************/
3325

3426
// Library to simplify HTTP fetching on Arduino

src/Ethernet_HTTPClient/Ethernet_URLEncoder.h

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,19 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.9.1
11+
Version: 1.9.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
1515
1.1.0 K Hoang 14/11/2020 Initial coding for SAMD21/SAMD51, nRF52, SAM DUE to support Ethernet shields using SSL.
1616
Supporting W5x00 using Ethernetx, ENC28J60 using EthernetENC and UIPEthernet libraries
1717
...
18-
1.7.0 K Hoang 19/12/2021 Reduce usage of Arduino String with std::string. Add support to Portenta H7 Ethernet
19-
1.7.1 K Hoang 25/12/2021 Fix bug relating to String
20-
1.7.2 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
21-
1.7.3 K Hoang 11/01/2022 Fix libb64 compile error for ESP8266
22-
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
23-
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
24-
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
25-
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26-
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2718
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2819
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
2920
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
3021
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
3122
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
23+
1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
3224
*****************************************************************************************************************************/
3325

3426
// Library to simplify HTTP fetching on Arduino

src/Ethernet_HTTPClient/Ethernet_WebSocketClient.cpp

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,19 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.9.1
11+
Version: 1.9.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
1515
1.1.0 K Hoang 14/11/2020 Initial coding for SAMD21/SAMD51, nRF52, SAM DUE to support Ethernet shields using SSL.
1616
Supporting W5x00 using Ethernetx, ENC28J60 using EthernetENC and UIPEthernet libraries
1717
...
18-
1.7.0 K Hoang 19/12/2021 Reduce usage of Arduino String with std::string. Add support to Portenta H7 Ethernet
19-
1.7.1 K Hoang 25/12/2021 Fix bug relating to String
20-
1.7.2 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
21-
1.7.3 K Hoang 11/01/2022 Fix libb64 compile error for ESP8266
22-
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
23-
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
24-
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
25-
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26-
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2718
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2819
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
2920
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
3021
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
3122
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
23+
1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
3224
*****************************************************************************************************************************/
3325

3426
// (c) Copyright Arduino. 2016

src/Ethernet_HTTPClient/Ethernet_WebSocketClient.h

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,19 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.9.1
11+
Version: 1.9.2
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
1515
1.1.0 K Hoang 14/11/2020 Initial coding for SAMD21/SAMD51, nRF52, SAM DUE to support Ethernet shields using SSL.
1616
Supporting W5x00 using Ethernetx, ENC28J60 using EthernetENC and UIPEthernet libraries
1717
...
18-
1.7.0 K Hoang 19/12/2021 Reduce usage of Arduino String with std::string. Add support to Portenta H7 Ethernet
19-
1.7.1 K Hoang 25/12/2021 Fix bug relating to String
20-
1.7.2 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
21-
1.7.3 K Hoang 11/01/2022 Fix libb64 compile error for ESP8266
22-
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
23-
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
24-
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
25-
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26-
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
2718
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2819
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
2920
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
3021
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
3122
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
23+
1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
3224
*****************************************************************************************************************************/
3325

3426
// (c) Copyright Arduino. 2016

0 commit comments

Comments
 (0)