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-09-24 20:57:17 +0300
committerDavid Crocker <dcrocker@eschertech.com>2017-09-24 20:57:17 +0300
commit04ee1830581ce7be8f6189e7b3a7f687be790a5e (patch)
tree010e6330f75bfe3e2db8169a78cd9868f39503a0 /src/Tools
parentb9648e0fbfa97923b30035605d7a67761869e74f (diff)
Version 1.20alpha7
Send zero values for heater 0 to PanelDue if no bed heater configured In resurrect.g move up, sidways and down when restoring position Bug fix: missing P parameter in G10 command in resurrect.g
Diffstat (limited to 'src/Tools')
-rw-r--r--src/Tools/Tool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Tools/Tool.cpp b/src/Tools/Tool.cpp
index 230c5356..ed3c318e 100644
--- a/src/Tools/Tool.cpp
+++ b/src/Tools/Tool.cpp
@@ -433,7 +433,7 @@ bool Tool::WriteSettings(FileStore *f) const
bool ok = true;
if (heaterCount != 0)
{
- buf.copy("G10 ");
+ buf.printf("G10 P%d ", myNumber);
char c = 'S';
for (size_t i = 0; i < heaterCount; ++i)
{