This repository was archived by the owner on Jan 29, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 26 files changed +45
-114
lines changed Expand file tree Collapse file tree 26 files changed +45
-114
lines changed Original file line number Diff line number Diff line change 88
99 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11- Version: 1.9.3
11+ Version: 1.10.0
1212
1313 Version Modified By Date Comments
1414 ------- ----------- ---------- -----------
2222 1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
2323 1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
2424 1.9.3 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
25+ 1.10.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2526 *****************************************************************************************************************************/
2627
2728// Library to simplify HTTP fetching on Arduino
Original file line number Diff line number Diff line change 88
99 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11- Version: 1.9.3
11+ Version: 1.10.0
1212
1313 Version Modified By Date Comments
1414 ------- ----------- ---------- -----------
2222 1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
2323 1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
2424 1.9.3 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
25+ 1.10.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2526 *****************************************************************************************************************************/
2627
2728#pragma once
Original file line number Diff line number Diff line change 88
99 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11- Version: 1.9.3
11+ Version: 1.10.0
1212
1313 Version Modified By Date Comments
1414 ------- ----------- ---------- -----------
2222 1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
2323 1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
2424 1.9.3 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
25+ 1.10.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2526 *****************************************************************************************************************************/
2627
2728#pragma once
2829
2930#ifndef ETHERNET_WEBSERVER_SSL_H
3031#define ETHERNET_WEBSERVER_SSL_H
3132
32- #define ETHERNET_WEBSERVER_SSL_VERSION "EthernetWebServer_SSL v1.9.3 "
33+ #define ETHERNET_WEBSERVER_SSL_VERSION "EthernetWebServer_SSL v1.10.0 "
3334
3435#define ETHERNET_WEBSERVER_SSL_VERSION_MAJOR 1
35- #define ETHERNET_WEBSERVER_SSL_VERSION_MINOR 9
36- #define ETHERNET_WEBSERVER_SSL_VERSION_PATCH 3
36+ #define ETHERNET_WEBSERVER_SSL_VERSION_MINOR 10
37+ #define ETHERNET_WEBSERVER_SSL_VERSION_PATCH 0
3738
38- #define ETHERNET_WEBSERVER_SSL_VERSION_INT 1009003
39+ #define ETHERNET_WEBSERVER_SSL_VERSION_INT 1010000
3940
4041/////////////////////////////////////////////////////////////////////////
4142
Original file line number Diff line number Diff line change 88
99 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11- Version: 1.9.3
11+ Version: 1.10.0
1212
1313 Version Modified By Date Comments
1414 ------- ----------- ---------- -----------
2222 1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
2323 1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
2424 1.9.3 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
25+ 1.10.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2526 *****************************************************************************************************************************/
2627
2728#pragma once
Original file line number Diff line number Diff line change 88
99 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11- Version: 1.9.3
11+ Version: 1.10.0
1212
1313 Version Modified By Date Comments
1414 ------- ----------- ---------- -----------
2222 1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
2323 1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
2424 1.9.3 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
25+ 1.10.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2526 *****************************************************************************************************************************/
2627
2728// Class to simplify HTTP fetching on Arduino
Original file line number Diff line number Diff line change 88
99 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11- Version: 1.9.3
11+ Version: 1.10.0
1212
1313 Version Modified By Date Comments
1414 ------- ----------- ---------- -----------
2222 1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
2323 1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
2424 1.9.3 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
25+ 1.10.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2526 *****************************************************************************************************************************/
2627
2728// Class to simplify HTTP fetching on Arduino
Original file line number Diff line number Diff line change 88
99 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11- Version: 1.9.3
11+ Version: 1.10.0
1212
1313 Version Modified By Date Comments
1414 ------- ----------- ---------- -----------
2222 1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
2323 1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
2424 1.9.3 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
25+ 1.10.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2526 *****************************************************************************************************************************/
2627
2728// Library to simplify HTTP fetching on Arduino
Original file line number Diff line number Diff line change 88
99 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11- Version: 1.9.3
11+ Version: 1.10.0
1212
1313 Version Modified By Date Comments
1414 ------- ----------- ---------- -----------
2222 1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
2323 1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
2424 1.9.3 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
25+ 1.10.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2526 *****************************************************************************************************************************/
2627
2728// Library to simplify HTTP fetching on Arduino
Original file line number Diff line number Diff line change 88
99 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11- Version: 1.9.3
11+ Version: 1.10.0
1212
1313 Version Modified By Date Comments
1414 ------- ----------- ---------- -----------
2222 1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
2323 1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
2424 1.9.3 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
25+ 1.10.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2526 *****************************************************************************************************************************/
2627
2728// (c) Copyright Arduino. 2016
Original file line number Diff line number Diff line change 88
99 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11- Version: 1.9.3
11+ Version: 1.10.0
1212
1313 Version Modified By Date Comments
1414 ------- ----------- ---------- -----------
2222 1.9.1 K Hoang 25/08/2022 Auto-select SPI SS/CS pin according to board package
2323 1.9.2 K Hoang 07/09/2022 Slow SPI clock for old W5100 shield or SAMD Zero. Improve support for SAMD21
2424 1.9.3 K Hoang 26/10/2022 Add support to Seeed XIAO_NRF52840 and XIAO_NRF52840_SENSE using `mbed` or `nRF52` core
25+ 1.10.0 K Hoang 22/12/2022 Fix compile errors for new ESP32 core v2.0.6
2526 *****************************************************************************************************************************/
2627
2728// (c) Copyright Arduino. 2016
You can’t perform that action at this time.
0 commit comments