We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0c75ac commit 7735f37Copy full SHA for 7735f37
libraries/ESP8266WiFi/src/WiFiClientSecureBearSSL.cpp
@@ -610,6 +610,13 @@ int WiFiClientSecureCtx::_run_until(unsigned target, bool blocking) {
610
}
611
612
bool WiFiClientSecureCtx::_wait_for_handshake() {
613
+
614
+#if defined(DEBUG_ESP_PORT)
615
+ if constexpr (F_CPU != 160000000L) {
616
+ DEBUG_ESP_PORT.printf_P((PGM_P)PSTR("BSSL: Please enable 160MHz build\n"));
617
+ }
618
+#endif
619
620
_set_handshake_done(false); // refreshes _timeout
621
while (!_handshake_done && _clientConnected()) {
622
int ret = _run_until(BR_SSL_SENDAPP);
0 commit comments