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
Currently using void EthernetClass::begin(uint8_t *mac, IPAddress ip, IPAddress dns, IPAddress gateway, IPAddress subnet)
generates a compiler error, as IPAddress from the ESP8266 core doesn't have a _address member: https://github.com/esp8266/Arduino/blob/master/cores/esp8266/IPAddress.h
Currently using
void EthernetClass::begin(uint8_t *mac, IPAddress ip, IPAddress dns, IPAddress gateway, IPAddress subnet)
generates a compiler error, as IPAddress from the ESP8266 core doesn't have a
_address
member:https://github.com/esp8266/Arduino/blob/master/cores/esp8266/IPAddress.h
These lines:
Ethernet/src/Ethernet.cpp
Lines 86 to 94 in dbed40a
Should be:
It isn't necessary to check the version, as raw_address() is available since Arduino 1.0.5:
https://github.com/arduino/Arduino/blob/22997bbfd5c841a60e9a5909868c62cd459c798d/hardware/arduino/cores/arduino/IPAddress.h
The text was updated successfully, but these errors were encountered: