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

Commit e064118

Browse files
authored
v1.9.1 to auto-select SPI(s) SS/CS pins
### Releases v1.9.1 1. Auto-select SPI(s) `SS/CS` pins according to board package if available 2. Update `Packages' Patches`
1 parent e6b51f9 commit e064118

26 files changed

+55
-29
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.9.0
11+
Version: 1.9.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -28,6 +28,7 @@
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
3030
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
31+
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
3132
*****************************************************************************************************************************/
3233

3334
// 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.9.0
11+
Version: 1.9.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -28,6 +28,7 @@
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
3030
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
31+
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
3132
*****************************************************************************************************************************/
3233

3334
#pragma once

src/EthernetWebServer_SSL.h

Lines changed: 5 additions & 4 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.9.0
11+
Version: 1.9.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -28,20 +28,21 @@
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
3030
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
31+
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
3132
*****************************************************************************************************************************/
3233

3334
#pragma once
3435

3536
#ifndef ETHERNET_WEBSERVER_SSL_H
3637
#define ETHERNET_WEBSERVER_SSL_H
3738

38-
#define ETHERNET_WEBSERVER_SSL_VERSION "EthernetWebServer_SSL v1.9.0"
39+
#define ETHERNET_WEBSERVER_SSL_VERSION "EthernetWebServer_SSL v1.9.1"
3940

4041
#define ETHERNET_WEBSERVER_SSL_VERSION_MAJOR 1
4142
#define ETHERNET_WEBSERVER_SSL_VERSION_MINOR 9
42-
#define ETHERNET_WEBSERVER_SSL_VERSION_PATCH 0
43+
#define ETHERNET_WEBSERVER_SSL_VERSION_PATCH 1
4344

44-
#define ETHERNET_WEBSERVER_SSL_VERSION_INT 1009000
45+
#define ETHERNET_WEBSERVER_SSL_VERSION_INT 1009001
4546

4647
/////////////////////////////////////////////////////////////////////////
4748

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.9.0
11+
Version: 1.9.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -28,6 +28,7 @@
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
3030
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
31+
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
3132
*****************************************************************************************************************************/
3233

3334
#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.9.0
11+
Version: 1.9.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -28,6 +28,7 @@
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
3030
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
31+
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
3132
*****************************************************************************************************************************/
3233

3334
// 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.9.0
11+
Version: 1.9.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -28,6 +28,7 @@
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
3030
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
31+
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
3132
*****************************************************************************************************************************/
3233

3334
// 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.9.0
11+
Version: 1.9.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -28,6 +28,7 @@
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
3030
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
31+
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
3132
*****************************************************************************************************************************/
3233

3334
// 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.9.0
11+
Version: 1.9.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -28,6 +28,7 @@
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
3030
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
31+
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
3132
*****************************************************************************************************************************/
3233

3334
// 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.9.0
11+
Version: 1.9.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -28,6 +28,7 @@
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
3030
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
31+
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
3132
*****************************************************************************************************************************/
3233

3334
// (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.9.0
11+
Version: 1.9.1
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -28,6 +28,7 @@
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
3030
1.9.0 K Hoang 05/05/2022 Add support to custom SPI for Teensy, Mbed RP2040, Portenta_H7, etc.
31+
1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
3132
*****************************************************************************************************************************/
3233

3334
// (c) Copyright Arduino. 2016

0 commit comments

Comments
 (0)