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>2020-03-08 17:34:33 +0300
committerDavid Crocker <dcrocker@eschertech.com>2020-03-08 17:34:33 +0300
commit8586a96c969594bd31cc9b2275e54b41e179a74b (patch)
tree1c86b648603be7ecba036c8efda7e8b48a66fab0 /src/GCodes/GCodeMachineState.cpp
parentfe81ce8d292a5e9ed45c9a76e8bc9b9c3e75fb2e (diff)
Bug fixes and refactoring
Tightened up JSON path parsing Used NamedEnum for GCodeChannel and Compatibility Added a check for bad channel numbers received from SBC Fixed bugs in M220 Increased max number of MDNS services form 1 to 4 Added noexcept specifiers to functions in DataTransfer class
Diffstat (limited to 'src/GCodes/GCodeMachineState.cpp')
-rw-r--r--src/GCodes/GCodeMachineState.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GCodes/GCodeMachineState.cpp b/src/GCodes/GCodeMachineState.cpp
index d9415e18..0375fc7d 100644
--- a/src/GCodes/GCodeMachineState.cpp
+++ b/src/GCodes/GCodeMachineState.cpp
@@ -22,7 +22,7 @@ GCodeMachineState::GCodeMachineState() noexcept
#endif
errorMessage(nullptr),
lineNumber(0),
- compatibility(Compatibility::reprapFirmware), drivesRelative(false), axesRelative(false),
+ compatibility(Compatibility::RepRapFirmware), drivesRelative(false), axesRelative(false),
#if HAS_LINUX_INTERFACE
isFileFinished(false), fileError(false),
#endif