2017-09-06 06:28:31 -05:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2017-09-17 17:24:56 -05:00
|
|
|
#include "../../inc/MarlinConfig.h"
|
|
|
|
|
|
|
|
#if ENABLED(DUAL_X_CARRIAGE) || ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
|
|
|
|
|
|
|
|
#include "../gcode.h"
|
|
|
|
#include "../../module/motion.h"
|
|
|
|
#include "../../module/stepper.h"
|
2018-09-02 10:18:59 -05:00
|
|
|
#include "../../module/tool_change.h"
|
|
|
|
#include "../../module/planner.h"
|
2017-09-17 17:24:56 -05:00
|
|
|
|
2017-09-06 06:28:31 -05:00
|
|
|
#if ENABLED(DUAL_X_CARRIAGE)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* M605: Set dual x-carriage movement mode
|
|
|
|
*
|
2018-09-02 10:18:59 -05:00
|
|
|
* M605 : Restore user specified DEFAULT_DUAL_X_CARRIAGE_MODE
|
2017-09-06 06:28:31 -05:00
|
|
|
* M605 S0: Full control mode. The slicer has full control over x-carriage movement
|
|
|
|
* M605 S1: Auto-park mode. The inactive head will auto park/unpark without slicer involvement
|
|
|
|
* M605 S2 [Xnnn] [Rmmm]: Duplication mode. The second extruder will duplicate the first with nnn
|
|
|
|
* units x-offset and an optional differential hotend temperature of
|
|
|
|
* mmm degrees. E.g., with "M605 S2 X100 R2" the second extruder will duplicate
|
|
|
|
* the first with a spacing of 100mm in the x direction and 2 degrees hotter.
|
2018-09-02 10:18:59 -05:00
|
|
|
* M605 S3 : Enable Symmetric Duplication mode. The second extruder will duplicate the first extruder's
|
|
|
|
* movement similar to the M605 S2 mode. However, the second extruder will be producing
|
|
|
|
* a mirror image of the first extruder. The initial x-offset and temperature differential are
|
|
|
|
* set with M605 S2 [Xnnn] [Rmmm] and then followed with a M605 S3 to start the mirrored movement.
|
|
|
|
* M605 W : IDEX What? command.
|
2017-09-06 06:28:31 -05:00
|
|
|
*
|
|
|
|
* Note: the X axis should be homed after changing dual x-carriage mode.
|
|
|
|
*/
|
2017-09-17 17:24:56 -05:00
|
|
|
void GcodeSuite::M605() {
|
2018-05-12 01:38:02 -05:00
|
|
|
planner.synchronize();
|
2018-09-02 10:18:59 -05:00
|
|
|
|
|
|
|
if (parser.seen('S')) {
|
|
|
|
DualXMode previous_mode, requested_mode = (DualXMode)parser.value_byte();
|
|
|
|
previous_mode = dual_x_carriage_mode;
|
|
|
|
dual_x_carriage_mode = (DualXMode)parser.value_byte();
|
|
|
|
|
2017-09-06 06:28:31 -05:00
|
|
|
switch (dual_x_carriage_mode) {
|
|
|
|
case DXC_FULL_CONTROL_MODE:
|
|
|
|
case DXC_AUTO_PARK_MODE:
|
|
|
|
break;
|
|
|
|
case DXC_DUPLICATION_MODE:
|
2018-05-13 01:10:34 -05:00
|
|
|
if (parser.seen('X')) duplicate_extruder_x_offset = MAX(parser.value_linear_units(), X2_MIN_POS - x_home_pos(0));
|
2017-09-06 06:28:31 -05:00
|
|
|
if (parser.seen('R')) duplicate_extruder_temp_offset = parser.value_celsius_diff();
|
2018-09-02 10:18:59 -05:00
|
|
|
if (active_extruder != 0) tool_change(0);
|
2017-09-06 06:28:31 -05:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
dual_x_carriage_mode = DEFAULT_DUAL_X_CARRIAGE_MODE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
active_extruder_parked = false;
|
|
|
|
extruder_duplication_enabled = false;
|
|
|
|
delayed_move_time = 0;
|
2018-09-02 10:18:59 -05:00
|
|
|
} else
|
|
|
|
if (!parser.seen('W')) // if no S or W parameter, the DXC mode gets reset to the user's default
|
|
|
|
dual_x_carriage_mode = DEFAULT_DUAL_X_CARRIAGE_MODE;
|
|
|
|
|
|
|
|
if (parser.seen('W')) {
|
|
|
|
SERIAL_ECHO_START();
|
|
|
|
SERIAL_ECHOPGM("IDEX mode: ");
|
|
|
|
switch (dual_x_carriage_mode) {
|
|
|
|
case DXC_FULL_CONTROL_MODE:
|
|
|
|
SERIAL_ECHOPGM("DXC_FULL_CONTROL_MODE\n");
|
|
|
|
break;
|
|
|
|
case DXC_AUTO_PARK_MODE:
|
|
|
|
SERIAL_ECHOPGM("DXC_AUTO_PARK_MODE\n");
|
|
|
|
break;
|
|
|
|
case DXC_DUPLICATION_MODE:
|
|
|
|
SERIAL_ECHOPGM("DXC_DUPLICATION_MODE\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
SERIAL_ECHOPGM("Active Ext: ");
|
|
|
|
SERIAL_ECHO((int) active_extruder);
|
|
|
|
|
|
|
|
if (active_extruder_parked == false)
|
|
|
|
SERIAL_ECHOPGM(" NOT ");
|
|
|
|
SERIAL_ECHOPGM(" parked.\n");
|
|
|
|
|
|
|
|
SERIAL_ECHOPGM("active_extruder_x_pos: ");
|
|
|
|
SERIAL_ECHO( current_position[X_AXIS]);
|
|
|
|
|
|
|
|
SERIAL_ECHOPGM(" inactive_extruder_x_pos: ");
|
|
|
|
SERIAL_ECHO( inactive_extruder_x_pos);
|
|
|
|
|
|
|
|
SERIAL_ECHOPGM("\n1st extruder x_home_pos(): ");
|
|
|
|
SERIAL_ECHO(x_home_pos(0));
|
|
|
|
SERIAL_ECHOPGM("\n2nd extruder x_home_pos(): ");
|
|
|
|
SERIAL_ECHO(x_home_pos(1));
|
|
|
|
|
|
|
|
SERIAL_ECHOPGM("\nextruder_duplication_enabled: ");
|
|
|
|
SERIAL_ECHO(extruder_duplication_enabled);
|
|
|
|
|
|
|
|
SERIAL_ECHOPGM("\nduplicate_extruder_x_offset: ");
|
|
|
|
SERIAL_ECHO(duplicate_extruder_x_offset);
|
|
|
|
|
|
|
|
SERIAL_ECHOPGM("\nduplicate_extruder_temp_offset: ");
|
|
|
|
SERIAL_ECHO(duplicate_extruder_temp_offset);
|
|
|
|
|
|
|
|
SERIAL_ECHOPGM("\ndelayed_move_time: ");
|
|
|
|
SERIAL_ECHO(delayed_move_time);
|
|
|
|
SERIAL_ECHOPGM("\n");
|
|
|
|
}
|
2017-09-06 06:28:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#elif ENABLED(DUAL_NOZZLE_DUPLICATION_MODE)
|
|
|
|
|
2017-09-17 17:24:56 -05:00
|
|
|
void GcodeSuite::M605() {
|
2018-05-12 01:38:02 -05:00
|
|
|
planner.synchronize();
|
2017-09-06 06:28:31 -05:00
|
|
|
extruder_duplication_enabled = parser.intval('S') == (int)DXC_DUPLICATION_MODE;
|
|
|
|
SERIAL_ECHO_START();
|
|
|
|
SERIAL_ECHOLNPAIR(MSG_DUPLICATION_MODE, extruder_duplication_enabled ? MSG_ON : MSG_OFF);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // DUAL_NOZZLE_DUPLICATION_MODE
|
2017-09-17 17:24:56 -05:00
|
|
|
|
|
|
|
#endif // DUAL_X_CARRIAGE || DUAL_NOZZLE_DUPLICATION_MODE
|