You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
should be sufficient. i think #ESP_IDF_VERSION_MAJOR is probably not necessairy, as its not on the git repo, but is in the lib from platform io.
been running the modified code for a bit now, working fine. i don't think it'll effect wifi functionality because the bit status is done in the wifi libs.
as far as the other issue, #48 , he is using a W5100 chip, which goes over SPI afaik, which i think might use different libraries.
Ethernet.h is not used for me.
the LAN8720 im using is built into the board... donno if expressif's Eth.H works for his W5100.
using Eth.H / EthClass.H
which piggy backs a bit off of the wifi events a bit...
this check, which is enabled by default will stop begin from working.
ESPTelnet/src/ESPTelnetBase.cpp
Line 17 in e8bfb78
fixes this problem, alternatively as a work around, turning the check off via bool works too.
telnet.begin(23, false);
it does require making the lib more bulky... so could maybe use this WITHOUT <ETH.h>. only compatible
instead, to avoid having to import Eth.H for wifi only builds.
works fine over eth \w main for me with some small modification.
The text was updated successfully, but these errors were encountered: