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/GCodes/Trigger.cpp
parentce2e74bc10a7ee558bfb2e7dcac3e8352ac253c5 (diff)
Created Platform and PrintMonitor folders within /src
Diffstat (limited to 'src/GCodes/Trigger.cpp')
-rw-r--r--src/GCodes/Trigger.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/GCodes/Trigger.cpp b/src/GCodes/Trigger.cpp
index 7383e7e9..86bd5893 100644
--- a/src/GCodes/Trigger.cpp
+++ b/src/GCodes/Trigger.cpp
@@ -6,9 +6,9 @@
*/
#include "Trigger.h"
-#include "RepRap.h"
+#include <Platform/RepRap.h>
#include "GCodes.h"
-#include "PrintMonitor.h"
+#include <PrintMonitor/PrintMonitor.h>
#include "GCodeBuffer/GCodeBuffer.h"
Trigger::Trigger() noexcept : condition(0)