|
8 | 8 | |
9 | 9 | Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL |
10 | 10 | |
11 | | - Version: 1.8.0 |
| 11 | + Version: 1.8.1 |
12 | 12 |
|
13 | 13 | Version Modified By Date Comments |
14 | 14 | ------- ----------- ---------- ----------- |
|
25 | 25 | 1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3` |
26 | 26 | 1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11 |
27 | 27 | 1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32 |
| 28 | + 1.8.1 K Hoang 09/04/2022 Add support to SPI1 for RP2040 using arduino-pico core |
28 | 29 | *****************************************************************************************************************************/ |
29 | 30 |
|
30 | 31 | #pragma once |
|
49 | 50 | #endif |
50 | 51 | #define USE_NEW_WEBSERVER_VERSION false |
51 | 52 |
|
52 | | - #warning Use mbed-portenta architecture for PORTENTA_H7 from EthernetWebServer_SSL |
| 53 | + #if (_ETHERNET_WEBSERVER_LOGLEVEL_ > 2) |
| 54 | + #warning Use mbed-portenta architecture for PORTENTA_H7 from EthernetWebServer_SSL |
| 55 | + #endif |
53 | 56 | #endif |
54 | 57 |
|
55 | 58 | ///////////////////////////////////////////////////////////////////////// |
|
63 | 66 | #undef ETHERNET_USE_SAMD |
64 | 67 | #endif |
65 | 68 | #define ETHERNET_USE_SAMD true |
66 | | - #warning Using SAMD architecture from EthernetWebServer_SSL |
| 69 | + |
| 70 | + #if (_ETHERNET_WEBSERVER_LOGLEVEL_ > 2) |
| 71 | + #warning Using SAMD architecture from EthernetWebServer_SSL |
| 72 | + #endif |
67 | 73 | #endif |
68 | 74 |
|
69 | 75 | ///////////////////////////////////////////////////////////////////////// |
|
75 | 81 | #undef ETHERNET_USE_NRF528XX |
76 | 82 | #endif |
77 | 83 | #define ETHERNET_USE_NRF528XX true |
78 | | - #warning Using nFR52 architecture from EthernetWebServer_SSL |
| 84 | + |
| 85 | + #if (_ETHERNET_WEBSERVER_LOGLEVEL_ > 2) |
| 86 | + #warning Using nFR52 architecture from EthernetWebServer_SSL |
| 87 | + #endif |
79 | 88 | #endif |
80 | 89 |
|
81 | 90 | ///////////////////////////////////////////////////////////////////////// |
|
85 | 94 | #undef ETHERNET_USE_SAM_DUE |
86 | 95 | #endif |
87 | 96 | #define ETHERNET_USE_SAM_DUE true |
88 | | - #warning Using SAM_DUE architecture from EthernetWebServer_SSL |
| 97 | + |
| 98 | + #if (_ETHERNET_WEBSERVER_LOGLEVEL_ > 2) |
| 99 | + #warning Using SAM_DUE architecture from EthernetWebServer_SSL |
| 100 | + #endif |
89 | 101 | #endif |
90 | 102 |
|
91 | 103 | ///////////////////////////////////////////////////////////////////////// |
|
116 | 128 | // Permit redefinition of SENDCONTENT_P_BUFFER_SZ in sketch, default is 4K, minimum is 256 bytes |
117 | 129 | #ifndef SENDCONTENT_P_BUFFER_SZ |
118 | 130 | #define SENDCONTENT_P_BUFFER_SZ 4096 |
119 | | - #warning SENDCONTENT_P_BUFFER_SZ using default 4 Kbytes |
| 131 | + |
| 132 | + #if (_ETHERNET_WEBSERVER_LOGLEVEL_ > 2) |
| 133 | + #warning SENDCONTENT_P_BUFFER_SZ using default 4 Kbytes |
| 134 | + #endif |
120 | 135 | #else |
121 | 136 | #if (SENDCONTENT_P_BUFFER_SZ < 256) |
122 | 137 | #undef SENDCONTENT_P_BUFFER_SZ |
123 | 138 | #define SENDCONTENT_P_BUFFER_SZ 256 |
124 | | - #warning SENDCONTENT_P_BUFFER_SZ reset to min 256 bytes |
| 139 | + |
| 140 | + #if (_ETHERNET_WEBSERVER_LOGLEVEL_ > 2) |
| 141 | + #warning SENDCONTENT_P_BUFFER_SZ reset to min 256 bytes |
| 142 | + #endif |
125 | 143 | #endif |
126 | 144 | #endif |
127 | 145 |
|
|
0 commit comments