71 lines
2.4 KiB
C++
Raw Normal View History

/**
* Marlin 3D Printer Firmware
2020-02-03 08:00:57 -06:00
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
*
* Based on Sprinter and grbl.
2019-06-27 23:57:50 -05:00
* 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
2020-07-23 05:20:14 +02:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
2017-09-18 01:05:44 -05:00
#include "../gcode.h"
#include "../../module/tool_change.h"
2020-09-20 18:29:08 -05:00
#if EITHER(HAS_MULTI_EXTRUDER, DEBUG_LEVELING_FEATURE)
2017-09-18 01:05:44 -05:00
#include "../../module/motion.h"
#endif
2020-11-18 08:27:21 +01:00
#if HAS_PRUSA_MMU2
#include "../../feature/mmu/mmu2.h"
2019-02-01 02:10:52 +01:00
#endif
#define DEBUG_OUT ENABLED(DEBUG_LEVELING_FEATURE)
#include "../../core/debug_out.h"
/**
2019-02-01 02:10:52 +01:00
* T0-T<n>: Switch tool, usually switching extruders
*
* 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
*
2021-03-30 04:14:11 +02:00
* For PRUSA_MMU2(S) and EXTENDABLE_EMU_MMU2(S)
2019-02-01 02:10:52 +01:00
* 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.
*/
void GcodeSuite::T(const int8_t tool_index) {
DEBUG_SECTION(log_T, "T", DEBUGGING(LEVELING));
2021-09-09 04:57:05 -05:00
if (DEBUGGING(LEVELING)) DEBUG_ECHOLNPGM("...(", tool_index, ")");
// Count this command as movement / activity
reset_stepper_timeout();
2020-11-18 08:27:21 +01:00
#if HAS_PRUSA_MMU2
2019-02-01 02:10:52 +01:00
if (parser.string_arg) {
2019-04-08 17:56:40 -05:00
mmu2.tool_change(parser.string_arg); // Special commands T?/Tx/Tc
2019-02-01 02:10:52 +01:00
return;
}
#endif
tool_change(tool_index
#if HAS_MULTI_EXTRUDER
, TERN(PARKING_EXTRUDER, false, tool_index == active_extruder) // For PARKING_EXTRUDER motion is decided in tool_change()
|| parser.boolval('S')
#endif
);
}