Skip to content

Commit

Permalink
Fix MMU2 compile error (MarlinFirmware#21065)
Browse files Browse the repository at this point in the history
  • Loading branch information
GMagician authored and vyacheslav-shubin committed Mar 10, 2021
1 parent 2db5ec3 commit 75e7b23
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Marlin/src/feature/mmu/mmu2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -287,9 +287,7 @@ void MMU2::mmu_loop() {
else if (WITHIN(cmd, MMU_CMD_F0, MMU_CMD_F4)) {
// filament type
int filament = cmd - MMU_CMD_F0;
DEBUG_ECHOPAIR("MMU <= F", filament, " ");
DEBUG_ECHO_F(cmd_arg, DEC);
DEBUG_EOL();
DEBUG_ECHOLNPAIR("MMU <= F", filament, " ", cmd_arg);
tx_printf_P(PSTR("F%d %d\n"), filament, cmd_arg);
state = 3; // wait for response
}
Expand Down

0 comments on commit 75e7b23

Please sign in to comment.