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>2019-08-21 16:52:29 +0300
committerDavid Crocker <dcrocker@eschertech.com>2019-08-21 16:52:29 +0300
commit0f5ee95e9f96641349378b1805c411d6ea803561 (patch)
tree4e96c05055982f69781a1c2c73c42c7b031c11c2 /src/GCodes/GCodeMachineState.h
parent58a705ad9d646f4f096a465d22447c18df089910 (diff)
Bug fixes
Fixed problems reading thermistors Fixed problems reading heater temperature when no heater model is set Set a defaullt heater model when the heater is switched on, if it hasn't been set already Print error code in hex in M122 Fixed problem with compatibility setting - we no longer copy it to all input channels after runnig config.g Delay M950 H commands until there are no new sensors waiting to be linked nito the main list Got rid of dummy X endstop on Duet 3 Replaced the default Z probe by a dummy one on Duet 3 Include the last reading in the M308 report Increased SD card retries to 5 and doubled the retry delay each time ma retry fails Unlock SPI between SD card retries, if it was locked
Diffstat (limited to 'src/GCodes/GCodeMachineState.h')
-rw-r--r--src/GCodes/GCodeMachineState.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/GCodes/GCodeMachineState.h b/src/GCodes/GCodeMachineState.h
index dfdbb142..bb208e53 100644
--- a/src/GCodes/GCodeMachineState.h
+++ b/src/GCodes/GCodeMachineState.h
@@ -199,10 +199,10 @@ public:
void CloseFile();
bool UsingMachineCoordinates() const { return g53Active || runningSystemMacro; }
- // Copy values that may have been altered by config.g into this state record
+ // Copy values that may have been altered into this state record
+ // Called after running config.g and after running resurrect.g
void CopyStateFrom(const GCodeMachineState& other)
{
- compatibility = other.compatibility;
drivesRelative = other.drivesRelative;
axesRelative = other.axesRelative;
feedRate = other.feedRate;