Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2022-10-06 11:00:41 +0300
committerDavid Crocker <dcrocker@eschertech.com>2022-10-06 11:00:41 +0300
commit3581498e63d35aa7b828a67617d8ff063f60181a (patch)
treedfdcbb0bfc8c8e25d3d4cc9420c0cee8c805b3a8
parentf34a981c6695ef77d4032311c97feedeee9eb528 (diff)
parentc1d37d7e846dd8eb7a6173590b0eb4fb94470bef (diff)
Merge branch '3.5-dev' of https://github.com/Duet3D/RepRapFirmware.git into 3.5-dev
-rw-r--r--src/Networking/Network.cpp24
1 files changed, 18 insertions, 6 deletions
diff --git a/src/Networking/Network.cpp b/src/Networking/Network.cpp
index 516f91d9..6105b0fb 100644
--- a/src/Networking/Network.cpp
+++ b/src/Networking/Network.cpp
@@ -97,6 +97,9 @@ Network::Network(Platform& p) noexcept : platform(p)
# else
# error Unknown board
# endif
+# if defined(DUET3_MB6HC)
+ interfaces[1] = nullptr; // no WiFi interface yet
+# endif
#endif // HAS_NETWORKING
}
@@ -350,7 +353,7 @@ WiFiInterface *Network::FindWiFiInterface() const noexcept
#if HAS_WIFI_NETWORKING
for (NetworkInterface *iface : interfaces)
{
- if (iface->IsWiFiInterface())
+ if (iface != nullptr && iface->IsWiFiInterface())
{
return static_cast<WiFiInterface *>(iface);
}
@@ -533,7 +536,10 @@ void Network::Spin() noexcept
// Keep the network modules running
for (NetworkInterface *iface : interfaces)
{
- iface->Spin();
+ if (iface != nullptr)
+ {
+ iface->Spin();
+ }
}
#if HAS_RESPONDERS
@@ -603,7 +609,10 @@ void Network::Diagnostics(MessageType mtype) noexcept
for (NetworkInterface *iface : interfaces)
{
- iface->Diagnostics(mtype);
+ if (iface != nullptr)
+ {
+ iface->Diagnostics(mtype);
+ }
}
#endif
@@ -628,7 +637,7 @@ void Network::SetEthernetIPAddress(IPAddress p_ipAddress, IPAddress p_netmask, I
#if HAS_NETWORKING
for (NetworkInterface *iface : interfaces)
{
- if (!iface->IsWiFiInterface())
+ if (iface != nullptr && !iface->IsWiFiInterface())
{
iface->SetIPAddress(p_ipAddress, p_netmask, p_gateway);
}
@@ -699,9 +708,12 @@ void Network::SetHostname(const char *name) noexcept
strcpy(hostname, DEFAULT_HOSTNAME);
}
- for (unsigned int i = 0; i < GetNumNetworkInterfaces(); ++i)
+ for (NetworkInterface *iface : interfaces)
{
- interfaces[i]->UpdateHostname(hostname);
+ if (iface != nullptr)
+ {
+ iface->UpdateHostname(hostname);
+ }
}
#endif
}