Skip to content

Commit

Permalink
start_end: Always honor start_extruder_probing_temp
Browse files Browse the repository at this point in the history
  • Loading branch information
jschuh committed Dec 7, 2023
1 parent 548ba79 commit c7d192f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion start_end.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,10 @@ gcode:
M104 S{km.start_extruder_probing_temp if km.start_extruder_probing_temp > 0
else (km.start_extruder_preheat_scale * EXTRUDER)|round(0,'ceil')|int}
{% else %}
M104 S{EXTRUDER}
# Honor the extruder probing temp, in case we just want to delay extruder
# heating until after the bed is ready.
M104 S{km.start_extruder_probing_temp if km.start_extruder_probing_temp > 0
else EXTRUDER}
{% endif %}
# home all axes
_KM_PRINT_STATUS ACTION=CHANGE STATUS=homing RESET_STACK=1
Expand Down

0 comments on commit c7d192f

Please sign in to comment.