Skip to content

Commit

Permalink
Merge pull request MarlinFirmware#4163 from gudnimg/tx-fix
Browse files Browse the repository at this point in the history
Fix issue where Tx gcode doesnt reset custom_message_type
  • Loading branch information
leptun authored Apr 23, 2023
2 parents ae75d9b + 62991c8 commit eb8ac25
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Firmware/mmu2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -401,8 +401,7 @@ bool MMU2::tool_change(char code, uint8_t slot) {

case 'x': {
thermal_setExtrudeMintemp(0); // Allow cold extrusion since Tx only loads to the gears not nozzle
planner_synchronize();
ToolChangeCommon(slot); // the only difference was manage_response(false, false), but probably good enough
tool_change(slot);
thermal_setExtrudeMintemp(EXTRUDE_MINTEMP);
} break;

Expand Down

0 comments on commit eb8ac25

Please sign in to comment.