2017-09-06 06:28:31 -05:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2020-02-03 08:00:57 -06:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2017-09-06 06:28:31 -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-09-06 06:28:31 -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
|
2020-07-22 22:20:14 -05:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2017-09-06 06:28:31 -05:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2017-09-16 00:37:35 -05:00
|
|
|
#include "../gcode.h"
|
|
|
|
#include "../../module/motion.h"
|
|
|
|
#include "../../module/stepper.h"
|
|
|
|
|
|
|
|
#if ENABLED(I2C_POSITION_ENCODERS)
|
2020-03-13 16:29:29 -05:00
|
|
|
#include "../../feature/encoder_i2c.h"
|
2017-09-16 00:37:35 -05:00
|
|
|
#endif
|
|
|
|
|
2017-09-06 06:28:31 -05:00
|
|
|
/**
|
|
|
|
* G92: Set current position to given X Y Z E
|
|
|
|
*/
|
2017-09-16 00:37:35 -05:00
|
|
|
void GcodeSuite::G92() {
|
2017-09-06 06:28:31 -05:00
|
|
|
|
2019-10-24 13:05:50 -05:00
|
|
|
bool sync_E = false, sync_XYZ = false;
|
2019-04-15 18:53:39 -05:00
|
|
|
|
2020-02-10 16:22:38 -06:00
|
|
|
#if ENABLED(USE_GCODE_SUBCODES)
|
2019-04-15 18:53:39 -05:00
|
|
|
const uint8_t subcode_G92 = parser.subcode;
|
|
|
|
#else
|
|
|
|
constexpr uint8_t subcode_G92 = 0;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
switch (subcode_G92) {
|
|
|
|
default: break;
|
|
|
|
#if ENABLED(CNC_COORDINATE_SYSTEMS)
|
|
|
|
case 1: {
|
2017-11-04 16:36:41 -05:00
|
|
|
// Zero the G92 values and restore current position
|
|
|
|
#if !IS_SCARA
|
2019-08-28 04:20:28 -05:00
|
|
|
LOOP_XYZ(i) if (position_shift[i]) {
|
|
|
|
position_shift[i] = 0;
|
|
|
|
update_workspace_offset((AxisEnum)i);
|
2017-11-04 16:36:41 -05:00
|
|
|
}
|
|
|
|
#endif // Not SCARA
|
2019-04-15 18:53:39 -05:00
|
|
|
} return;
|
|
|
|
#endif
|
|
|
|
#if ENABLED(POWER_LOSS_RECOVERY)
|
|
|
|
case 9: {
|
|
|
|
LOOP_XYZE(i) {
|
|
|
|
if (parser.seenval(axis_codes[i])) {
|
|
|
|
current_position[i] = parser.value_axis_units((AxisEnum)i);
|
2019-10-24 13:05:50 -05:00
|
|
|
if (i == E_AXIS) sync_E = true; else sync_XYZ = true;
|
2017-11-13 01:50:05 -06:00
|
|
|
}
|
2019-04-15 18:53:39 -05:00
|
|
|
}
|
|
|
|
} break;
|
|
|
|
#endif
|
|
|
|
case 0: {
|
|
|
|
LOOP_XYZE(i) {
|
|
|
|
if (parser.seenval(axis_codes[i])) {
|
|
|
|
const float l = parser.value_axis_units((AxisEnum)i),
|
|
|
|
v = i == E_AXIS ? l : LOGICAL_TO_NATIVE(l, i),
|
|
|
|
d = v - current_position[i];
|
|
|
|
if (!NEAR_ZERO(d)) {
|
|
|
|
#if IS_SCARA || !HAS_POSITION_SHIFT
|
2019-10-24 13:05:50 -05:00
|
|
|
if (i == E_AXIS) sync_E = true; else sync_XYZ = true;
|
2019-04-15 18:53:39 -05:00
|
|
|
current_position[i] = v; // Without workspaces revert to Marlin 1.0 behavior
|
|
|
|
#elif HAS_POSITION_SHIFT
|
|
|
|
if (i == E_AXIS) {
|
2019-10-24 13:05:50 -05:00
|
|
|
sync_E = true;
|
2019-10-27 17:49:27 -05:00
|
|
|
current_position.e = v; // When using coordinate spaces, only E is set directly
|
2019-04-15 18:53:39 -05:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
position_shift[i] += d; // Other axes simply offset the coordinate space
|
|
|
|
update_workspace_offset((AxisEnum)i);
|
|
|
|
}
|
|
|
|
#endif
|
2017-11-07 12:25:04 -06:00
|
|
|
}
|
2019-04-15 18:53:39 -05:00
|
|
|
}
|
2017-11-07 12:25:04 -06:00
|
|
|
}
|
2019-04-15 18:53:39 -05:00
|
|
|
} break;
|
2017-09-06 06:28:31 -05:00
|
|
|
}
|
2017-11-04 16:36:41 -05:00
|
|
|
|
|
|
|
#if ENABLED(CNC_COORDINATE_SYSTEMS)
|
|
|
|
// Apply workspace offset to the active coordinate system
|
|
|
|
if (WITHIN(active_coordinate_system, 0, MAX_COORDINATE_SYSTEMS - 1))
|
2019-09-29 04:25:39 -05:00
|
|
|
coordinate_system[active_coordinate_system] = position_shift;
|
2017-11-04 16:36:41 -05:00
|
|
|
#endif
|
|
|
|
|
2019-10-24 13:05:50 -05:00
|
|
|
if (sync_XYZ) sync_plan_position();
|
|
|
|
else if (sync_E) sync_plan_position_e();
|
2017-09-06 06:28:31 -05:00
|
|
|
|
2020-05-11 19:22:41 -05:00
|
|
|
#if DISABLED(DIRECT_STEPPING)
|
|
|
|
report_current_position();
|
|
|
|
#endif
|
2017-09-06 06:28:31 -05:00
|
|
|
}
|