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
path: root/src/CAN
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/CAN
parentce2e74bc10a7ee558bfb2e7dcac3e8352ac253c5 (diff)
Created Platform and PrintMonitor folders within /src
Diffstat (limited to 'src/CAN')
-rw-r--r--src/CAN/CanInterface.cpp2
-rw-r--r--src/CAN/CanInterface.h4
-rw-r--r--src/CAN/CommandProcessor.cpp12
-rw-r--r--src/CAN/ExpansionManager.cpp4
4 files changed, 11 insertions, 11 deletions
diff --git a/src/CAN/CanInterface.cpp b/src/CAN/CanInterface.cpp
index 87e84b35..3182e457 100644
--- a/src/CAN/CanInterface.cpp
+++ b/src/CAN/CanInterface.cpp
@@ -17,7 +17,7 @@
#include <Movement/DriveMovement.h>
#include <Movement/StepTimer.h>
#include <RTOSIface/RTOSIface.h>
-#include <TaskPriorities.h>
+#include <Platform/TaskPriorities.h>
#include <GCodes/GCodeException.h>
#include <GCodes/GCodeBuffer/GCodeBuffer.h>
diff --git a/src/CAN/CanInterface.h b/src/CAN/CanInterface.h
index 68dd1993..46101b5c 100644
--- a/src/CAN/CanInterface.h
+++ b/src/CAN/CanInterface.h
@@ -12,8 +12,8 @@
#if SUPPORT_CAN_EXPANSION
-#include "GCodes/GCodeResult.h"
-#include "MessageType.h"
+#include <GCodes/GCodeResult.h>
+#include <Platform/MessageType.h>
#include <CanId.h>
#include <CanMessageFormats.h>
diff --git a/src/CAN/CommandProcessor.cpp b/src/CAN/CommandProcessor.cpp
index d133dfe7..b1050448 100644
--- a/src/CAN/CommandProcessor.cpp
+++ b/src/CAN/CommandProcessor.cpp
@@ -11,9 +11,9 @@
#include "CanInterface.h"
#include <CanMessageBuffer.h>
-#include "RepRap.h"
-#include "Platform.h"
-#include "Heating/Heat.h"
+#include <Platform/RepRap.h>
+#include <Platform/Platform.h>
+#include <Heating/Heat.h>
#include "ExpansionManager.h"
#ifndef DUET3_ATE
@@ -22,13 +22,13 @@
# include <Version.h>
# if SUPPORT_TMC2660
-# include "Movement/StepperDrivers/TMC2660.h"
+# include <Movement/StepperDrivers/TMC2660.h>
# endif
# if SUPPORT_TMC22xx
-# include "Movement/StepperDrivers/TMC22xx.h"
+# include <Movement/StepperDrivers/TMC22xx.h>
# endif
# if SUPPORT_TMC51xx
-# include "Movement/StepperDrivers/TMC51xx.h"
+# include <Movement/StepperDrivers/TMC51xx.h>
# endif
#endif
diff --git a/src/CAN/ExpansionManager.cpp b/src/CAN/ExpansionManager.cpp
index 5c5931e4..e4daa1b4 100644
--- a/src/CAN/ExpansionManager.cpp
+++ b/src/CAN/ExpansionManager.cpp
@@ -10,8 +10,8 @@
#if SUPPORT_CAN_EXPANSION
#include <CAN/CanInterface.h>
-#include <RepRap.h>
-#include <Platform.h>
+#include <Platform/RepRap.h>
+#include <Platform/Platform.h>
#include <GCodes/GCodeBuffer/GCodeBuffer.h>
ExpansionBoardData::ExpansionBoardData() noexcept : typeName(nullptr), state(BoardState::unknown), numDrivers(0)