2017-09-07 22:33:16 -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-07 22:33:16 -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-07 22:33:16 -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-07 22:33:16 -05:00
|
|
|
*
|
|
|
|
*/
|
2019-07-04 22:44:12 -05:00
|
|
|
#pragma once
|
2017-09-07 22:33:16 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* motion.h
|
|
|
|
*
|
|
|
|
* High-level motion commands to feed the planner
|
|
|
|
* Some of these methods may migrate to the planner class.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "../inc/MarlinConfig.h"
|
|
|
|
|
2019-09-24 21:29:21 -05:00
|
|
|
#if IS_SCARA
|
|
|
|
#include "scara.h"
|
|
|
|
#endif
|
|
|
|
|
2018-08-21 23:33:55 -05:00
|
|
|
// Error margin to work around float imprecision
|
2020-02-27 06:16:33 -06:00
|
|
|
constexpr float fslop = 0.0001;
|
2018-08-21 23:33:55 -05:00
|
|
|
|
2017-09-07 22:33:16 -05:00
|
|
|
extern bool relative_mode;
|
|
|
|
|
2019-09-29 04:25:39 -05:00
|
|
|
extern xyze_pos_t current_position, // High-level current tool position
|
|
|
|
destination; // Destination for a move
|
2017-09-08 15:35:25 -05:00
|
|
|
|
2020-01-07 13:52:19 -06:00
|
|
|
// G60/G61 Position Save and Return
|
|
|
|
#if SAVED_POSITIONS
|
2020-01-30 03:18:45 -06:00
|
|
|
extern uint8_t saved_slots[(SAVED_POSITIONS + 7) >> 3];
|
2020-01-07 13:52:19 -06:00
|
|
|
extern xyz_pos_t stored_position[SAVED_POSITIONS];
|
|
|
|
#endif
|
|
|
|
|
2017-09-08 15:35:25 -05:00
|
|
|
// Scratch space for a cartesian result
|
2019-09-29 04:25:39 -05:00
|
|
|
extern xyz_pos_t cartes;
|
2017-09-08 15:35:25 -05:00
|
|
|
|
|
|
|
// Until kinematics.cpp is created, declare this here
|
|
|
|
#if IS_KINEMATIC
|
2019-09-29 04:25:39 -05:00
|
|
|
extern abc_pos_t delta;
|
2017-09-08 15:35:25 -05:00
|
|
|
#endif
|
|
|
|
|
2019-02-24 20:29:03 -06:00
|
|
|
#if HAS_ABL_NOT_UBL
|
2020-12-17 06:02:05 -06:00
|
|
|
extern feedRate_t xy_probe_feedrate_mm_s;
|
2017-09-08 15:35:25 -05:00
|
|
|
#define XY_PROBE_FEEDRATE_MM_S xy_probe_feedrate_mm_s
|
2021-02-27 15:54:43 -06:00
|
|
|
#elif defined(XY_PROBE_FEEDRATE)
|
|
|
|
#define XY_PROBE_FEEDRATE_MM_S MMM_TO_MMS(XY_PROBE_FEEDRATE)
|
2017-09-08 15:35:25 -05:00
|
|
|
#else
|
|
|
|
#define XY_PROBE_FEEDRATE_MM_S PLANNER_XY_FEEDRATE()
|
|
|
|
#endif
|
|
|
|
|
2021-03-01 07:10:00 -06:00
|
|
|
#if HAS_BED_PROBE
|
|
|
|
constexpr feedRate_t z_probe_fast_mm_s = MMM_TO_MMS(Z_PROBE_FEEDRATE_FAST);
|
|
|
|
#endif
|
2020-12-17 06:02:05 -06:00
|
|
|
|
2017-09-08 15:35:25 -05:00
|
|
|
/**
|
|
|
|
* Feed rates are often configured with mm/m
|
|
|
|
* but the planner and stepper like mm/s units.
|
|
|
|
*/
|
2020-12-17 06:02:05 -06:00
|
|
|
constexpr xyz_feedrate_t homing_feedrate_mm_m = HOMING_FEEDRATE_MM_M;
|
|
|
|
FORCE_INLINE feedRate_t homing_feedrate(const AxisEnum a) {
|
|
|
|
float v;
|
|
|
|
#if ENABLED(DELTA)
|
|
|
|
v = homing_feedrate_mm_m.z;
|
|
|
|
#else
|
|
|
|
switch (a) {
|
|
|
|
case X_AXIS: v = homing_feedrate_mm_m.x; break;
|
|
|
|
case Y_AXIS: v = homing_feedrate_mm_m.y; break;
|
|
|
|
case Z_AXIS:
|
|
|
|
default: v = homing_feedrate_mm_m.z;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return MMM_TO_MMS(v);
|
|
|
|
}
|
|
|
|
|
2019-09-26 01:28:09 -05:00
|
|
|
feedRate_t get_homing_bump_feedrate(const AxisEnum axis);
|
2017-09-07 22:33:16 -05:00
|
|
|
|
2020-12-16 22:18:40 -06:00
|
|
|
/**
|
|
|
|
* The default feedrate for many moves, set by the most recent move
|
|
|
|
*/
|
2019-09-26 01:28:09 -05:00
|
|
|
extern feedRate_t feedrate_mm_s;
|
2017-09-07 22:33:16 -05:00
|
|
|
|
2017-09-08 15:35:25 -05:00
|
|
|
/**
|
2020-12-16 22:18:40 -06:00
|
|
|
* Feedrate scaling is applied to all G0/G1, G2/G3, and G5 moves
|
2017-09-08 15:35:25 -05:00
|
|
|
*/
|
|
|
|
extern int16_t feedrate_percentage;
|
2020-12-16 22:18:40 -06:00
|
|
|
#define MMS_SCALED(V) ((V) * 0.01f * feedrate_percentage)
|
2017-09-08 15:35:25 -05:00
|
|
|
|
2018-09-10 23:09:26 -05:00
|
|
|
// The active extruder (tool). Set with T<extruder> command.
|
2020-09-20 18:29:08 -05:00
|
|
|
#if HAS_MULTI_EXTRUDER
|
2018-09-10 23:09:26 -05:00
|
|
|
extern uint8_t active_extruder;
|
|
|
|
#else
|
|
|
|
constexpr uint8_t active_extruder = 0;
|
|
|
|
#endif
|
2017-09-07 22:33:16 -05:00
|
|
|
|
2019-10-27 17:49:27 -05:00
|
|
|
#if ENABLED(LCD_SHOW_E_TOTAL)
|
|
|
|
extern float e_move_accumulator;
|
|
|
|
#endif
|
|
|
|
|
2020-09-09 18:57:20 -05:00
|
|
|
#ifdef __IMXRT1062__
|
|
|
|
#define DEFS_PROGMEM
|
|
|
|
#else
|
|
|
|
#define DEFS_PROGMEM PROGMEM
|
|
|
|
#endif
|
|
|
|
|
|
|
|
inline float pgm_read_any(const float *p) { return TERN(__IMXRT1062__, *p, pgm_read_float(p)); }
|
|
|
|
inline int8_t pgm_read_any(const int8_t *p) { return TERN(__IMXRT1062__, *p, pgm_read_byte(p)); }
|
2017-09-07 22:33:16 -05:00
|
|
|
|
2019-09-29 04:25:39 -05:00
|
|
|
#define XYZ_DEFS(T, NAME, OPT) \
|
2020-03-25 03:18:48 -05:00
|
|
|
inline T NAME(const AxisEnum axis) { \
|
2020-09-09 18:57:20 -05:00
|
|
|
static const XYZval<T> NAME##_P DEFS_PROGMEM = { X_##OPT, Y_##OPT, Z_##OPT }; \
|
2020-03-25 03:18:48 -05:00
|
|
|
return pgm_read_any(&NAME##_P[axis]); \
|
|
|
|
}
|
2017-09-07 22:33:16 -05:00
|
|
|
XYZ_DEFS(float, base_min_pos, MIN_POS);
|
|
|
|
XYZ_DEFS(float, base_max_pos, MAX_POS);
|
|
|
|
XYZ_DEFS(float, base_home_pos, HOME_POS);
|
|
|
|
XYZ_DEFS(float, max_length, MAX_LENGTH);
|
2020-09-09 18:57:20 -05:00
|
|
|
XYZ_DEFS(int8_t, home_dir, HOME_DIR);
|
2017-09-07 22:33:16 -05:00
|
|
|
|
2020-03-25 03:18:48 -05:00
|
|
|
inline float home_bump_mm(const AxisEnum axis) {
|
2020-09-09 18:57:20 -05:00
|
|
|
static const xyz_pos_t home_bump_mm_P DEFS_PROGMEM = HOMING_BUMP_MM;
|
2020-03-25 03:18:48 -05:00
|
|
|
return pgm_read_any(&home_bump_mm_P[axis]);
|
|
|
|
}
|
|
|
|
|
2018-11-03 03:56:33 -05:00
|
|
|
#if HAS_WORKSPACE_OFFSET
|
|
|
|
void update_workspace_offset(const AxisEnum axis);
|
|
|
|
#else
|
2020-04-22 16:35:03 -05:00
|
|
|
inline void update_workspace_offset(const AxisEnum) {}
|
2018-11-03 03:56:33 -05:00
|
|
|
#endif
|
|
|
|
|
2019-03-08 22:13:24 -06:00
|
|
|
#if HAS_HOTEND_OFFSET
|
2019-09-29 04:25:39 -05:00
|
|
|
extern xyz_pos_t hotend_offset[HOTENDS];
|
2019-03-08 22:13:24 -06:00
|
|
|
void reset_hotend_offsets();
|
2019-09-29 04:25:39 -05:00
|
|
|
#elif HOTENDS
|
|
|
|
constexpr xyz_pos_t hotend_offset[HOTENDS] = { { 0 } };
|
2019-09-10 02:20:49 -05:00
|
|
|
#else
|
2019-09-29 04:25:39 -05:00
|
|
|
constexpr xyz_pos_t hotend_offset[1] = { { 0 } };
|
2019-03-08 22:13:24 -06:00
|
|
|
#endif
|
|
|
|
|
2017-09-07 22:33:16 -05:00
|
|
|
#if HAS_SOFTWARE_ENDSTOPS
|
2020-10-12 16:48:04 -05:00
|
|
|
|
|
|
|
typedef struct {
|
2020-10-13 14:54:56 -05:00
|
|
|
bool _enabled, _loose;
|
2020-10-12 16:48:04 -05:00
|
|
|
bool enabled() { return _enabled && !_loose; }
|
2020-10-13 14:54:56 -05:00
|
|
|
|
|
|
|
xyz_pos_t min, max;
|
2020-10-12 16:48:04 -05:00
|
|
|
void get_manual_axis_limits(const AxisEnum axis, float &amin, float &amax) {
|
|
|
|
amin = -100000; amax = 100000; // "No limits"
|
|
|
|
#if HAS_SOFTWARE_ENDSTOPS
|
|
|
|
if (enabled()) switch (axis) {
|
|
|
|
case X_AXIS:
|
|
|
|
TERN_(MIN_SOFTWARE_ENDSTOP_X, amin = min.x);
|
|
|
|
TERN_(MAX_SOFTWARE_ENDSTOP_X, amax = max.x);
|
|
|
|
break;
|
|
|
|
case Y_AXIS:
|
|
|
|
TERN_(MIN_SOFTWARE_ENDSTOP_Y, amin = min.y);
|
|
|
|
TERN_(MAX_SOFTWARE_ENDSTOP_Y, amax = max.y);
|
|
|
|
break;
|
|
|
|
case Z_AXIS:
|
|
|
|
TERN_(MIN_SOFTWARE_ENDSTOP_Z, amin = min.z);
|
|
|
|
TERN_(MAX_SOFTWARE_ENDSTOP_Z, amax = max.z);
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
} soft_endstops_t;
|
|
|
|
|
|
|
|
extern soft_endstops_t soft_endstop;
|
2019-09-29 04:25:39 -05:00
|
|
|
void apply_motion_limits(xyz_pos_t &target);
|
2019-03-08 22:13:24 -06:00
|
|
|
void update_software_endstops(const AxisEnum axis
|
|
|
|
#if HAS_HOTEND_OFFSET
|
|
|
|
, const uint8_t old_tool_index=0, const uint8_t new_tool_index=0
|
|
|
|
#endif
|
|
|
|
);
|
2020-10-12 16:48:04 -05:00
|
|
|
#define SET_SOFT_ENDSTOP_LOOSE(loose) (soft_endstop._loose = loose)
|
|
|
|
|
|
|
|
#else // !HAS_SOFTWARE_ENDSTOPS
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
bool enabled() { return false; }
|
|
|
|
void get_manual_axis_limits(const AxisEnum axis, float &amin, float &amax) {
|
|
|
|
// No limits
|
|
|
|
amin = current_position[axis] - 1000;
|
|
|
|
amax = current_position[axis] + 1000;
|
|
|
|
}
|
|
|
|
} soft_endstops_t;
|
|
|
|
extern soft_endstops_t soft_endstop;
|
|
|
|
#define apply_motion_limits(V) NOOP
|
2019-03-08 22:13:24 -06:00
|
|
|
#define update_software_endstops(...) NOOP
|
2020-10-14 13:50:03 -05:00
|
|
|
#define SET_SOFT_ENDSTOP_LOOSE(V) NOOP
|
2020-10-12 16:48:04 -05:00
|
|
|
|
|
|
|
#endif // !HAS_SOFTWARE_ENDSTOPS
|
2017-09-07 22:33:16 -05:00
|
|
|
|
2020-03-02 21:52:53 -06:00
|
|
|
void report_real_position();
|
2017-09-08 15:35:25 -05:00
|
|
|
void report_current_position();
|
2020-03-02 21:52:53 -06:00
|
|
|
void report_current_position_projected();
|
2017-09-08 15:35:25 -05:00
|
|
|
|
|
|
|
void get_cartesian_from_steppers();
|
|
|
|
void set_current_from_steppers_for_axis(const AxisEnum axis);
|
|
|
|
|
2021-01-21 03:40:07 -06:00
|
|
|
void quickstop_stepper();
|
|
|
|
|
2017-09-07 22:33:16 -05:00
|
|
|
/**
|
|
|
|
* sync_plan_position
|
|
|
|
*
|
|
|
|
* Set the planner/stepper positions directly from current_position with
|
|
|
|
* no kinematic translation. Used for homing axes and cartesian/core syncing.
|
|
|
|
*/
|
|
|
|
void sync_plan_position();
|
|
|
|
void sync_plan_position_e();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Move the planner to the current position from wherever it last moved
|
|
|
|
* (or from wherever it has been told it is located).
|
|
|
|
*/
|
2019-09-26 01:28:09 -05:00
|
|
|
void line_to_current_position(const feedRate_t &fr_mm_s=feedrate_mm_s);
|
2017-09-07 22:33:16 -05:00
|
|
|
|
2020-03-29 17:20:01 -05:00
|
|
|
#if EXTRUDERS
|
|
|
|
void unscaled_e_move(const float &length, const feedRate_t &fr_mm_s);
|
|
|
|
#endif
|
2020-03-29 16:26:55 -05:00
|
|
|
|
2020-03-01 16:59:04 -06:00
|
|
|
void prepare_line_to_destination();
|
2019-09-26 01:28:09 -05:00
|
|
|
|
|
|
|
void _internal_move_to_destination(const feedRate_t &fr_mm_s=0.0f
|
|
|
|
#if IS_KINEMATIC
|
|
|
|
, const bool is_fast=false
|
|
|
|
#endif
|
|
|
|
);
|
|
|
|
|
|
|
|
inline void prepare_internal_move_to_destination(const feedRate_t &fr_mm_s=0.0f) {
|
|
|
|
_internal_move_to_destination(fr_mm_s);
|
|
|
|
}
|
2017-09-07 22:33:16 -05:00
|
|
|
|
|
|
|
#if IS_KINEMATIC
|
2019-09-26 01:28:09 -05:00
|
|
|
void prepare_fast_move_to_destination(const feedRate_t &scaled_fr_mm_s=MMS_SCALED(feedrate_mm_s));
|
2017-09-07 22:33:16 -05:00
|
|
|
|
2019-09-26 01:28:09 -05:00
|
|
|
inline void prepare_internal_fast_move_to_destination(const feedRate_t &fr_mm_s=0.0f) {
|
|
|
|
_internal_move_to_destination(fr_mm_s, true);
|
|
|
|
}
|
|
|
|
#endif
|
2017-09-07 22:33:16 -05:00
|
|
|
|
2017-09-08 15:35:25 -05:00
|
|
|
/**
|
|
|
|
* Blocking movement and shorthand functions
|
|
|
|
*/
|
2019-09-26 01:28:09 -05:00
|
|
|
void do_blocking_move_to(const float rx, const float ry, const float rz, const feedRate_t &fr_mm_s=0.0f);
|
2019-10-06 23:58:19 -05:00
|
|
|
void do_blocking_move_to(const xy_pos_t &raw, const feedRate_t &fr_mm_s=0.0f);
|
|
|
|
void do_blocking_move_to(const xyz_pos_t &raw, const feedRate_t &fr_mm_s=0.0f);
|
|
|
|
void do_blocking_move_to(const xyze_pos_t &raw, const feedRate_t &fr_mm_s=0.0f);
|
2019-09-30 19:57:22 -05:00
|
|
|
|
|
|
|
void do_blocking_move_to_x(const float &rx, const feedRate_t &fr_mm_s=0.0f);
|
|
|
|
void do_blocking_move_to_y(const float &ry, const feedRate_t &fr_mm_s=0.0f);
|
|
|
|
void do_blocking_move_to_z(const float &rz, const feedRate_t &fr_mm_s=0.0f);
|
2018-10-13 23:08:20 -05:00
|
|
|
|
2019-10-06 23:58:19 -05:00
|
|
|
void do_blocking_move_to_xy(const float &rx, const float &ry, const feedRate_t &fr_mm_s=0.0f);
|
|
|
|
void do_blocking_move_to_xy(const xy_pos_t &raw, const feedRate_t &fr_mm_s=0.0f);
|
|
|
|
FORCE_INLINE void do_blocking_move_to_xy(const xyz_pos_t &raw, const feedRate_t &fr_mm_s=0.0f) { do_blocking_move_to_xy(xy_pos_t(raw), fr_mm_s); }
|
|
|
|
FORCE_INLINE void do_blocking_move_to_xy(const xyze_pos_t &raw, const feedRate_t &fr_mm_s=0.0f) { do_blocking_move_to_xy(xy_pos_t(raw), fr_mm_s); }
|
|
|
|
|
|
|
|
void do_blocking_move_to_xy_z(const xy_pos_t &raw, const float &z, const feedRate_t &fr_mm_s=0.0f);
|
|
|
|
FORCE_INLINE void do_blocking_move_to_xy_z(const xyz_pos_t &raw, const float &z, const feedRate_t &fr_mm_s=0.0f) { do_blocking_move_to_xy_z(xy_pos_t(raw), z, fr_mm_s); }
|
|
|
|
FORCE_INLINE void do_blocking_move_to_xy_z(const xyze_pos_t &raw, const float &z, const feedRate_t &fr_mm_s=0.0f) { do_blocking_move_to_xy_z(xy_pos_t(raw), z, fr_mm_s); }
|
|
|
|
|
2019-09-23 20:58:01 -05:00
|
|
|
void remember_feedrate_and_scaling();
|
|
|
|
void remember_feedrate_scaling_off();
|
|
|
|
void restore_feedrate_and_scaling();
|
2017-09-08 15:35:25 -05:00
|
|
|
|
2021-02-25 10:09:00 -06:00
|
|
|
void do_z_clearance(const float &zclear, const bool lower_allowed=false);
|
2020-11-29 19:06:40 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Homing and Trusted Axes
|
|
|
|
*/
|
|
|
|
constexpr uint8_t xyz_bits = _BV(X_AXIS) | _BV(Y_AXIS) | _BV(Z_AXIS);
|
2020-07-08 21:44:21 -05:00
|
|
|
|
2020-08-27 16:05:53 -05:00
|
|
|
void set_axis_is_at_home(const AxisEnum axis);
|
2021-02-25 04:49:34 -06:00
|
|
|
|
|
|
|
#if HAS_ENDSTOPS
|
|
|
|
/**
|
|
|
|
* axis_homed
|
|
|
|
* Flags that each linear axis was homed.
|
|
|
|
* XYZ on cartesian, ABC on delta, ABZ on SCARA.
|
|
|
|
*
|
|
|
|
* axis_trusted
|
|
|
|
* Flags that the position is trusted in each linear axis. Set when homed.
|
|
|
|
* Cleared whenever a stepper powers off, potentially losing its position.
|
|
|
|
*/
|
|
|
|
extern uint8_t axis_homed, axis_trusted;
|
|
|
|
void homeaxis(const AxisEnum axis);
|
|
|
|
void set_axis_never_homed(const AxisEnum axis);
|
|
|
|
uint8_t axes_should_home(uint8_t axis_bits=0x07);
|
|
|
|
bool homing_needed_error(uint8_t axis_bits=0x07);
|
|
|
|
FORCE_INLINE void set_axis_unhomed(const AxisEnum axis) { CBI(axis_homed, axis); }
|
|
|
|
FORCE_INLINE void set_axis_untrusted(const AxisEnum axis) { CBI(axis_trusted, axis); }
|
|
|
|
FORCE_INLINE void set_all_unhomed() { axis_homed = axis_trusted = 0; }
|
|
|
|
FORCE_INLINE void set_axis_homed(const AxisEnum axis) { SBI(axis_homed, axis); }
|
|
|
|
FORCE_INLINE void set_axis_trusted(const AxisEnum axis) { SBI(axis_trusted, axis); }
|
|
|
|
FORCE_INLINE void set_all_homed() { axis_homed = axis_trusted = xyz_bits; }
|
|
|
|
#else
|
|
|
|
constexpr uint8_t axis_homed = xyz_bits, axis_trusted = xyz_bits; // Zero-endstop machines are always homed and trusted
|
|
|
|
FORCE_INLINE void homeaxis(const AxisEnum axis) {}
|
|
|
|
FORCE_INLINE void set_axis_never_homed(const AxisEnum) {}
|
|
|
|
FORCE_INLINE uint8_t axes_should_home(uint8_t=0x07) { return false; }
|
|
|
|
FORCE_INLINE bool homing_needed_error(uint8_t=0x07) { return false; }
|
|
|
|
FORCE_INLINE void set_axis_unhomed(const AxisEnum axis) {}
|
|
|
|
FORCE_INLINE void set_axis_untrusted(const AxisEnum axis) {}
|
|
|
|
FORCE_INLINE void set_all_unhomed() {}
|
|
|
|
FORCE_INLINE void set_axis_homed(const AxisEnum axis) {}
|
|
|
|
FORCE_INLINE void set_axis_trusted(const AxisEnum axis) {}
|
|
|
|
FORCE_INLINE void set_all_homed() {}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
FORCE_INLINE bool axis_was_homed(const AxisEnum axis) { return TEST(axis_homed, axis); }
|
|
|
|
FORCE_INLINE bool axis_is_trusted(const AxisEnum axis) { return TEST(axis_trusted, axis); }
|
|
|
|
FORCE_INLINE bool axis_should_home(const AxisEnum axis) { return (axes_should_home() & _BV(axis)) != 0; }
|
|
|
|
FORCE_INLINE bool no_axes_homed() { return !axis_homed; }
|
|
|
|
FORCE_INLINE bool all_axes_homed() { return xyz_bits == (axis_homed & xyz_bits); }
|
|
|
|
FORCE_INLINE bool homing_needed() { return !all_axes_homed(); }
|
|
|
|
FORCE_INLINE bool all_axes_trusted() { return xyz_bits == (axis_trusted & xyz_bits); }
|
2020-11-29 19:06:40 -06:00
|
|
|
|
2017-10-01 21:34:58 -05:00
|
|
|
#if ENABLED(NO_MOTION_BEFORE_HOMING)
|
2020-08-27 16:05:53 -05:00
|
|
|
#define MOTION_CONDITIONS (IsRunning() && !homing_needed_error())
|
2017-10-01 21:34:58 -05:00
|
|
|
#else
|
|
|
|
#define MOTION_CONDITIONS IsRunning()
|
|
|
|
#endif
|
|
|
|
|
2020-11-29 19:06:40 -06:00
|
|
|
#define BABYSTEP_ALLOWED() ((ENABLED(BABYSTEP_WITHOUT_HOMING) || all_axes_trusted()) && (ENABLED(BABYSTEP_ALWAYS_AVAILABLE) || printer_busy()))
|
|
|
|
|
2018-02-23 00:42:42 -06:00
|
|
|
/**
|
|
|
|
* Workspace offsets
|
|
|
|
*/
|
2018-11-03 03:39:15 -05:00
|
|
|
#if HAS_HOME_OFFSET || HAS_POSITION_SHIFT
|
2017-09-07 22:33:16 -05:00
|
|
|
#if HAS_HOME_OFFSET
|
2019-09-29 04:25:39 -05:00
|
|
|
extern xyz_pos_t home_offset;
|
2017-09-07 22:33:16 -05:00
|
|
|
#endif
|
|
|
|
#if HAS_POSITION_SHIFT
|
2019-09-29 04:25:39 -05:00
|
|
|
extern xyz_pos_t position_shift;
|
2017-09-07 22:33:16 -05:00
|
|
|
#endif
|
2018-02-23 00:42:42 -06:00
|
|
|
#if HAS_HOME_OFFSET && HAS_POSITION_SHIFT
|
2019-09-29 04:25:39 -05:00
|
|
|
extern xyz_pos_t workspace_offset;
|
|
|
|
#define _WS workspace_offset
|
2018-02-23 00:42:42 -06:00
|
|
|
#elif HAS_HOME_OFFSET
|
2019-09-29 04:25:39 -05:00
|
|
|
#define _WS home_offset
|
2018-11-03 03:39:15 -05:00
|
|
|
#else
|
2019-09-29 04:25:39 -05:00
|
|
|
#define _WS position_shift
|
2018-02-23 00:42:42 -06:00
|
|
|
#endif
|
2019-09-29 04:25:39 -05:00
|
|
|
#define NATIVE_TO_LOGICAL(POS, AXIS) ((POS) + _WS[AXIS])
|
|
|
|
#define LOGICAL_TO_NATIVE(POS, AXIS) ((POS) - _WS[AXIS])
|
|
|
|
FORCE_INLINE void toLogical(xy_pos_t &raw) { raw += _WS; }
|
|
|
|
FORCE_INLINE void toLogical(xyz_pos_t &raw) { raw += _WS; }
|
|
|
|
FORCE_INLINE void toLogical(xyze_pos_t &raw) { raw += _WS; }
|
|
|
|
FORCE_INLINE void toNative(xy_pos_t &raw) { raw -= _WS; }
|
|
|
|
FORCE_INLINE void toNative(xyz_pos_t &raw) { raw -= _WS; }
|
|
|
|
FORCE_INLINE void toNative(xyze_pos_t &raw) { raw -= _WS; }
|
2017-09-07 22:33:16 -05:00
|
|
|
#else
|
2018-02-23 00:42:42 -06:00
|
|
|
#define NATIVE_TO_LOGICAL(POS, AXIS) (POS)
|
|
|
|
#define LOGICAL_TO_NATIVE(POS, AXIS) (POS)
|
2019-09-30 21:44:07 -05:00
|
|
|
FORCE_INLINE void toLogical(xy_pos_t&) {}
|
|
|
|
FORCE_INLINE void toLogical(xyz_pos_t&) {}
|
|
|
|
FORCE_INLINE void toLogical(xyze_pos_t&) {}
|
|
|
|
FORCE_INLINE void toNative(xy_pos_t&) {}
|
|
|
|
FORCE_INLINE void toNative(xyz_pos_t&) {}
|
|
|
|
FORCE_INLINE void toNative(xyze_pos_t&) {}
|
2017-09-07 22:33:16 -05:00
|
|
|
#endif
|
2018-02-23 00:42:42 -06:00
|
|
|
#define LOGICAL_X_POSITION(POS) NATIVE_TO_LOGICAL(POS, X_AXIS)
|
|
|
|
#define LOGICAL_Y_POSITION(POS) NATIVE_TO_LOGICAL(POS, Y_AXIS)
|
|
|
|
#define LOGICAL_Z_POSITION(POS) NATIVE_TO_LOGICAL(POS, Z_AXIS)
|
|
|
|
#define RAW_X_POSITION(POS) LOGICAL_TO_NATIVE(POS, X_AXIS)
|
|
|
|
#define RAW_Y_POSITION(POS) LOGICAL_TO_NATIVE(POS, Y_AXIS)
|
|
|
|
#define RAW_Z_POSITION(POS) LOGICAL_TO_NATIVE(POS, Z_AXIS)
|
2017-09-07 22:33:16 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* position_is_reachable family of functions
|
|
|
|
*/
|
|
|
|
#if IS_KINEMATIC // (DELTA or SCARA)
|
2020-01-03 17:46:26 -06:00
|
|
|
|
2018-11-03 03:56:33 -05:00
|
|
|
#if HAS_SCARA_OFFSET
|
2019-09-29 04:25:39 -05:00
|
|
|
extern abc_pos_t scara_home_offset; // A and B angular offsets, Z mm offset
|
2018-11-03 03:56:33 -05:00
|
|
|
#endif
|
|
|
|
|
2018-03-09 21:12:05 -06:00
|
|
|
// Return true if the given point is within the printable area
|
2018-03-13 01:15:22 -05:00
|
|
|
inline bool position_is_reachable(const float &rx, const float &ry, const float inset=0) {
|
2017-09-07 22:33:16 -05:00
|
|
|
#if ENABLED(DELTA)
|
2021-03-03 17:46:32 -06:00
|
|
|
|
2020-02-27 06:16:33 -06:00
|
|
|
return HYPOT2(rx, ry) <= sq(DELTA_PRINTABLE_RADIUS - inset + fslop);
|
2021-03-03 17:46:32 -06:00
|
|
|
|
|
|
|
#elif ENABLED(AXEL_TPARA)
|
|
|
|
|
|
|
|
const float R2 = HYPOT2(rx - TPARA_OFFSET_X, ry - TPARA_OFFSET_Y);
|
|
|
|
return (
|
|
|
|
R2 <= sq(L1 + L2) - inset
|
|
|
|
#if MIDDLE_DEAD_ZONE_R > 0
|
|
|
|
&& R2 >= sq(float(MIDDLE_DEAD_ZONE_R))
|
|
|
|
#endif
|
|
|
|
);
|
|
|
|
|
2017-09-07 22:33:16 -05:00
|
|
|
#elif IS_SCARA
|
2021-03-03 17:46:32 -06:00
|
|
|
|
2018-03-13 01:15:22 -05:00
|
|
|
const float R2 = HYPOT2(rx - SCARA_OFFSET_X, ry - SCARA_OFFSET_Y);
|
|
|
|
return (
|
|
|
|
R2 <= sq(L1 + L2) - inset
|
|
|
|
#if MIDDLE_DEAD_ZONE_R > 0
|
|
|
|
&& R2 >= sq(float(MIDDLE_DEAD_ZONE_R))
|
|
|
|
#endif
|
|
|
|
);
|
2021-03-03 17:46:32 -06:00
|
|
|
|
2017-09-07 22:33:16 -05:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2019-09-29 04:25:39 -05:00
|
|
|
inline bool position_is_reachable(const xy_pos_t &pos, const float inset=0) {
|
|
|
|
return position_is_reachable(pos.x, pos.y, inset);
|
|
|
|
}
|
|
|
|
|
2017-09-07 22:33:16 -05:00
|
|
|
#else // CARTESIAN
|
|
|
|
|
2018-08-21 23:33:55 -05:00
|
|
|
// Return true if the given position is within the machine bounds.
|
2017-11-02 23:59:42 -05:00
|
|
|
inline bool position_is_reachable(const float &rx, const float &ry) {
|
2021-02-25 04:49:34 -06:00
|
|
|
if (!COORDINATE_OKAY(ry, Y_MIN_POS - fslop, Y_MAX_POS + fslop)) return false;
|
2018-08-21 19:12:26 -05:00
|
|
|
#if ENABLED(DUAL_X_CARRIAGE)
|
2018-08-21 23:33:55 -05:00
|
|
|
if (active_extruder)
|
2021-02-25 04:49:34 -06:00
|
|
|
return COORDINATE_OKAY(rx, X2_MIN_POS - fslop, X2_MAX_POS + fslop);
|
2018-08-21 23:33:55 -05:00
|
|
|
else
|
2021-02-25 04:49:34 -06:00
|
|
|
return COORDINATE_OKAY(rx, X1_MIN_POS - fslop, X1_MAX_POS + fslop);
|
2018-08-21 19:12:26 -05:00
|
|
|
#else
|
2021-02-25 04:49:34 -06:00
|
|
|
return COORDINATE_OKAY(rx, X_MIN_POS - fslop, X_MAX_POS + fslop);
|
2018-08-21 19:12:26 -05:00
|
|
|
#endif
|
2017-09-07 22:33:16 -05:00
|
|
|
}
|
2019-09-29 04:25:39 -05:00
|
|
|
inline bool position_is_reachable(const xy_pos_t &pos) { return position_is_reachable(pos.x, pos.y); }
|
2017-09-07 22:33:16 -05:00
|
|
|
|
|
|
|
#endif // CARTESIAN
|
|
|
|
|
2017-09-08 15:35:25 -05:00
|
|
|
/**
|
2019-03-13 00:42:50 -05:00
|
|
|
* Duplication mode
|
2017-09-08 15:35:25 -05:00
|
|
|
*/
|
2019-03-13 00:42:50 -05:00
|
|
|
#if HAS_DUPLICATION_MODE
|
2020-10-16 16:59:55 -05:00
|
|
|
extern bool extruder_duplication_enabled; // Used in Dual X mode 2
|
2017-09-07 22:33:16 -05:00
|
|
|
#endif
|
|
|
|
|
2017-09-08 15:35:25 -05:00
|
|
|
/**
|
|
|
|
* Dual X Carriage
|
|
|
|
*/
|
2017-09-07 22:33:16 -05:00
|
|
|
#if ENABLED(DUAL_X_CARRIAGE)
|
|
|
|
|
2018-03-06 22:35:22 -06:00
|
|
|
enum DualXMode : char {
|
2018-09-17 01:06:22 -05:00
|
|
|
DXC_FULL_CONTROL_MODE,
|
|
|
|
DXC_AUTO_PARK_MODE,
|
|
|
|
DXC_DUPLICATION_MODE,
|
2019-03-15 22:46:27 -05:00
|
|
|
DXC_MIRRORED_MODE
|
2017-11-19 15:11:11 -06:00
|
|
|
};
|
|
|
|
|
2017-09-07 22:33:16 -05:00
|
|
|
extern DualXMode dual_x_carriage_mode;
|
2020-10-16 16:59:55 -05:00
|
|
|
extern float inactive_extruder_x, // Used in mode 0 & 1
|
2019-03-15 22:46:27 -05:00
|
|
|
duplicate_extruder_x_offset; // Used in mode 2 & 3
|
2019-09-29 04:25:39 -05:00
|
|
|
extern xyz_pos_t raised_parked_position; // Used in mode 1
|
2019-03-15 22:46:27 -05:00
|
|
|
extern bool active_extruder_parked; // Used in mode 1, 2 & 3
|
|
|
|
extern millis_t delayed_move_time; // Used in mode 1
|
|
|
|
extern int16_t duplicate_extruder_temp_offset; // Used in mode 2 & 3
|
2020-10-16 16:59:55 -05:00
|
|
|
extern bool idex_mirrored_mode; // Used in mode 3
|
2017-09-07 22:33:16 -05:00
|
|
|
|
2020-10-16 16:59:55 -05:00
|
|
|
FORCE_INLINE bool idex_is_duplicating() { return dual_x_carriage_mode >= DXC_DUPLICATION_MODE; }
|
2018-09-17 01:06:22 -05:00
|
|
|
|
2020-07-14 17:58:37 -05:00
|
|
|
float x_home_pos(const uint8_t extruder);
|
2017-09-07 22:33:16 -05:00
|
|
|
|
|
|
|
FORCE_INLINE int x_home_dir(const uint8_t extruder) { return extruder ? X2_HOME_DIR : X_HOME_DIR; }
|
|
|
|
|
2020-10-16 16:59:55 -05:00
|
|
|
void set_duplication_enabled(const bool dupe, const int8_t tool_index=-1);
|
|
|
|
void idex_set_mirrored_mode(const bool mirr);
|
|
|
|
void idex_set_parked(const bool park=true);
|
|
|
|
|
2020-03-07 22:20:41 -06:00
|
|
|
#else
|
2017-11-19 15:11:11 -06:00
|
|
|
|
2020-03-07 22:20:41 -06:00
|
|
|
#if ENABLED(MULTI_NOZZLE_DUPLICATION)
|
2021-01-03 22:23:13 -06:00
|
|
|
extern uint8_t duplication_e_mask;
|
2020-03-07 22:20:41 -06:00
|
|
|
enum DualXMode : char { DXC_DUPLICATION_MODE = 2 };
|
2020-10-16 16:59:55 -05:00
|
|
|
FORCE_INLINE void set_duplication_enabled(const bool dupe) { extruder_duplication_enabled = dupe; }
|
2020-03-07 22:20:41 -06:00
|
|
|
#endif
|
|
|
|
|
2021-02-16 21:13:53 -06:00
|
|
|
FORCE_INLINE int x_home_dir(const uint8_t) { return X_HOME_DIR; }
|
2017-11-19 15:11:11 -06:00
|
|
|
|
|
|
|
#endif
|
2017-09-07 22:33:16 -05:00
|
|
|
|
2017-09-08 15:35:25 -05:00
|
|
|
#if HAS_M206_COMMAND
|
|
|
|
void set_home_offset(const AxisEnum axis, const float v);
|
|
|
|
#endif
|
2020-07-27 20:15:14 -05:00
|
|
|
|
|
|
|
#if USE_SENSORLESS
|
|
|
|
struct sensorless_t;
|
|
|
|
sensorless_t start_sensorless_homing_per_axis(const AxisEnum axis);
|
|
|
|
void end_sensorless_homing_per_axis(const AxisEnum axis, sensorless_t enable_stealth);
|
|
|
|
#endif
|