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-08 05:33:16 +02:00
|
|
|
#include "../../inc/MarlinConfig.h"
|
|
|
|
|
2018-08-25 04:26:29 +02:00
|
|
|
#if HAS_HOTEND_OFFSET
|
2017-09-08 05:33:16 +02:00
|
|
|
|
|
|
|
#include "../gcode.h"
|
|
|
|
#include "../../module/motion.h"
|
|
|
|
|
2018-03-28 21:31:08 +02:00
|
|
|
#if ENABLED(DELTA)
|
|
|
|
#include "../../module/planner.h"
|
|
|
|
#endif
|
|
|
|
|
2017-09-06 13:28:31 +02:00
|
|
|
/**
|
|
|
|
* M218 - set hotend offset (in linear units)
|
|
|
|
*
|
|
|
|
* T<tool>
|
|
|
|
* X<xoffset>
|
|
|
|
* Y<yoffset>
|
2018-08-25 04:26:29 +02:00
|
|
|
* Z<zoffset>
|
2017-09-06 13:28:31 +02:00
|
|
|
*/
|
2017-09-08 05:33:16 +02:00
|
|
|
void GcodeSuite::M218() {
|
2018-11-15 00:33:04 +01:00
|
|
|
|
|
|
|
const int8_t target_extruder = get_target_extruder_from_command();
|
|
|
|
if (target_extruder < 0) return;
|
2017-09-06 13:28:31 +02:00
|
|
|
|
2018-11-03 07:16:37 +01:00
|
|
|
if (parser.seenval('X')) hotend_offset[X_AXIS][target_extruder] = parser.value_linear_units();
|
|
|
|
if (parser.seenval('Y')) hotend_offset[Y_AXIS][target_extruder] = parser.value_linear_units();
|
|
|
|
if (parser.seenval('Z')) hotend_offset[Z_AXIS][target_extruder] = parser.value_linear_units();
|
2017-09-06 13:28:31 +02:00
|
|
|
|
2018-11-03 07:16:37 +01:00
|
|
|
if (!parser.seen("XYZ")) {
|
2018-03-12 14:14:25 +01:00
|
|
|
SERIAL_ECHO_START();
|
|
|
|
SERIAL_ECHOPGM(MSG_HOTEND_OFFSET);
|
|
|
|
HOTEND_LOOP() {
|
|
|
|
SERIAL_CHAR(' ');
|
|
|
|
SERIAL_ECHO(hotend_offset[X_AXIS][e]);
|
2017-09-06 13:28:31 +02:00
|
|
|
SERIAL_CHAR(',');
|
2018-03-12 14:14:25 +01:00
|
|
|
SERIAL_ECHO(hotend_offset[Y_AXIS][e]);
|
2018-08-25 04:26:29 +02:00
|
|
|
SERIAL_CHAR(',');
|
2018-08-31 22:14:33 +02:00
|
|
|
SERIAL_ECHO_F(hotend_offset[Z_AXIS][e], 3);
|
2018-03-12 14:14:25 +01:00
|
|
|
}
|
|
|
|
SERIAL_EOL();
|
2017-09-06 13:28:31 +02:00
|
|
|
}
|
2018-03-16 06:46:42 +01:00
|
|
|
|
|
|
|
#if ENABLED(DELTA)
|
|
|
|
if (target_extruder == active_extruder)
|
2018-10-10 16:45:20 +02:00
|
|
|
do_blocking_move_to_xy(current_position[X_AXIS], current_position[Y_AXIS], planner.settings.max_feedrate_mm_s[X_AXIS]);
|
2018-03-16 06:46:42 +01:00
|
|
|
#endif
|
2017-09-06 13:28:31 +02:00
|
|
|
}
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2018-08-25 04:26:29 +02:00
|
|
|
#endif // HAS_HOTEND_OFFSET
|