Ver código fonte

Fix MMU2 compile error (#21065)

Giuliano Zaro 3 anos atrás
pai
commit
9e0fc44210
Nenhuma conta vinculada ao e-mail do autor do commit
1 arquivos alterados com 1 adições e 3 exclusões
  1. 1
    3
      Marlin/src/feature/mmu/mmu2.cpp

+ 1
- 3
Marlin/src/feature/mmu/mmu2.cpp Ver arquivo

@@ -287,9 +287,7 @@ void MMU2::mmu_loop() {
287 287
         else if (WITHIN(cmd, MMU_CMD_F0, MMU_CMD_F4)) {
288 288
           // filament type
289 289
           int filament = cmd - MMU_CMD_F0;
290
-          DEBUG_ECHOPAIR("MMU <= F", filament, " ");
291
-          DEBUG_ECHO_F(cmd_arg, DEC);
292
-          DEBUG_EOL();
290
+          DEBUG_ECHOLNPAIR("MMU <= F", filament, " ", cmd_arg);
293 291
           tx_printf_P(PSTR("F%d %d\n"), filament, cmd_arg);
294 292
           state = 3; // wait for response
295 293
         }

Carregando…
Cancelar
Salvar