Fix SLOW_PWM_HEATERS, issues already patched in 2.0.x
This commit is contained in:
parent
20b57f9d38
commit
44edffa0a9
3 changed files with 5 additions and 6 deletions
|
|
@ -10965,7 +10965,7 @@ void tool_change(const uint8_t tmp_extruder, const float fr_mm_s/*=0.0*/, bool n
|
|||
|
||||
#if ENABLED(PARKING_EXTRUDER) // Dual Parking extruder
|
||||
const float z_diff = hotend_offset[Z_AXIS][active_extruder] - hotend_offset[Z_AXIS][tmp_extruder];
|
||||
float z_raise = 0;
|
||||
float z_raise = PARKING_EXTRUDER_SECURITY_RAISE;
|
||||
if (!no_move) {
|
||||
|
||||
const float parkingposx[] = PARKING_EXTRUDER_PARKING_X,
|
||||
|
|
@ -10988,7 +10988,6 @@ void tool_change(const uint8_t tmp_extruder, const float fr_mm_s/*=0.0*/, bool n
|
|||
SERIAL_ECHOLNPGM("Starting Autopark");
|
||||
if (DEBUGGING(LEVELING)) DEBUG_POS("current position:", current_position);
|
||||
#endif
|
||||
z_raise = PARKING_EXTRUDER_SECURITY_RAISE;
|
||||
current_position[Z_AXIS] += z_raise;
|
||||
#if ENABLED(DEBUG_LEVELING_FEATURE)
|
||||
SERIAL_ECHOLNPGM("(1) Raise Z-Axis ");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue