From 44419feb34c968c5e87574099290b6f89bc8e97b Mon Sep 17 00:00:00 2001 From: David Crocker Date: Thu, 4 Mar 2021 19:38:47 +0000 Subject: Created Platform and PrintMonitor folders within /src --- src/Endstops/EndstopsManager.cpp | 10 +++++----- src/Endstops/LocalZProbe.cpp | 6 +++--- src/Endstops/RemoteZProbe.cpp | 4 ++-- src/Endstops/StallDetectionEndstop.cpp | 4 ++-- src/Endstops/SwitchEndstop.cpp | 16 ++++++++-------- src/Endstops/ZProbe.cpp | 12 ++++++------ src/Endstops/ZProbeEndstop.cpp | 6 +++--- 7 files changed, 29 insertions(+), 29 deletions(-) (limited to 'src/Endstops') 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 +#include +#include +#include +#include +#include #include #include 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 +#include +#include #include 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 #include #include -#include -#include +#include +#include #include // 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 +#include // 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 -#include "RepRap.h" -#include "Platform.h" -#include "Movement/Kinematics/Kinematics.h" -#include "GCodes/GCodeBuffer/GCodeBuffer.h" +#include +#include +#include +#include #if SUPPORT_CAN_EXPANSION -# include "CanId.h" -# include "CanMessageBuffer.h" -# include "CanMessageFormats.h" -# include "CAN/CanInterface.h" +# include +# include +# include +# include #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 +#include +#include +#include +#include +#include #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 +#include +#include // Z probe endstop ZProbeEndstop::ZProbeEndstop(uint8_t p_axis, EndStopPosition pos) noexcept : Endstop(p_axis, pos), zProbeNumber(0) -- cgit v1.2.3