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-11-17 16:35:29 +0300
committerDavid Crocker <dcrocker@eschertech.com>2018-11-17 16:35:29 +0300
commit6290dfb0b4166e3a915596b2a23c859d37529da9 (patch)
treef4d74c3019fa056d12a06105ba514504772f411a /src/Storage/MassStorage.cpp
parent86a555acf94e8988c0d743b1781da350ff5a57e4 (diff)
More changes for 2.02RC4
Fixed items 79, 179 and 279 on 12864 display Fixed 12864 display error timeout Changed I2C calls to suit rewritten I2C driver Use an interrupt to track changes to DueX5 endstop input status Idle task is now included in task list Filament consumed in tool change macros and filament loading is no longer included in filament usage count, for better print time estimation :ookahead error check now allows for rounding error to avoid spurious reports
Diffstat (limited to 'src/Storage/MassStorage.cpp')
-rw-r--r--src/Storage/MassStorage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Storage/MassStorage.cpp b/src/Storage/MassStorage.cpp
index a56a15d9..7c9507b9 100644
--- a/src/Storage/MassStorage.cpp
+++ b/src/Storage/MassStorage.cpp
@@ -706,7 +706,7 @@ void MassStorage::Spin()
{
if (fil.closeRequested)
{
- // We cannot do this in ISRs, so do it here
+ // We could not close this file in an ISR, so do it here
fil.Close();
}
}