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>2020-03-28 04:19:00 +0300
committerChristian Hammacher <bmasterc@gmail.com>2020-03-28 04:19:00 +0300
commit28bd97b7567219f432c0727dcb8b3ddc87a94eb5 (patch)
tree01c64da5776341b4abe1cc9ee0fa50453419938e /src/GCodes/GCodeBuffer/GCodeBuffer.cpp
parent290b53209255b728a0c2635234d81a8c76bce800 (diff)
SPI and OM changes for DWC and DSF 1.3.0
Diffstat (limited to 'src/GCodes/GCodeBuffer/GCodeBuffer.cpp')
-rw-r--r--src/GCodes/GCodeBuffer/GCodeBuffer.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/GCodes/GCodeBuffer/GCodeBuffer.cpp b/src/GCodes/GCodeBuffer/GCodeBuffer.cpp
index 5a91d42c..9f06f57a 100644
--- a/src/GCodes/GCodeBuffer/GCodeBuffer.cpp
+++ b/src/GCodes/GCodeBuffer/GCodeBuffer.cpp
@@ -107,7 +107,7 @@ void GCodeBuffer::Reset() noexcept
while (PopState(false)) { }
#if HAS_LINUX_INTERFACE
requestedMacroFile.Clear();
- reportMissingMacro = isMacroFromCode = abortFile = abortAllFiles = reportStack = false;
+ reportMissingMacro = isMacroFromCode = abortFile = abortAllFiles = false;
isBinaryBuffer = false;
#endif
Init();
@@ -658,9 +658,6 @@ bool GCodeBuffer::PopState(bool withinSameFile) noexcept
}
delete ms;
-#if HAS_LINUX_INTERFACE
- reportStack = true;
-#endif
return true;
}