|
7 | 7 | Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient |
8 | 8 | |
9 | 9 | Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases |
10 | | - Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32 |
| 10 | + Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32 |
11 | 11 | |
12 | | - Version: 1.5.1 |
| 12 | + Version: 1.6.0 |
13 | 13 |
|
14 | 14 | Version Modified By Date Comments |
15 | 15 | ------- ----------- ---------- ----------- |
|
24 | 24 | 1.4.5 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11 |
25 | 25 | 1.5.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default |
26 | 26 | 1.5.1 K Hoang 27/04/2022 Change from `arduino.cc` to `arduino.tips` in examples |
| 27 | + 1.6.0 K Hoang 03/05/2022 Add support to STM32L5 and to custom SPI, such as SPI2, SPI3, SPI_New, etc. |
27 | 28 | ****************************************************************************************************************************/ |
28 | 29 |
|
29 | 30 | #pragma once |
|
55 | 56 |
|
56 | 57 | #endif |
57 | 58 |
|
58 | | -#define ETHERNET_WEBSERVER_SSL_STM32_VERSION "EthernetWebServer_SSL_STM32 v1.5.1" |
| 59 | +#define ETHERNET_WEBSERVER_SSL_STM32_VERSION "EthernetWebServer_SSL_STM32 v1.6.0" |
59 | 60 |
|
60 | 61 | #define ETHERNET_WEBSERVER_SSL_STM32_VERSION_MAJOR 1 |
61 | | -#define ETHERNET_WEBSERVER_SSL_STM32_VERSION_MINOR 5 |
62 | | -#define ETHERNET_WEBSERVER_SSL_STM32_VERSION_PATCH 1 |
| 62 | +#define ETHERNET_WEBSERVER_SSL_STM32_VERSION_MINOR 6 |
| 63 | +#define ETHERNET_WEBSERVER_SSL_STM32_VERSION_PATCH 0 |
63 | 64 |
|
64 | | -#define ETHERNET_WEBSERVER_SSL_STM32_VERSION_INT 1005001 |
| 65 | +#define ETHERNET_WEBSERVER_SSL_STM32_VERSION_INT 1006000 |
65 | 66 |
|
66 | 67 | ///////////////////////////////////////////////////////////////////////// |
67 | 68 |
|
|
79 | 80 | #endif |
80 | 81 | #elif USE_CUSTOM_ETHERNET |
81 | 82 | #if (_ETHERNET_WEBSERVER_LOGLEVEL_ > 2) |
82 | | - #warning Using Custom Ethernet library from EthernetWebServer_STM32. You must include a library or error |
| 83 | + #warning Using Custom Ethernet library from EthernetWebServer_SSL_STM32. You must include a library or error |
83 | 84 | #endif |
84 | 85 | #elif !( USE_ETHERNET_GENERIC || USE_ETHERNET_ESP8266 || USE_ETHERNET_ENC ) |
85 | 86 | #include <Ethernet_Generic.h> |
|
0 commit comments