|
@@ -71,7 +71,7 @@ void GcodeSuite::M701() {
|
71
|
71
|
// Change toolhead if specified
|
72
|
72
|
uint8_t active_extruder_before_filament_change = active_extruder;
|
73
|
73
|
if (active_extruder != target_extruder)
|
74
|
|
- tool_change(target_extruder, 0, true);
|
|
74
|
+ tool_change(target_extruder, 0, false);
|
75
|
75
|
#endif
|
76
|
76
|
|
77
|
77
|
// Lift Z axis
|
|
@@ -96,7 +96,7 @@ void GcodeSuite::M701() {
|
96
|
96
|
#if EXTRUDERS > 1
|
97
|
97
|
// Restore toolhead if it was changed
|
98
|
98
|
if (active_extruder_before_filament_change != active_extruder)
|
99
|
|
- tool_change(active_extruder_before_filament_change, 0, true);
|
|
99
|
+ tool_change(active_extruder_before_filament_change, 0, false);
|
100
|
100
|
#endif
|
101
|
101
|
|
102
|
102
|
// Show status screen
|
|
@@ -138,7 +138,7 @@ void GcodeSuite::M702() {
|
138
|
138
|
// Change toolhead if specified
|
139
|
139
|
uint8_t active_extruder_before_filament_change = active_extruder;
|
140
|
140
|
if (active_extruder != target_extruder)
|
141
|
|
- tool_change(target_extruder, 0, true);
|
|
141
|
+ tool_change(target_extruder, 0, false);
|
142
|
142
|
#endif
|
143
|
143
|
|
144
|
144
|
// Lift Z axis
|
|
@@ -149,7 +149,7 @@ void GcodeSuite::M702() {
|
149
|
149
|
#if EXTRUDERS > 1 && ENABLED(FILAMENT_UNLOAD_ALL_EXTRUDERS)
|
150
|
150
|
if (!parser.seenval('T')) {
|
151
|
151
|
HOTEND_LOOP() {
|
152
|
|
- if (e != active_extruder) tool_change(e, 0, true);
|
|
152
|
+ if (e != active_extruder) tool_change(e, 0, false);
|
153
|
153
|
unload_filament(-fc_settings[e].unload_length, true, ADVANCED_PAUSE_MODE_UNLOAD_FILAMENT);
|
154
|
154
|
}
|
155
|
155
|
}
|
|
@@ -170,7 +170,7 @@ void GcodeSuite::M702() {
|
170
|
170
|
#if EXTRUDERS > 1
|
171
|
171
|
// Restore toolhead if it was changed
|
172
|
172
|
if (active_extruder_before_filament_change != active_extruder)
|
173
|
|
- tool_change(active_extruder_before_filament_change, 0, true);
|
|
173
|
+ tool_change(active_extruder_before_filament_change, 0, false);
|
174
|
174
|
#endif
|
175
|
175
|
|
176
|
176
|
// Show status screen
|