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

Commit 45a57ba

Browse files
authored
v1.9.0 to add custom SPI, SPI1/SPI2 for W5500
### Releases v1.9.0 1. Add support to SPI1, SPI2 for Teensy using W5x00 with [Ethernet_Generic library](https://github.com/khoih-prog/Ethernet_Generic) 2. Add support to custom SPI for Mbed RP2040, Portenta-H7, etc. using W5x00 with [Ethernet_Generic library](https://github.com/khoih-prog/Ethernet_Generic) 3. Add examples [AdvancedWebServer_Teensy4x_SPI1](examples/AdvancedWebServer_Teensy4x_SPI1) to demo new feature 4. Add examples [AdvancedWebServer_RP2040_SPI1](examples/AdvancedWebServer_RP2040_SPI1) to demo new feature
1 parent 2c4f310 commit 45a57ba

26 files changed

+56
-30
lines changed

src/EthernetHttpClient_SSL.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.8.2
11+
Version: 1.9.0
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -27,6 +27,7 @@
2727
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2828
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
2929
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
30+
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
3031
*****************************************************************************************************************************/
3132

3233
// Library to simplify HTTP fetching on Arduino

src/EthernetWebServer_SSL-impl.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.8.2
11+
Version: 1.9.0
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -27,6 +27,7 @@
2727
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2828
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
2929
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
30+
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
3031
*****************************************************************************************************************************/
3132

3233
#pragma once

src/EthernetWebServer_SSL.h

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.8.2
11+
Version: 1.9.0
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -27,20 +27,21 @@
2727
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2828
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
2929
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
30+
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
3031
*****************************************************************************************************************************/
3132

3233
#pragma once
3334

3435
#ifndef ETHERNET_WEBSERVER_SSL_H
3536
#define ETHERNET_WEBSERVER_SSL_H
3637

37-
#define ETHERNET_WEBSERVER_SSL_VERSION "EthernetWebServer_SSL v1.8.2"
38+
#define ETHERNET_WEBSERVER_SSL_VERSION "EthernetWebServer_SSL v1.9.0"
3839

3940
#define ETHERNET_WEBSERVER_SSL_VERSION_MAJOR 1
40-
#define ETHERNET_WEBSERVER_SSL_VERSION_MINOR 8
41-
#define ETHERNET_WEBSERVER_SSL_VERSION_PATCH 2
41+
#define ETHERNET_WEBSERVER_SSL_VERSION_MINOR 9
42+
#define ETHERNET_WEBSERVER_SSL_VERSION_PATCH 0
4243

43-
#define ETHERNET_WEBSERVER_SSL_VERSION_INT 1008002
44+
#define ETHERNET_WEBSERVER_SSL_VERSION_INT 1009000
4445

4546
/////////////////////////////////////////////////////////////////////////
4647

src/EthernetWebServer_SSL.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.8.2
11+
Version: 1.9.0
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -27,6 +27,7 @@
2727
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2828
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
2929
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
30+
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
3031
*****************************************************************************************************************************/
3132

3233
#pragma once

src/Ethernet_HTTPClient/Ethernet_HttpClient.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.8.2
11+
Version: 1.9.0
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -27,6 +27,7 @@
2727
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2828
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
2929
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
30+
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
3031
*****************************************************************************************************************************/
3132

3233
// Class to simplify HTTP fetching on Arduino

src/Ethernet_HTTPClient/Ethernet_HttpClient.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.8.2
11+
Version: 1.9.0
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -27,6 +27,7 @@
2727
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2828
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
2929
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
30+
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
3031
*****************************************************************************************************************************/
3132

3233
// Class to simplify HTTP fetching on Arduino

src/Ethernet_HTTPClient/Ethernet_URLEncoder.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.8.2
11+
Version: 1.9.0
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -27,6 +27,7 @@
2727
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2828
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
2929
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
30+
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
3031
*****************************************************************************************************************************/
3132

3233
// Library to simplify HTTP fetching on Arduino

src/Ethernet_HTTPClient/Ethernet_URLEncoder.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.8.2
11+
Version: 1.9.0
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -27,6 +27,7 @@
2727
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2828
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
2929
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
30+
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
3031
*****************************************************************************************************************************/
3132

3233
// Library to simplify HTTP fetching on Arduino

src/Ethernet_HTTPClient/Ethernet_WebSocketClient.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.8.2
11+
Version: 1.9.0
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -27,6 +27,7 @@
2727
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2828
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
2929
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
30+
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
3031
*****************************************************************************************************************************/
3132

3233
// (c) Copyright Arduino. 2016

src/Ethernet_HTTPClient/Ethernet_WebSocketClient.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.8.2
11+
Version: 1.9.0
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -27,6 +27,7 @@
2727
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2828
1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core
2929
1.8.2 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples
30+
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
3031
*****************************************************************************************************************************/
3132

3233
// (c) Copyright Arduino. 2016

0 commit comments

Comments
 (0)