Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2017-09-13 14:27:49 +0300
committerbubnikv <bubnikv@gmail.com>2017-09-13 14:27:49 +0300
commite2a169b0e50e0f62d4f66508689668d5cab79ec5 (patch)
tree45e05b62b3a79f12a734005fbf1c25483dc6fd50 /xs/src/libslic3r/GCode.cpp
parent83b5b9e660c6026b09a216b04259bfa0b987785d (diff)
Changed the G-code protocol for cleaning up the priming towers
for the multi material prints.
Diffstat (limited to 'xs/src/libslic3r/GCode.cpp')
-rw-r--r--xs/src/libslic3r/GCode.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/xs/src/libslic3r/GCode.cpp b/xs/src/libslic3r/GCode.cpp
index c0b0d59f7..260884942 100644
--- a/xs/src/libslic3r/GCode.cpp
+++ b/xs/src/libslic3r/GCode.cpp
@@ -705,10 +705,11 @@ bool GCode::_do_export(Print &print, FILE *file)
if (bbox_prime.overlap(bbox_print)) {
// Wait for the user to remove the priming extrusions, otherwise they would
// get covered by the print.
- fprintf(file, "M1 Remove priming towers and click button.\nM117 Printing\n");
+ fprintf(file, "M1 Remove priming towers and click button.\n");
} else {
// Just wait for a bit to let the user check, that the priming succeeded.
- fprintf(file, "M117 Verify extruder priming\nM0 S10\nM117 Printing\n");
+ //TODO Add a message explaining what the printer is waiting for. This needs a firmware fix.
+ fprintf(file, "M1 S10\n");
}
} else
write(file, WipeTowerIntegration::prime_single_color_print(print, initial_extruder_id, *this));