2017-09-06 06:28:31 -05:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2019-06-27 23:57:50 -05:00
|
|
|
* Copyright (c) 2019 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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2017-09-17 00:28:10 -05:00
|
|
|
#include "../gcode.h"
|
|
|
|
#include "../../module/planner.h"
|
|
|
|
|
2019-02-23 22:53:01 -06:00
|
|
|
void report_M92(const bool echo=true, const int8_t e=-1) {
|
|
|
|
if (echo) SERIAL_ECHO_START(); else SERIAL_CHAR(' ');
|
2019-09-26 03:47:26 -05:00
|
|
|
SERIAL_ECHOPAIR(" M92 X", LINEAR_UNIT(planner.settings.axis_steps_per_mm[X_AXIS]),
|
|
|
|
" Y", LINEAR_UNIT(planner.settings.axis_steps_per_mm[Y_AXIS]),
|
|
|
|
" Z", LINEAR_UNIT(planner.settings.axis_steps_per_mm[Z_AXIS]));
|
2019-02-04 05:24:15 -06:00
|
|
|
#if DISABLED(DISTINCT_E_FACTORS)
|
2019-02-23 22:53:01 -06:00
|
|
|
SERIAL_ECHOPAIR(" E", VOLUMETRIC_UNIT(planner.settings.axis_steps_per_mm[E_AXIS]));
|
2019-02-04 05:24:15 -06:00
|
|
|
#endif
|
2019-02-23 22:53:01 -06:00
|
|
|
SERIAL_EOL();
|
2019-02-04 05:24:15 -06:00
|
|
|
|
|
|
|
#if ENABLED(DISTINCT_E_FACTORS)
|
|
|
|
for (uint8_t i = 0; i < E_STEPPERS; i++) {
|
|
|
|
if (e >= 0 && i != e) continue;
|
2019-02-23 22:53:01 -06:00
|
|
|
if (echo) SERIAL_ECHO_START(); else SERIAL_CHAR(' ');
|
2019-09-26 03:47:26 -05:00
|
|
|
SERIAL_ECHOLNPAIR(" M92 T", (int)i,
|
|
|
|
" E", VOLUMETRIC_UNIT(planner.settings.axis_steps_per_mm[E_AXIS_N(i)]));
|
2019-02-04 05:24:15 -06:00
|
|
|
}
|
|
|
|
#endif
|
2019-06-29 00:23:57 -05:00
|
|
|
|
|
|
|
UNUSED_E(e);
|
2019-02-04 05:24:15 -06:00
|
|
|
}
|
|
|
|
|
2017-09-06 06:28:31 -05:00
|
|
|
/**
|
|
|
|
* M92: Set axis steps-per-unit for one or more axes, X, Y, Z, and E.
|
|
|
|
* (Follows the same syntax as G92)
|
|
|
|
*
|
|
|
|
* With multiple extruders use T to specify which one.
|
2019-02-04 05:24:15 -06:00
|
|
|
*
|
|
|
|
* If no argument is given print the current values.
|
|
|
|
*
|
|
|
|
* With MAGIC_NUMBERS_GCODE:
|
|
|
|
* Use 'H' and/or 'L' to get ideal layer-height information.
|
|
|
|
* 'H' specifies micro-steps to use. We guess if it's not supplied.
|
|
|
|
* 'L' specifies a desired layer height. Nearest good heights are shown.
|
2017-09-06 06:28:31 -05:00
|
|
|
*/
|
2017-09-17 00:28:10 -05:00
|
|
|
void GcodeSuite::M92() {
|
2017-09-06 06:28:31 -05:00
|
|
|
|
2018-11-14 17:33:04 -06:00
|
|
|
const int8_t target_extruder = get_target_extruder_from_command();
|
|
|
|
if (target_extruder < 0) return;
|
2017-09-06 06:28:31 -05:00
|
|
|
|
2019-02-04 05:24:15 -06:00
|
|
|
// No arguments? Show M92 report.
|
|
|
|
if (!parser.seen("XYZE"
|
|
|
|
#if ENABLED(MAGIC_NUMBERS_GCODE)
|
|
|
|
"HL"
|
|
|
|
#endif
|
2019-02-23 22:53:01 -06:00
|
|
|
)) return report_M92(true, target_extruder);
|
2019-02-04 05:24:15 -06:00
|
|
|
|
2017-09-06 06:28:31 -05:00
|
|
|
LOOP_XYZE(i) {
|
2019-02-04 05:24:15 -06:00
|
|
|
if (parser.seenval(axis_codes[i])) {
|
2017-09-06 06:28:31 -05:00
|
|
|
if (i == E_AXIS) {
|
2018-11-14 17:33:04 -06:00
|
|
|
const float value = parser.value_per_axis_units((AxisEnum)(E_AXIS_N(target_extruder)));
|
2018-07-01 15:20:28 -05:00
|
|
|
if (value < 20) {
|
2018-11-14 17:33:04 -06:00
|
|
|
float factor = planner.settings.axis_steps_per_mm[E_AXIS_N(target_extruder)] / value; // increase e constants if M92 E14 is given for netfab.
|
2019-07-14 08:56:29 -05:00
|
|
|
#if HAS_CLASSIC_JERK && !BOTH(JUNCTION_DEVIATION, LIN_ADVANCE)
|
2019-09-29 04:25:39 -05:00
|
|
|
planner.max_jerk.e *= factor;
|
2018-06-11 18:49:08 -05:00
|
|
|
#endif
|
2018-11-14 17:33:04 -06:00
|
|
|
planner.settings.max_feedrate_mm_s[E_AXIS_N(target_extruder)] *= factor;
|
|
|
|
planner.max_acceleration_steps_per_s2[E_AXIS_N(target_extruder)] *= factor;
|
2017-09-06 06:28:31 -05:00
|
|
|
}
|
2018-11-14 17:33:04 -06:00
|
|
|
planner.settings.axis_steps_per_mm[E_AXIS_N(target_extruder)] = value;
|
2017-09-06 06:28:31 -05:00
|
|
|
}
|
|
|
|
else {
|
2018-10-13 23:08:20 -05:00
|
|
|
planner.settings.axis_steps_per_mm[i] = parser.value_per_axis_units((AxisEnum)i);
|
2017-09-06 06:28:31 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
planner.refresh_positioning();
|
2019-02-04 05:24:15 -06:00
|
|
|
|
|
|
|
#if ENABLED(MAGIC_NUMBERS_GCODE)
|
|
|
|
#ifndef Z_MICROSTEPS
|
|
|
|
#define Z_MICROSTEPS 16
|
|
|
|
#endif
|
|
|
|
const float wanted = parser.floatval('L');
|
|
|
|
if (parser.seen('H') || wanted) {
|
|
|
|
const uint16_t argH = parser.ushortval('H'),
|
2019-10-01 19:59:48 -05:00
|
|
|
micro_steps = argH ?: Z_MICROSTEPS;
|
2019-02-04 05:24:15 -06:00
|
|
|
const float z_full_step_mm = micro_steps * planner.steps_to_mm[Z_AXIS];
|
|
|
|
SERIAL_ECHO_START();
|
2019-09-26 03:47:26 -05:00
|
|
|
SERIAL_ECHOPAIR("{ micro_steps:", micro_steps, ", z_full_step_mm:", z_full_step_mm);
|
2019-02-04 05:24:15 -06:00
|
|
|
if (wanted) {
|
|
|
|
const float best = uint16_t(wanted / z_full_step_mm) * z_full_step_mm;
|
2019-09-26 03:47:26 -05:00
|
|
|
SERIAL_ECHOPAIR(", best:[", best);
|
2019-02-04 05:24:15 -06:00
|
|
|
if (best != wanted) { SERIAL_CHAR(','); SERIAL_ECHO(best + z_full_step_mm); }
|
|
|
|
SERIAL_CHAR(']');
|
|
|
|
}
|
|
|
|
SERIAL_ECHOLNPGM(" }");
|
|
|
|
}
|
|
|
|
#endif
|
2017-09-06 06:28:31 -05:00
|
|
|
}
|