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-09-26 18:56:37 +0300
committerChristian Hammacher <bmasterc@gmail.com>2020-09-26 18:56:37 +0300
commit6c1cd2de6156cc48b6942a00a49afd2eb4bc27da (patch)
treee9e9a4c967ad7b4911fc7edd0ca0cc1d88ecdff3 /src/GCodes/GCodeMachineState.h
parente9d24ce9ffe2c1f664d070502144eecfbf6c94c2 (diff)
More improvements for SBC mode
RRF now keeps track of the binary GB states per stack level Removed "FinishBinaryMode" work-arounds from a few places Bug fix: When executing config.g the macro mutex is awaited forever in SBC mode
Diffstat (limited to 'src/GCodes/GCodeMachineState.h')
-rw-r--r--src/GCodes/GCodeMachineState.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/GCodes/GCodeMachineState.h b/src/GCodes/GCodeMachineState.h
index 9c95fc4f..2a11e0d0 100644
--- a/src/GCodes/GCodeMachineState.h
+++ b/src/GCodes/GCodeMachineState.h
@@ -185,10 +185,12 @@ public:
uint32_t lineNumber;
Compatibility compatibility;
- uint16_t
+ uint32_t
drivesRelative : 1,
axesRelative : 1,
#if HAS_LINUX_INTERFACE
+ lastCodeFromSbc : 1,
+ isMacroFromCode : 1,
isFileFinished : 1,
fileError: 1,
#endif