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>2021-03-04 22:38:47 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-03-04 22:38:47 +0300
commit44419feb34c968c5e87574099290b6f89bc8e97b (patch)
tree79d1ca39b9ac04c9d23bd932c9c00bffc077e8cd /src/Networking/LwipEthernet
parentce2e74bc10a7ee558bfb2e7dcac3e8352ac253c5 (diff)
Created Platform and PrintMonitor folders within /src
Diffstat (limited to 'src/Networking/LwipEthernet')
-rw-r--r--src/Networking/LwipEthernet/LwipEthernetInterface.cpp16
-rw-r--r--src/Networking/LwipEthernet/LwipEthernetInterface.h6
-rw-r--r--src/Networking/LwipEthernet/LwipSocket.cpp4
3 files changed, 13 insertions, 13 deletions
diff --git a/src/Networking/LwipEthernet/LwipEthernetInterface.cpp b/src/Networking/LwipEthernet/LwipEthernetInterface.cpp
index d00fbb5b..9fa2c1b3 100644
--- a/src/Networking/LwipEthernet/LwipEthernetInterface.cpp
+++ b/src/Networking/LwipEthernet/LwipEthernetInterface.cpp
@@ -9,16 +9,16 @@
#define NO_STATUS_CODES
#include "LwipEthernetInterface.h"
-#include "Networking/NetworkBuffer.h"
+#include <Networking/NetworkBuffer.h>
#include "LwipSocket.h"
-#include "Platform.h"
-#include "RepRap.h"
-#include "Networking/HttpResponder.h"
-#include "Networking/FtpResponder.h"
-#include "Networking/TelnetResponder.h"
-#include "General/IP4String.h"
-#include "Version.h" // version is reported by MDNS
+#include <Platform/Platform.h>
+#include <Platform/RepRap.h>
+#include <Networking/HttpResponder.h>
+#include <Networking/FtpResponder.h>
+#include <Networking/TelnetResponder.h>
+#include <General/IP4String.h>
+#include <Version.h> // version is reported by MDNS
#include "GMAC/ethernet_sam.h"
#if SAME70
diff --git a/src/Networking/LwipEthernet/LwipEthernetInterface.h b/src/Networking/LwipEthernet/LwipEthernetInterface.h
index 5a4ce2a8..d4dc0788 100644
--- a/src/Networking/LwipEthernet/LwipEthernetInterface.h
+++ b/src/Networking/LwipEthernet/LwipEthernetInterface.h
@@ -9,9 +9,9 @@
#define SRC_NETWORKING_LWIPETHERNET_LWIPETHERNETINTERFACE_H_
#include <RepRapFirmware.h>
-#include "Networking/NetworkInterface.h"
-#include "Networking/NetworkDefs.h"
-#include "MessageType.h"
+#include <Networking/NetworkInterface.h>
+#include <Networking/NetworkDefs.h>
+#include <Platform/MessageType.h>
// We have 8 sockets available for Ethernet
const size_t NumHttpSockets = 5; // sockets 0-4 are for HTTP
diff --git a/src/Networking/LwipEthernet/LwipSocket.cpp b/src/Networking/LwipEthernet/LwipSocket.cpp
index 0f2154ac..67623fe8 100644
--- a/src/Networking/LwipEthernet/LwipSocket.cpp
+++ b/src/Networking/LwipEthernet/LwipSocket.cpp
@@ -9,8 +9,8 @@
#define NO_STATUS_CODES
#include "LwipSocket.h"
-#include "Networking/NetworkBuffer.h"
-#include "RepRap.h"
+#include <Networking/NetworkBuffer.h>
+#include <Platform/RepRap.h>
extern Mutex lwipMutex;