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>2018-03-11 14:16:57 +0300
committerDavid Crocker <dcrocker@eschertech.com>2018-03-11 14:16:57 +0300
commitb1369644379aa9c6a1dd8f84d20210f32ded6dd5 (patch)
tree0d5e376cc33d1344e6d007540127b2746f1803be /src/Storage
parentafd7e327ec71865a2ecf0243265ef6f84387becb (diff)
Version 1.21RC4(11b1)
New features: - On CoreXZ machines we no longer require Z to be homed before bed probing with G30 - M589 now checks that the password is either empty or 8 characters minimum - G10 L2 is supported as an alternative way to set tool offsets - G10 L20 is supported as an alternative way to set workspace coordinates - Heater fault detection is suppressed when heaters are suspended during bed probing - DuetWiFiServer/bin uses a new SDK version, which seems to resolve some issues - On boards with a W5500 Ethernet interface, the Ethernet PHY is now programmed to auto negotiate - Added M564 H0 command to allow axis movement before homing on Cartesian/CoreXY printers - The filament length comment proposed to be generated by the next version of Cura when using more than one filament is supported Bug fixes: - I parameter on M452, M453 and M573 didn't work - If a homing file contained an illegal movement command then homing was not cancelled - Corrected Z probe input pin in RADDS build - Possible fix to Duet 06/085 failure to start when using DHCP
Diffstat (limited to 'src/Storage')
-rw-r--r--src/Storage/FileStore.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Storage/FileStore.cpp b/src/Storage/FileStore.cpp
index 652c78d4..86c24893 100644
--- a/src/Storage/FileStore.cpp
+++ b/src/Storage/FileStore.cpp
@@ -184,7 +184,7 @@ bool FileStore::ForceClose()
writeBuffer = nullptr;
}
- FRESULT fr = f_close(&file);
+ const FRESULT fr = f_close(&file);
inUse = false;
writing = false;
closeRequested = false;