Marlin_Firmware/Marlin/src/gcode/motion/M290.cpp

135 lines
3.9 KiB
C++
Raw Normal View History

2017-10-25 15:49:34 -05:00
/**
* Marlin 3D Printer Firmware
2019-06-27 23:57:50 -05:00
* Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
2017-10-25 15:49:34 -05:00
*
* Based on Sprinter and grbl.
2019-06-27 23:57:50 -05:00
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
2017-10-25 15:49:34 -05:00
*
* 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/>.
*
*/
#include "../../inc/MarlinConfig.h"
#if ENABLED(BABYSTEPPING)
#include "../gcode.h"
#include "../../feature/babystep.h"
2017-10-25 15:49:34 -05:00
#include "../../module/probe.h"
#include "../../module/temperature.h"
#include "../../module/planner.h"
2017-11-25 14:00:39 -06:00
#if ENABLED(BABYSTEP_ZPROBE_OFFSET)
#include "../../core/serial.h"
#endif
2019-09-28 16:58:48 -05:00
#if ENABLED(MESH_BED_LEVELING)
#include "../../feature/bedlevel/bedlevel.h"
#endif
#if ENABLED(BABYSTEP_ZPROBE_OFFSET)
FORCE_INLINE void mod_zprobe_zoffset(const float &offs) {
if (true
#if ENABLED(BABYSTEP_HOTEND_Z_OFFSET)
&& active_extruder == 0
#endif
) {
2019-09-24 23:35:49 -05:00
probe_offset[Z_AXIS] += offs;
SERIAL_ECHO_START();
2019-09-24 23:35:49 -05:00
SERIAL_ECHOLNPAIR(MSG_PROBE_OFFSET MSG_Z ": ", probe_offset[Z_AXIS]);
}
else {
#if ENABLED(BABYSTEP_HOTEND_Z_OFFSET)
hotend_offset[Z_AXIS][active_extruder] -= offs;
SERIAL_ECHO_START();
SERIAL_ECHOLNPAIR(MSG_PROBE_OFFSET MSG_Z ": ", hotend_offset[Z_AXIS][active_extruder]);
#endif
}
}
#endif
2017-10-25 15:49:34 -05:00
/**
* M290: Babystepping
2019-06-18 00:25:38 -05:00
*
2019-09-28 16:58:48 -05:00
* Send 'R' or no parameters for a report.
*
2019-06-18 00:25:38 -05:00
* X<linear> - Distance to step X
* Y<linear> - Distance to step Y
* Z<linear> - Distance to step Z
* S<linear> - Distance to step Z (alias for Z)
*
* With BABYSTEP_ZPROBE_OFFSET:
2019-09-28 16:58:48 -05:00
* P0 - Don't adjust the Z probe offset
2017-10-25 15:49:34 -05:00
*/
void GcodeSuite::M290() {
#if ENABLED(BABYSTEP_XY)
for (uint8_t a = X_AXIS; a <= Z_AXIS; a++)
if (parser.seenval(axis_codes[a]) || (a == Z_AXIS && parser.seenval('S'))) {
2017-11-16 00:27:24 -06:00
const float offs = constrain(parser.value_axis_units((AxisEnum)a), -2, 2);
babystep.add_mm((AxisEnum)a, offs);
2017-10-25 15:49:34 -05:00
#if ENABLED(BABYSTEP_ZPROBE_OFFSET)
2017-11-28 17:21:33 -06:00
if (a == Z_AXIS && (!parser.seen('P') || parser.value_bool())) mod_zprobe_zoffset(offs);
2017-10-25 15:49:34 -05:00
#endif
}
#else
if (parser.seenval('Z') || parser.seenval('S')) {
2017-11-11 22:14:21 -06:00
const float offs = constrain(parser.value_axis_units(Z_AXIS), -2, 2);
babystep.add_mm(Z_AXIS, offs);
2017-10-25 15:49:34 -05:00
#if ENABLED(BABYSTEP_ZPROBE_OFFSET)
2017-11-28 17:21:33 -06:00
if (!parser.seen('P') || parser.value_bool()) mod_zprobe_zoffset(offs);
2017-10-25 15:49:34 -05:00
#endif
}
#endif
2019-09-28 16:58:48 -05:00
if (!parser.seen("XYZ") || parser.seen('R')) {
SERIAL_ECHO_START();
#if ENABLED(BABYSTEP_ZPROBE_OFFSET)
SERIAL_ECHOLNPAIR(MSG_PROBE_OFFSET " " MSG_Z, probe_offset[Z_AXIS]);
#endif
#if ENABLED(BABYSTEP_HOTEND_Z_OFFSET)
{
SERIAL_ECHOLNPAIR("Hotend ", int(active_extruder), "Offset"
#if ENABLED(BABYSTEP_XY)
" X", hotend_offset[X_AXIS][active_extruder],
" Y", hotend_offset[Y_AXIS][active_extruder],
#endif
" Z", hotend_offset[Z_AXIS][active_extruder]
);
}
#endif
#if ENABLED(MESH_BED_LEVELING)
SERIAL_ECHOLNPAIR("MBL Adjust Z", mbl.z_offset);
#endif
#if ENABLED(BABYSTEP_DISPLAY_TOTAL)
{
SERIAL_ECHOLNPAIR("Babystep"
#if ENABLED(BABYSTEP_XY)
" X", babystep.axis_total[X_AXIS],
" Y", babystep.axis_total[Y_AXIS],
#endif
" Z", babystep.axis_total[Z_AXIS]
);
}
#endif
}
2017-10-25 15:49:34 -05:00
}
#endif // BABYSTEPPING