2017-09-06 13:28:31 +02:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2019-02-12 22:06:53 +01:00
|
|
|
* Copyright (C) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2017-09-06 13:28:31 +02:00
|
|
|
*
|
|
|
|
* 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-18 08:05:44 +02:00
|
|
|
#include "../gcode.h"
|
2017-09-06 13:28:31 +02:00
|
|
|
#include "../../module/tool_change.h"
|
|
|
|
|
2018-11-15 21:06:39 +01:00
|
|
|
#if ENABLED(DEBUG_LEVELING_FEATURE) || EXTRUDERS > 1
|
2017-09-18 08:05:44 +02:00
|
|
|
#include "../../module/motion.h"
|
|
|
|
#endif
|
|
|
|
|
2019-02-01 02:10:52 +01:00
|
|
|
#if ENABLED(PRUSA_MMU2)
|
|
|
|
#include "../../feature/prusa_MMU2/mmu2.h"
|
|
|
|
#endif
|
|
|
|
|
2017-09-06 13:28:31 +02:00
|
|
|
/**
|
2019-02-01 02:10:52 +01:00
|
|
|
* T0-T<n>: Switch tool, usually switching extruders
|
2017-09-06 13:28:31 +02:00
|
|
|
*
|
|
|
|
* F[units/min] Set the movement feedrate
|
|
|
|
* S1 Don't move the tool in XY after change
|
2019-02-01 02:10:52 +01:00
|
|
|
*
|
|
|
|
* For PRUSA_MMU2:
|
|
|
|
* T[n] Gcode to extrude at least 38.10 mm at feedrate 19.02 mm/s must follow immediately to load to extruder wheels.
|
|
|
|
* T? Gcode to extrude shouldn't have to follow. Load to extruder wheels is done automatically.
|
|
|
|
* Tx Same as T?, but nozzle doesn't have to be preheated. Tc requires a preheated nozzle to finish filament load.
|
|
|
|
* Tc Load to nozzle after filament was prepared by Tc and nozzle is already heated.
|
2017-09-06 13:28:31 +02:00
|
|
|
*/
|
2018-11-15 00:33:04 +01:00
|
|
|
void GcodeSuite::T(const uint8_t tool_index) {
|
2017-09-06 13:28:31 +02:00
|
|
|
|
|
|
|
#if ENABLED(DEBUG_LEVELING_FEATURE)
|
|
|
|
if (DEBUGGING(LEVELING)) {
|
2018-11-15 00:33:04 +01:00
|
|
|
SERIAL_ECHOPAIR(">>> T(", tool_index);
|
2017-09-06 13:28:31 +02:00
|
|
|
SERIAL_CHAR(')');
|
|
|
|
SERIAL_EOL();
|
|
|
|
DEBUG_POS("BEFORE", current_position);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-02-01 02:10:52 +01:00
|
|
|
#if ENABLED(PRUSA_MMU2)
|
|
|
|
if (parser.string_arg) {
|
|
|
|
mmu2.toolChange(parser.string_arg); // Special commands T?/Tx/Tc
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-11-15 00:33:04 +01:00
|
|
|
#if EXTRUDERS < 2
|
2017-09-06 13:28:31 +02:00
|
|
|
|
2018-11-15 00:33:04 +01:00
|
|
|
tool_change(tool_index);
|
2017-09-06 13:28:31 +02:00
|
|
|
|
2018-11-15 00:33:04 +01:00
|
|
|
#else
|
2017-09-06 13:28:31 +02:00
|
|
|
|
|
|
|
tool_change(
|
2018-11-15 00:33:04 +01:00
|
|
|
tool_index,
|
2017-09-06 13:28:31 +02:00
|
|
|
MMM_TO_MMS(parser.linearval('F')),
|
2018-11-15 00:33:04 +01:00
|
|
|
(tool_index == active_extruder) || parser.boolval('S')
|
2017-09-06 13:28:31 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLED(DEBUG_LEVELING_FEATURE)
|
|
|
|
if (DEBUGGING(LEVELING)) {
|
|
|
|
DEBUG_POS("AFTER", current_position);
|
2017-10-14 09:46:05 +02:00
|
|
|
SERIAL_ECHOLNPGM("<<< T()");
|
2017-09-06 13:28:31 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|