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:
authorChristian Hammacher <bmasterc@gmail.com>2021-02-22 19:01:55 +0300
committerChristian Hammacher <bmasterc@gmail.com>2021-02-22 19:01:55 +0300
commit12c8c1a8747f07cbe14600208d216ab75bc6b78c (patch)
treedefaa26b7dbaf678dd73dac462ca672fb88a50d1 /src/GCodes
parent187fa9ba5102eb2ec81ea1bcfd85db7c8b23fb03 (diff)
parent3e142c75d02be39481939830f3cca3b2d8ffe07a (diff)
Merge remote-tracking branch 'origin/3.3-dev' into v3-chrishamm
Diffstat (limited to 'src/GCodes')
-rw-r--r--src/GCodes/GCodes2.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/GCodes/GCodes2.cpp b/src/GCodes/GCodes2.cpp
index 21d30c23..60a81097 100644
--- a/src/GCodes/GCodes2.cpp
+++ b/src/GCodes/GCodes2.cpp
@@ -1268,6 +1268,10 @@ bool GCodes::HandleMcode(GCodeBuffer& gb, const StringRef& reply) THROWS(GCodeEx
}
break;
+ case 73: // Slicer-inserted print time values
+ result = reprap.GetPrintMonitor().ProcessM73(gb, reply);
+ break;
+
case 80: // ATX power on
atxPowerControlled = true;
platform.AtxPowerOn();