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
path: root/src/Tools
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2017-08-07 19:00:10 +0300
committerDavid Crocker <dcrocker@eschertech.com>2017-08-07 19:00:10 +0300
commit96d5c22fe3767e932f2644df999f0a4f96ec91f5 (patch)
tree6abaf3c245e9e21a6ec863f15cf16f98a21591c4 /src/Tools
parentc111e1147ea301e35d76bd6a9f523042f129f75a (diff)
Version 1.19RC5
Simplified the tracking of virtual extruder position Fixed issue with volumetric extrusion Fixes issues with resurrection when using absolute or volumetric extrusion Corrected date stamp on resurrect.g file Bed levelling wizard now displays required levelling screw adjustments
Diffstat (limited to 'src/Tools')
-rw-r--r--src/Tools/Tool.cpp5
-rw-r--r--src/Tools/Tool.h2
2 files changed, 2 insertions, 5 deletions
diff --git a/src/Tools/Tool.cpp b/src/Tools/Tool.cpp
index 9b654ec0..b65bc706 100644
--- a/src/Tools/Tool.cpp
+++ b/src/Tools/Tool.cpp
@@ -101,7 +101,6 @@ Tool * Tool::freelist = nullptr;
t->fanMapping = fanMap;
t->heaterFault = false;
t->displayColdExtrudeWarning = false;
- t->virtualExtruderPosition = 0.0;
for (size_t axis = 0; axis < MaxAxes; axis++)
{
@@ -456,8 +455,8 @@ bool Tool::WriteSettings(FileStore *f) const
if (ok && state != ToolState::off)
{
- // Select tool and set virtual extruder position
- buf.printf("T%d P0\nG92 E%.3f\n", myNumber, virtualExtruderPosition);
+ // Select tool
+ buf.printf("T%d P0\n", myNumber);
ok = f->Write(buf.Pointer());
}
diff --git a/src/Tools/Tool.h b/src/Tools/Tool.h
index c4bdd2cd..ed46d0b5 100644
--- a/src/Tools/Tool.h
+++ b/src/Tools/Tool.h
@@ -66,8 +66,6 @@ public:
bool WriteSettings(FileStore *f) const; // write the tool's settings to file
#endif
- float virtualExtruderPosition;
-
friend class RepRap;
protected: