Browse Source

missing enable for M605 for duplication mode

I believe gcode_M605 will not be called when using DUAL_NOZZLE_DUPLICATION_MODE without this change.
pull/1/head
cbusillo 7 years ago
committed by GitHub
parent
commit
3b4116e73b
  1. 2
      Marlin/Marlin_main.cpp

2
Marlin/Marlin_main.cpp

@ -10676,7 +10676,7 @@ void process_next_command() {
break;
#endif // FILAMENT_CHANGE_FEATURE
#if ENABLED(DUAL_X_CARRIAGE)
#if ENABLED(DUAL_X_CARRIAGE) || ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
case 605: // M605: Set Dual X Carriage movement mode
gcode_M605();
break;

Loading…
Cancel
Save