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>2017-12-09 00:01:56 +0300
committerDavid Crocker <dcrocker@eschertech.com>2017-12-09 00:02:49 +0300
commit6b67f92a5712b470d0369db86314f9111cc6842c (patch)
tree0892515dcfbe2a5e440e835ee9faeff240c08730 /src/Scanner.cpp
parentd0335c60392e372d0f079ea569d126ba2b773eee (diff)
Version 1.20RC1
New features: M109 and M104 commands now set both the active and the standby temperatures of the tool. M109 now only selects a tool if no tool was selected Filament errors are now logged M587 now checks that the password is either empty or is at least 8 characters long M122 now includes the minimum and maximum StallGuard registers for each driver seen since the last M122 command M307 now accepts an F parameter to allow the PWM frequency to be set. Caution: do not use excessively high PWM frequencies, especially with the bed heater, because you may overheat the mosfets. The calculation of PID parameters from the heater model has been changed to provide faster heating and less risk of undershoot The M81 command now accepts an optional S1 parameter, which defers the power down until al thermostatic fans have stopped SD card detection is now working properly (Duet WiFi/Ethernet only) A file that is open on the SD card can no longer be deleted Bug fixes: M109 commands could cause unwanted head movement when no tool change was required If a filament error occurred more than one, the print would be paused each time but a message box would only be displayed the first time If a new request arrived but no responder was available, there was no timeout waiting for a responder (thanks chrishamm) Z probe types 5 and 8 didn't work on Duet 085 M500 didn't save axis lengths found by G1 S3
Diffstat (limited to 'src/Scanner.cpp')
-rw-r--r--src/Scanner.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Scanner.cpp b/src/Scanner.cpp
index 3bcf4076..7f849fbc 100644
--- a/src/Scanner.cpp
+++ b/src/Scanner.cpp
@@ -285,7 +285,7 @@ void Scanner::ProcessCommand()
if (uploadFilename != nullptr)
{
uploadBytesLeft = uploadSize;
- fileBeingUploaded = platform.GetFileStore(SCANS_DIRECTORY, uploadFilename, OpenMode::write);
+ fileBeingUploaded = platform.OpenFile(SCANS_DIRECTORY, uploadFilename, OpenMode::write);
if (fileBeingUploaded != nullptr)
{
SetState(ScannerState::Uploading);