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-01-04 17:32:40 +0300
committerDavid Crocker <dcrocker@eschertech.com>2020-01-04 17:32:40 +0300
commit8ded9143fa9d07dcddd525683403980c42881f1a (patch)
treee3ee49f1ee85bdf7cd9d4ba01533634603af1e7e /src/Networking/LwipEthernet/LwipEthernetInterface.h
parent06a753856ed5e59aab098384920423d759743ced (diff)
Networking and conditional GCode changes
Removed LWIP_GMAC_TASK definition. We now always use a separate task for the GMAC. Added loop counter constant 'iterations' Fixed some expressoin evaluation bugs
Diffstat (limited to 'src/Networking/LwipEthernet/LwipEthernetInterface.h')
-rw-r--r--src/Networking/LwipEthernet/LwipEthernetInterface.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/Networking/LwipEthernet/LwipEthernetInterface.h b/src/Networking/LwipEthernet/LwipEthernetInterface.h
index 3a4a6f42..d4269cd3 100644
--- a/src/Networking/LwipEthernet/LwipEthernetInterface.h
+++ b/src/Networking/LwipEthernet/LwipEthernetInterface.h
@@ -34,7 +34,6 @@ public:
void Activate() noexcept override;
void Exit() noexcept override;
void Spin() noexcept override;
- void Interrupt() noexcept override;
void Diagnostics(MessageType mtype) noexcept override;
GCodeResult EnableInterface(int mode, const StringRef& ssid, const StringRef& reply) noexcept override; // enable or disable the network
@@ -44,7 +43,6 @@ public:
GCodeResult GetNetworkState(const StringRef& reply) noexcept override;
int EnableState() const noexcept override;
- bool InNetworkStack() const noexcept override;
bool IsWiFiInterface() const noexcept override { return false; }
void UpdateHostname(const char *hostname) noexcept override;