Replies: 1 comment
-
Thanks for reporting the issue. Please update the library to v1.5.10. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello!
I have problem with compilation async EthernetNetwork.ino example. I have ESP32 module with W5500 Ethenet module connected by SPI.
Errors hat I get:
In file included from c:\users\klakier\documents\arduino\libraries\firebaseclient\src\core\network\netconfig.h:6,
from c:\users\klakier\documents\arduino\libraries\firebaseclient\src\core\asyncclient\connectionhandler.h:7,
from c:\users\klakier\documents\arduino\libraries\firebaseclient\src\core\asyncclient\asyncdata.h:4,
from c:\users\klakier\documents\arduino\libraries\firebaseclient\src\core\asyncclient\slotmanager.h:8,
from c:\users\klakier\documents\arduino\libraries\firebaseclient\src\core\asyncclient\asyncclient.h:8,
from c:\users\klakier\documents\arduino\libraries\firebaseclient\src\core\firebaseapp.h:7,
from C:\Users\Klakier\Documents\Arduino\libraries\FirebaseClient\src/FirebaseClient.h:32,
from C:\Users\Klakier\Documents\Arduino\libraries\FirebaseClient\examples\App\NetworkInterfaces\Async\Callback\EthernetNetwork\EthernetNetwork.ino:31:
c:\users\klakier\documents\arduino\libraries\firebaseclient\src\core\network\data\networkconfigdata.h:116:9: error: 'Firebase_StaticIP' does not name a type; did you mean 'FirebaseWiFi'?
Firebase_StaticIP static_ip;
^~~~~~~~~~~~~~~~~
FirebaseWiFi
c:\users\klakier\documents\arduino\libraries\firebaseclient\src\core\network\data\networkconfigdata.h:147:32: error: 'Firebase_StaticIP' does not name a type; did you mean 'FirebaseWiFi'?
void setStaticIP(const Firebase_StaticIP &static_ip) { this->static_ip = static_ip; }
^~~~~~~~~~~~~~~~~
FirebaseWiFi
c:\users\klakier\documents\arduino\libraries\firebaseclient\src\core\network\data\networkconfigdata.h: In member function 'void network_config_data::ethernet_data::copy(const network_config_data::ethernet_data&)':
c:\users\klakier\documents\arduino\libraries\firebaseclient\src\core\network\data\networkconfigdata.h:129:19: error: 'struct network_config_data::ethernet_data' has no member named 'static_ip'
this->static_ip = rhs.static_ip;
^~~~~~~~~
c:\users\klakier\documents\arduino\libraries\firebaseclient\src\core\network\data\networkconfigdata.h:129:35: error: 'const struct network_config_data::ethernet_data' has no member named 'static_ip'
this->static_ip = rhs.static_ip;
^~~~~~~~~
c:\users\klakier\documents\arduino\libraries\firebaseclient\src\core\network\data\networkconfigdata.h: In member function 'void network_config_data::ethernet_data::setStaticIP(const int&)':
c:\users\klakier\documents\arduino\libraries\firebaseclient\src\core\network\data\networkconfigdata.h:147:70: error: 'struct network_config_data::ethernet_data' has no member named 'static_ip'
void setStaticIP(const Firebase_StaticIP &static_ip) { this->static_ip = static_ip; }
Versions:
What could be the problem?
Beta Was this translation helpful? Give feedback.
All reactions