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/Endstops
parentce2e74bc10a7ee558bfb2e7dcac3e8352ac253c5 (diff)
Created Platform and PrintMonitor folders within /src
Diffstat (limited to 'src/Endstops')
-rw-r--r--src/Endstops/EndstopsManager.cpp10
-rw-r--r--src/Endstops/LocalZProbe.cpp6
-rw-r--r--src/Endstops/RemoteZProbe.cpp4
-rw-r--r--src/Endstops/StallDetectionEndstop.cpp4
-rw-r--r--src/Endstops/SwitchEndstop.cpp16
-rw-r--r--src/Endstops/ZProbe.cpp12
-rw-r--r--src/Endstops/ZProbeEndstop.cpp6
7 files changed, 29 insertions, 29 deletions
diff --git a/src/Endstops/EndstopsManager.cpp b/src/Endstops/EndstopsManager.cpp
index 8456d41e..f010711d 100644
--- a/src/Endstops/EndstopsManager.cpp
+++ b/src/Endstops/EndstopsManager.cpp
@@ -16,11 +16,11 @@
#include "LocalZProbe.h"
#include "RemoteZProbe.h"
-#include "RepRap.h"
-#include "GCodes/GCodeBuffer/GCodeBuffer.h"
-#include "GCodes/GCodes.h"
-#include "Movement/Move.h"
-#include <OutputMemory.h>
+#include <Platform/RepRap.h>
+#include <GCodes/GCodeBuffer/GCodeBuffer.h>
+#include <GCodes/GCodes.h>
+#include <Movement/Move.h>
+#include <Platform/OutputMemory.h>
#include <Heating/Heat.h>
#include <Heating/Sensors/TemperatureSensor.h>
diff --git a/src/Endstops/LocalZProbe.cpp b/src/Endstops/LocalZProbe.cpp
index adcca05e..98b8a94e 100644
--- a/src/Endstops/LocalZProbe.cpp
+++ b/src/Endstops/LocalZProbe.cpp
@@ -7,9 +7,9 @@
#include "LocalZProbe.h"
-#include "GCodes/GCodeBuffer/GCodeBuffer.h"
-#include "RepRap.h"
-#include "Platform.h"
+#include <GCodes/GCodeBuffer/GCodeBuffer.h>
+#include <Platform/RepRap.h>
+#include <Platform/Platform.h>
#include <AnalogIn.h>
using
diff --git a/src/Endstops/RemoteZProbe.cpp b/src/Endstops/RemoteZProbe.cpp
index 21ecf08e..f53014c5 100644
--- a/src/Endstops/RemoteZProbe.cpp
+++ b/src/Endstops/RemoteZProbe.cpp
@@ -12,8 +12,8 @@
#include <CanMessageBuffer.h>
#include <CAN/CanInterface.h>
#include <CAN/CanMessageGenericConstructor.h>
-#include <RepRap.h>
-#include <Platform.h>
+#include <Platform/RepRap.h>
+#include <Platform/Platform.h>
#include <GCodes/GCodeBuffer/GCodeBuffer.h>
// Members of class RemoteZProbe
diff --git a/src/Endstops/StallDetectionEndstop.cpp b/src/Endstops/StallDetectionEndstop.cpp
index 987c6b48..194aa42b 100644
--- a/src/Endstops/StallDetectionEndstop.cpp
+++ b/src/Endstops/StallDetectionEndstop.cpp
@@ -9,8 +9,8 @@
#if HAS_STALL_DETECT
-#include "Platform.h"
-#include "Movement/Kinematics/Kinematics.h"
+#include <Platform/Platform.h>
+#include <Movement/Kinematics/Kinematics.h>
// Stall detection endstop
StallDetectionEndstop::StallDetectionEndstop(uint8_t p_axis, EndStopPosition pos, bool p_individualMotors) noexcept
diff --git a/src/Endstops/SwitchEndstop.cpp b/src/Endstops/SwitchEndstop.cpp
index 63716235..655c4eb9 100644
--- a/src/Endstops/SwitchEndstop.cpp
+++ b/src/Endstops/SwitchEndstop.cpp
@@ -7,16 +7,16 @@
#include <Endstops/SwitchEndstop.h>
-#include "RepRap.h"
-#include "Platform.h"
-#include "Movement/Kinematics/Kinematics.h"
-#include "GCodes/GCodeBuffer/GCodeBuffer.h"
+#include <Platform/RepRap.h>
+#include <Platform/Platform.h>
+#include <Movement/Kinematics/Kinematics.h>
+#include <GCodes/GCodeBuffer/GCodeBuffer.h>
#if SUPPORT_CAN_EXPANSION
-# include "CanId.h"
-# include "CanMessageBuffer.h"
-# include "CanMessageFormats.h"
-# include "CAN/CanInterface.h"
+# include <CanId.h>
+# include <CanMessageBuffer.h>
+# include <CanMessageFormats.h>
+# include <CAN/CanInterface.h>
#endif
// Switch endstop
diff --git a/src/Endstops/ZProbe.cpp b/src/Endstops/ZProbe.cpp
index e1dfbcb6..012d07f8 100644
--- a/src/Endstops/ZProbe.cpp
+++ b/src/Endstops/ZProbe.cpp
@@ -6,12 +6,12 @@
*/
#include "ZProbe.h"
-#include "RepRap.h"
-#include "Platform.h"
-#include "GCodes/GCodes.h"
-#include "GCodes/GCodeBuffer/GCodeBuffer.h"
-#include "Storage/FileStore.h"
-#include "Heating/Heat.h"
+#include <Platform/RepRap.h>
+#include <Platform/Platform.h>
+#include <GCodes/GCodes.h>
+#include <GCodes/GCodeBuffer/GCodeBuffer.h>
+#include <Storage/FileStore.h>
+#include <Heating/Heat.h>
#if SUPPORT_OBJECT_MODEL
diff --git a/src/Endstops/ZProbeEndstop.cpp b/src/Endstops/ZProbeEndstop.cpp
index bd02d813..816f6e3b 100644
--- a/src/Endstops/ZProbeEndstop.cpp
+++ b/src/Endstops/ZProbeEndstop.cpp
@@ -8,9 +8,9 @@
#include "ZProbeEndstop.h"
#include "ZProbe.h"
-#include "RepRap.h"
-#include "Platform.h"
-#include "Movement/Kinematics/Kinematics.h"
+#include <Platform/RepRap.h>
+#include <Platform/Platform.h>
+#include <Movement/Kinematics/Kinematics.h>
// Z probe endstop
ZProbeEndstop::ZProbeEndstop(uint8_t p_axis, EndStopPosition pos) noexcept : Endstop(p_axis, pos), zProbeNumber(0)