-
Notifications
You must be signed in to change notification settings - Fork 132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
error: 'class BearSSL::WiFiClientSecure' has no member named 'verify' #80
Comments
Hi eaglefred, I have run into the same problems in the last couple of days. I have been able to solve it in the following manner:
Then clean and rebuild, it should then build again. This worked for me to get it compling again, but have not tested the code yet. However I expect that it will work now. Best Regards, Robin |
Hi Robin, exit status 1 Without the #include "RemoteDebug" and all its refering code, my source code is compiling, so i have to look for another way to debug it. Fred |
Just to let you know, I'm running in exactly the same problem. |
I downgraded to version 2.1.2 |
I am a new user of this OTA debugging tool. I had same problem with V3.0.5. Downgraded to 2.1.2 and it works fine with Telnet on Windows. Thanks for suggestion. |
Some problem here. Downgrade to 2.1.2. Looks like the repo here will no longer be maintained :( |
If you want to use the new Arduino library, you have to exclude some files from compilation process. In order to do that in platformio you can use the This, combined with the |
Last commit on this repo was 2019. Unfortunately it looks like this project has been abandoned :( I was able to "fix" this issue by downgrading to v2.1.2 as mentioned. This allowed me to compile for a NodeMCU board just fine. Hopefully that will help someone else. |
I confirm, downgrading to v2.1.2 fixed compiler errors (which had me up all night tracing down). If you ask me, a telnet serial debugger should just be a built in feature, blended right with the OTA updates. Just my 2-cents. |
I've started work on a similar tool to RemoteDebug. It's still a work in progress, but if you're interested in testing something similar check out RIX. |
Describe the bug
Error when compiling my source code for ESP8266 with 3.0.5 RemoteDebug
Arduino Information:
Additional context
Here is the compilation error:
/home/fred/Arduino/libraries/RemoteDebug/src/utility/WebSocketsClient.cpp: In member function 'void WebSocketsClient::connectedCb()':
/home/fred/Arduino/libraries/RemoteDebug/src/utility/WebSocketsClient.cpp:704:26: error: 'class BearSSL::WiFiClientSecure' has no member named 'verify'
704 | if(!_client.ssl->verify(_fingerprint.c_str(), _host.c_str())) {
| ^~~~~~
The text was updated successfully, but these errors were encountered: