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>2020-02-29 19:09:44 +0300
committerDavid Crocker <dcrocker@eschertech.com>2020-02-29 19:09:44 +0300
commit6e2e7164b031c14bf05869bf24a5a41e466d474a (patch)
tree058a8aa1e92924bc6d4f2a36192159798d2beb14 /src/Networking/LwipEthernet/LwipEthernetInterface.cpp
parent894b670d9a0813cc4c7866645b82f94674018c0e (diff)
Still 3.01-RC3 provisional
Got remote BLTouch working Bug fix: when endstops were already triggered, homing moved could hang Bug fix: external SD card didn't work on Duet Maestro
Diffstat (limited to 'src/Networking/LwipEthernet/LwipEthernetInterface.cpp')
-rw-r--r--src/Networking/LwipEthernet/LwipEthernetInterface.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Networking/LwipEthernet/LwipEthernetInterface.cpp b/src/Networking/LwipEthernet/LwipEthernetInterface.cpp
index 819560ca..662d46a7 100644
--- a/src/Networking/LwipEthernet/LwipEthernetInterface.cpp
+++ b/src/Networking/LwipEthernet/LwipEthernetInterface.cpp
@@ -390,7 +390,7 @@ void LwipEthernetInterface::Spin() noexcept
{
// IP address is all zeros, so use DHCP
state = NetworkState::obtainingIP;
-// debugPrintf("Link established, getting IP address\n");
+// debugPrintf("Link established, getting IP address\n");
IPAddress nullAddress;
ethernet_set_configuration(nullAddress, nullAddress, nullAddress);
dhcp_start(&gs_net_if);
@@ -399,7 +399,7 @@ void LwipEthernetInterface::Spin() noexcept
{
// Using static IP address
state = NetworkState::connected;
-// debugPrintf("Link established, network running\n");
+// debugPrintf("Link established, network running\n");
ethernet_set_configuration(platform.GetIPAddress(), platform.NetMask(), platform.GateWay());
}
}
@@ -417,12 +417,12 @@ void LwipEthernetInterface::Spin() noexcept
{
// Notify the mDNS responder about this
state = NetworkState::connected;
-// debugPrintf("IP address obtained, network running\n");
+// debugPrintf("IP address obtained, network running\n");
}
}
else
{
-// debugPrintf("Lost phy link\n");
+// debugPrintf("Lost phy link\n");
TerminateSockets();
state = NetworkState::establishingLink;
}
@@ -461,7 +461,7 @@ void LwipEthernetInterface::Spin() noexcept
}
else
{
-// debugPrintf("Lost phy link\n");
+// debugPrintf("Lost phy link\n");
TerminateSockets();
state = NetworkState::establishingLink;
}