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:
-rw-r--r--src/Accelerometers/Accelerometers.cpp1
-rw-r--r--src/CAN/CanInterface.cpp1
-rw-r--r--src/CAN/CanMessageGenericConstructor.h1
-rw-r--r--src/Fans/RemoteFan.cpp3
-rw-r--r--src/GPIO/GpOutPort.cpp1
-rw-r--r--src/Heating/Heat.cpp1
-rw-r--r--src/Heating/RemoteHeater.cpp1
-rw-r--r--src/Heating/Sensors/RemoteSensor.cpp3
-rw-r--r--src/Platform/Platform.cpp1
9 files changed, 11 insertions, 2 deletions
diff --git a/src/Accelerometers/Accelerometers.cpp b/src/Accelerometers/Accelerometers.cpp
index 5bf2d2cc..d6e4784d 100644
--- a/src/Accelerometers/Accelerometers.cpp
+++ b/src/Accelerometers/Accelerometers.cpp
@@ -22,6 +22,7 @@
# include <CAN/CanInterface.h>
# include <CAN/ExpansionManager.h>
# include <CAN/CanMessageGenericConstructor.h>
+# include <CanMessageGenericTables.h>
#endif
#ifdef DUET3_ATE
diff --git a/src/CAN/CanInterface.cpp b/src/CAN/CanInterface.cpp
index eabdde3b..247cfe9b 100644
--- a/src/CAN/CanInterface.cpp
+++ b/src/CAN/CanInterface.cpp
@@ -13,6 +13,7 @@
#include "CommandProcessor.h"
#include "CanMessageGenericConstructor.h"
#include <CanMessageBuffer.h>
+#include <CanMessageGenericTables.h>
#include <Movement/DDA.h>
#include <Movement/DriveMovement.h>
#include <Movement/StepTimer.h>
diff --git a/src/CAN/CanMessageGenericConstructor.h b/src/CAN/CanMessageGenericConstructor.h
index 7c621222..d6fda9f3 100644
--- a/src/CAN/CanMessageGenericConstructor.h
+++ b/src/CAN/CanMessageGenericConstructor.h
@@ -14,6 +14,7 @@
#include <CanMessageFormats.h>
#include <GCodes/GCodeException.h>
+#include <CanMessageGenericTableFormat.h>
class GCodeBuffer;
diff --git a/src/Fans/RemoteFan.cpp b/src/Fans/RemoteFan.cpp
index 957cf649..07cbce74 100644
--- a/src/Fans/RemoteFan.cpp
+++ b/src/Fans/RemoteFan.cpp
@@ -9,7 +9,8 @@
#if SUPPORT_CAN_EXPANSION
-#include "CanMessageBuffer.h"
+#include <CanMessageBuffer.h>
+#include <CanMessageGenericTables.h>
#include "CAN/CanInterface.h"
#include "CAN/CanMessageGenericConstructor.h"
diff --git a/src/GPIO/GpOutPort.cpp b/src/GPIO/GpOutPort.cpp
index f76daa54..d15f9267 100644
--- a/src/GPIO/GpOutPort.cpp
+++ b/src/GPIO/GpOutPort.cpp
@@ -13,6 +13,7 @@
#if SUPPORT_CAN_EXPANSION
# include <CAN/CanInterface.h>
# include <CAN/CanMessageGenericConstructor.h>
+# include <CanMessageGenericTables.h>
#endif
#if SUPPORT_REMOTE_COMMANDS
diff --git a/src/Heating/Heat.cpp b/src/Heating/Heat.cpp
index 6b9e676d..65300d5c 100644
--- a/src/Heating/Heat.cpp
+++ b/src/Heating/Heat.cpp
@@ -43,6 +43,7 @@ Licence: GPL
#if SUPPORT_REMOTE_COMMANDS
# include <CanMessageGenericParser.h>
+# include <CanMessageGenericTables.h>
#endif
#ifdef DUET3_ATE
diff --git a/src/Heating/RemoteHeater.cpp b/src/Heating/RemoteHeater.cpp
index 568c9f7a..b835f121 100644
--- a/src/Heating/RemoteHeater.cpp
+++ b/src/Heating/RemoteHeater.cpp
@@ -16,6 +16,7 @@
#include <CAN/CanInterface.h>
#include <CanMessageFormats.h>
#include <CanMessageBuffer.h>
+#include <CanMessageGenericTables.h>
// Static variables used only during tuning
uint32_t RemoteHeater::timeSetHeating;
diff --git a/src/Heating/Sensors/RemoteSensor.cpp b/src/Heating/Sensors/RemoteSensor.cpp
index 6a08a224..e0f7e0c9 100644
--- a/src/Heating/Sensors/RemoteSensor.cpp
+++ b/src/Heating/Sensors/RemoteSensor.cpp
@@ -10,7 +10,8 @@
#if SUPPORT_CAN_EXPANSION
#include "CAN/CanMessageGenericConstructor.h"
-#include "CanMessageBuffer.h"
+#include <CanMessageBuffer.h>
+#include <CanMessageGenericTables.h>
#include <General/Portability.h>
constexpr uint32_t RemoteTemperatureTimeoutMillis = 1000;
diff --git a/src/Platform/Platform.cpp b/src/Platform/Platform.cpp
index a7fb265b..ed705f14 100644
--- a/src/Platform/Platform.cpp
+++ b/src/Platform/Platform.cpp
@@ -104,6 +104,7 @@ using AnalogIn::AdcBits; // for compatibility with CoreNG, which doesn't have
#if SUPPORT_CAN_EXPANSION
# include "CAN/CanMessageGenericConstructor.h"
# include "CAN/CanInterface.h"
+# include <CanMessageGenericTables.h>
#endif
#if SUPPORT_REMOTE_COMMANDS