2017-09-08 20:35:25 +00:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2019-02-12 21:06:53 +00:00
|
|
|
* Copyright (C) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2017-09-08 20:35:25 +00: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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* delta.cpp
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "../inc/MarlinConfig.h"
|
|
|
|
|
|
|
|
#if ENABLED(DELTA)
|
|
|
|
|
|
|
|
#include "delta.h"
|
|
|
|
#include "motion.h"
|
|
|
|
|
|
|
|
// For homing:
|
2018-05-12 06:38:02 +00:00
|
|
|
#include "planner.h"
|
2017-09-08 20:35:25 +00:00
|
|
|
#include "endstops.h"
|
|
|
|
#include "../lcd/ultralcd.h"
|
|
|
|
#include "../Marlin.h"
|
|
|
|
|
2019-02-04 11:25:50 +00:00
|
|
|
#if HAS_BED_PROBE
|
|
|
|
#include "probe.h"
|
|
|
|
#endif
|
|
|
|
|
2018-02-08 10:20:44 +00:00
|
|
|
#if ENABLED(SENSORLESS_HOMING)
|
|
|
|
#include "../feature/tmc_util.h"
|
2019-02-04 09:41:55 +00:00
|
|
|
#include "stepper_indirection.h"
|
2018-02-08 10:20:44 +00:00
|
|
|
#endif
|
|
|
|
|
2017-09-08 20:35:25 +00:00
|
|
|
// Initialized by settings.load()
|
2017-11-09 04:10:08 +00:00
|
|
|
float delta_height,
|
|
|
|
delta_endstop_adj[ABC] = { 0 },
|
2017-09-08 20:35:25 +00:00
|
|
|
delta_radius,
|
|
|
|
delta_diagonal_rod,
|
|
|
|
delta_segments_per_second,
|
|
|
|
delta_calibration_radius,
|
2017-09-24 07:18:15 +00:00
|
|
|
delta_tower_angle_trim[ABC];
|
2017-09-08 20:35:25 +00:00
|
|
|
|
|
|
|
float delta_tower[ABC][2],
|
|
|
|
delta_diagonal_rod_2_tower[ABC],
|
|
|
|
delta_clip_start_height = Z_MAX_POS;
|
|
|
|
|
|
|
|
float delta_safe_distance_from_top();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Recalculate factors used for delta kinematics whenever
|
|
|
|
* settings have been changed (e.g., by M665).
|
|
|
|
*/
|
2017-11-08 09:07:17 +00:00
|
|
|
void recalc_delta_settings() {
|
2017-09-08 20:35:25 +00:00
|
|
|
const float trt[ABC] = DELTA_RADIUS_TRIM_TOWER,
|
|
|
|
drt[ABC] = DELTA_DIAGONAL_ROD_TRIM_TOWER;
|
2017-11-08 09:07:17 +00:00
|
|
|
delta_tower[A_AXIS][X_AXIS] = cos(RADIANS(210 + delta_tower_angle_trim[A_AXIS])) * (delta_radius + trt[A_AXIS]); // front left tower
|
|
|
|
delta_tower[A_AXIS][Y_AXIS] = sin(RADIANS(210 + delta_tower_angle_trim[A_AXIS])) * (delta_radius + trt[A_AXIS]);
|
|
|
|
delta_tower[B_AXIS][X_AXIS] = cos(RADIANS(330 + delta_tower_angle_trim[B_AXIS])) * (delta_radius + trt[B_AXIS]); // front right tower
|
|
|
|
delta_tower[B_AXIS][Y_AXIS] = sin(RADIANS(330 + delta_tower_angle_trim[B_AXIS])) * (delta_radius + trt[B_AXIS]);
|
|
|
|
delta_tower[C_AXIS][X_AXIS] = cos(RADIANS( 90 + delta_tower_angle_trim[C_AXIS])) * (delta_radius + trt[C_AXIS]); // back middle tower
|
|
|
|
delta_tower[C_AXIS][Y_AXIS] = sin(RADIANS( 90 + delta_tower_angle_trim[C_AXIS])) * (delta_radius + trt[C_AXIS]);
|
|
|
|
delta_diagonal_rod_2_tower[A_AXIS] = sq(delta_diagonal_rod + drt[A_AXIS]);
|
|
|
|
delta_diagonal_rod_2_tower[B_AXIS] = sq(delta_diagonal_rod + drt[B_AXIS]);
|
|
|
|
delta_diagonal_rod_2_tower[C_AXIS] = sq(delta_diagonal_rod + drt[C_AXIS]);
|
|
|
|
update_software_endstops(Z_AXIS);
|
2018-10-31 22:07:52 +00:00
|
|
|
set_all_unhomed();
|
2017-09-08 20:35:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delta Inverse Kinematics
|
|
|
|
*
|
2017-11-03 04:59:42 +00:00
|
|
|
* Calculate the tower positions for a given machine
|
2017-09-08 20:35:25 +00:00
|
|
|
* position, storing the result in the delta[] array.
|
|
|
|
*
|
|
|
|
* This is an expensive calculation, requiring 3 square
|
|
|
|
* roots per segmented linear move, and strains the limits
|
|
|
|
* of a Mega2560 with a Graphical Display.
|
|
|
|
*
|
|
|
|
* Suggested optimizations include:
|
|
|
|
*
|
|
|
|
* - Disable the home_offset (M206) and/or position_shift (G92)
|
|
|
|
* features to remove up to 12 float additions.
|
|
|
|
*/
|
|
|
|
|
2018-03-16 05:46:42 +00:00
|
|
|
#define DELTA_DEBUG(VAR) do { \
|
|
|
|
SERIAL_ECHOPAIR("cartesian X:", VAR[X_AXIS]); \
|
|
|
|
SERIAL_ECHOPAIR(" Y:", VAR[Y_AXIS]); \
|
|
|
|
SERIAL_ECHOLNPAIR(" Z:", VAR[Z_AXIS]); \
|
2017-09-08 20:35:25 +00:00
|
|
|
SERIAL_ECHOPAIR("delta A:", delta[A_AXIS]); \
|
|
|
|
SERIAL_ECHOPAIR(" B:", delta[B_AXIS]); \
|
|
|
|
SERIAL_ECHOLNPAIR(" C:", delta[C_AXIS]); \
|
|
|
|
}while(0)
|
|
|
|
|
2018-09-17 02:24:15 +00:00
|
|
|
void inverse_kinematics(const float (&raw)[XYZ]) {
|
2018-08-25 02:26:29 +00:00
|
|
|
#if HAS_HOTEND_OFFSET
|
2018-03-16 05:46:42 +00:00
|
|
|
// Delta hotend offsets must be applied in Cartesian space with no "spoofing"
|
|
|
|
const float pos[XYZ] = {
|
|
|
|
raw[X_AXIS] - hotend_offset[X_AXIS][active_extruder],
|
|
|
|
raw[Y_AXIS] - hotend_offset[Y_AXIS][active_extruder],
|
|
|
|
raw[Z_AXIS]
|
|
|
|
};
|
|
|
|
DELTA_IK(pos);
|
|
|
|
//DELTA_DEBUG(pos);
|
|
|
|
#else
|
|
|
|
DELTA_IK(raw);
|
|
|
|
//DELTA_DEBUG(raw);
|
|
|
|
#endif
|
2017-09-08 20:35:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Calculate the highest Z position where the
|
|
|
|
* effector has the full range of XY motion.
|
|
|
|
*/
|
|
|
|
float delta_safe_distance_from_top() {
|
2017-11-03 04:59:42 +00:00
|
|
|
float cartesian[XYZ] = { 0, 0, 0 };
|
2017-09-08 20:35:25 +00:00
|
|
|
inverse_kinematics(cartesian);
|
2018-03-16 05:46:42 +00:00
|
|
|
float centered_extent = delta[A_AXIS];
|
2017-11-03 04:59:42 +00:00
|
|
|
cartesian[Y_AXIS] = DELTA_PRINTABLE_RADIUS;
|
2017-09-08 20:35:25 +00:00
|
|
|
inverse_kinematics(cartesian);
|
2018-05-13 06:10:34 +00:00
|
|
|
return ABS(centered_extent - delta[A_AXIS]);
|
2017-09-08 20:35:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delta Forward Kinematics
|
|
|
|
*
|
|
|
|
* See the Wikipedia article "Trilateration"
|
|
|
|
* https://en.wikipedia.org/wiki/Trilateration
|
|
|
|
*
|
|
|
|
* Establish a new coordinate system in the plane of the
|
|
|
|
* three carriage points. This system has its origin at
|
|
|
|
* tower1, with tower2 on the X axis. Tower3 is in the X-Y
|
|
|
|
* plane with a Z component of zero.
|
|
|
|
* We will define unit vectors in this coordinate system
|
|
|
|
* in our original coordinate system. Then when we calculate
|
|
|
|
* the Xnew, Ynew and Znew values, we can translate back into
|
|
|
|
* the original system by moving along those unit vectors
|
|
|
|
* by the corresponding values.
|
|
|
|
*
|
|
|
|
* Variable names matched to Marlin, c-version, and avoid the
|
|
|
|
* use of any vector library.
|
|
|
|
*
|
|
|
|
* by Andreas Hardtung 2016-06-07
|
|
|
|
* based on a Java function from "Delta Robot Kinematics V3"
|
|
|
|
* by Steve Graves
|
|
|
|
*
|
|
|
|
* The result is stored in the cartes[] array.
|
|
|
|
*/
|
2018-07-05 03:28:34 +00:00
|
|
|
void forward_kinematics_DELTA(const float &z1, const float &z2, const float &z3) {
|
2017-09-08 20:35:25 +00:00
|
|
|
// Create a vector in old coordinates along x axis of new coordinate
|
2018-07-07 01:41:08 +00:00
|
|
|
const float p12[3] = { delta_tower[B_AXIS][X_AXIS] - delta_tower[A_AXIS][X_AXIS], delta_tower[B_AXIS][Y_AXIS] - delta_tower[A_AXIS][Y_AXIS], z2 - z1 },
|
2017-09-08 20:35:25 +00:00
|
|
|
|
2018-07-05 03:28:34 +00:00
|
|
|
// Get the reciprocal of Magnitude of vector.
|
2018-07-07 01:41:08 +00:00
|
|
|
d2 = sq(p12[0]) + sq(p12[1]) + sq(p12[2]), inv_d = RSQRT(d2),
|
2017-09-08 20:35:25 +00:00
|
|
|
|
2018-07-05 03:28:34 +00:00
|
|
|
// Create unit vector by multiplying by the inverse of the magnitude.
|
2018-07-07 01:41:08 +00:00
|
|
|
ex[3] = { p12[0] * inv_d, p12[1] * inv_d, p12[2] * inv_d },
|
2017-09-08 20:35:25 +00:00
|
|
|
|
|
|
|
// Get the vector from the origin of the new system to the third point.
|
2018-07-07 01:41:08 +00:00
|
|
|
p13[3] = { delta_tower[C_AXIS][X_AXIS] - delta_tower[A_AXIS][X_AXIS], delta_tower[C_AXIS][Y_AXIS] - delta_tower[A_AXIS][Y_AXIS], z3 - z1 },
|
2017-09-08 20:35:25 +00:00
|
|
|
|
|
|
|
// Use the dot product to find the component of this vector on the X axis.
|
2018-07-07 01:41:08 +00:00
|
|
|
i = ex[0] * p13[0] + ex[1] * p13[1] + ex[2] * p13[2],
|
2017-09-08 20:35:25 +00:00
|
|
|
|
|
|
|
// Create a vector along the x axis that represents the x component of p13.
|
2018-07-07 01:41:08 +00:00
|
|
|
iex[3] = { ex[0] * i, ex[1] * i, ex[2] * i };
|
2017-09-08 20:35:25 +00:00
|
|
|
|
|
|
|
// Subtract the X component from the original vector leaving only Y. We use the
|
|
|
|
// variable that will be the unit vector after we scale it.
|
|
|
|
float ey[3] = { p13[0] - iex[0], p13[1] - iex[1], p13[2] - iex[2] };
|
|
|
|
|
2018-07-05 03:28:34 +00:00
|
|
|
// The magnitude and the inverse of the magnitude of Y component
|
|
|
|
const float j2 = sq(ey[0]) + sq(ey[1]) + sq(ey[2]), inv_j = RSQRT(j2);
|
2017-09-08 20:35:25 +00:00
|
|
|
|
|
|
|
// Convert to a unit vector
|
2018-07-05 03:28:34 +00:00
|
|
|
ey[0] *= inv_j; ey[1] *= inv_j; ey[2] *= inv_j;
|
2017-09-08 20:35:25 +00:00
|
|
|
|
|
|
|
// The cross product of the unit x and y is the unit z
|
|
|
|
// float[] ez = vectorCrossProd(ex, ey);
|
2018-07-05 03:28:34 +00:00
|
|
|
const float ez[3] = {
|
2017-09-08 20:35:25 +00:00
|
|
|
ex[1] * ey[2] - ex[2] * ey[1],
|
|
|
|
ex[2] * ey[0] - ex[0] * ey[2],
|
|
|
|
ex[0] * ey[1] - ex[1] * ey[0]
|
2018-07-07 01:41:08 +00:00
|
|
|
},
|
2017-09-08 20:35:25 +00:00
|
|
|
|
|
|
|
// We now have the d, i and j values defined in Wikipedia.
|
|
|
|
// Plug them into the equations defined in Wikipedia for Xnew, Ynew and Znew
|
2018-07-07 01:41:08 +00:00
|
|
|
Xnew = (delta_diagonal_rod_2_tower[A_AXIS] - delta_diagonal_rod_2_tower[B_AXIS] + d2) * inv_d * 0.5,
|
|
|
|
Ynew = ((delta_diagonal_rod_2_tower[A_AXIS] - delta_diagonal_rod_2_tower[C_AXIS] + sq(i) + j2) * 0.5 - i * Xnew) * inv_j,
|
|
|
|
Znew = SQRT(delta_diagonal_rod_2_tower[A_AXIS] - HYPOT2(Xnew, Ynew));
|
2017-09-08 20:35:25 +00:00
|
|
|
|
|
|
|
// Start from the origin of the old coordinates and add vectors in the
|
|
|
|
// old coords that represent the Xnew, Ynew and Znew to find the point
|
|
|
|
// in the old system.
|
|
|
|
cartes[X_AXIS] = delta_tower[A_AXIS][X_AXIS] + ex[0] * Xnew + ey[0] * Ynew - ez[0] * Znew;
|
|
|
|
cartes[Y_AXIS] = delta_tower[A_AXIS][Y_AXIS] + ex[1] * Xnew + ey[1] * Ynew - ez[1] * Znew;
|
2018-07-05 03:28:34 +00:00
|
|
|
cartes[Z_AXIS] = z1 + ex[2] * Xnew + ey[2] * Ynew - ez[2] * Znew;
|
2017-09-08 20:35:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A delta can only safely home all axes at the same time
|
|
|
|
* This is like quick_home_xy() but for 3 towers.
|
|
|
|
*/
|
2018-07-01 02:54:07 +00:00
|
|
|
void home_delta() {
|
2017-09-08 20:35:25 +00:00
|
|
|
#if ENABLED(DEBUG_LEVELING_FEATURE)
|
|
|
|
if (DEBUGGING(LEVELING)) DEBUG_POS(">>> home_delta", current_position);
|
|
|
|
#endif
|
|
|
|
// Init the current position of all carriages to 0,0,0
|
|
|
|
ZERO(current_position);
|
2018-09-17 02:24:15 +00:00
|
|
|
ZERO(destination);
|
2017-09-08 20:35:25 +00:00
|
|
|
sync_plan_position();
|
|
|
|
|
2018-02-08 10:20:44 +00:00
|
|
|
// Disable stealthChop if used. Enable diag1 pin on driver.
|
|
|
|
#if ENABLED(SENSORLESS_HOMING)
|
2019-02-02 00:09:01 +00:00
|
|
|
sensorless_t stealth_states { false, false, false, false, false, false, false };
|
2018-12-07 21:34:21 +00:00
|
|
|
stealth_states.x = tmc_enable_stallguard(stepperX);
|
|
|
|
stealth_states.y = tmc_enable_stallguard(stepperY);
|
|
|
|
stealth_states.z = tmc_enable_stallguard(stepperZ);
|
2018-02-08 10:20:44 +00:00
|
|
|
#endif
|
|
|
|
|
2017-09-08 20:35:25 +00:00
|
|
|
// Move all carriages together linearly until an endstop is hit.
|
2019-02-04 11:25:50 +00:00
|
|
|
destination[Z_AXIS] = (delta_height
|
|
|
|
#if HAS_BED_PROBE
|
|
|
|
- zprobe_zoffset
|
|
|
|
#endif
|
|
|
|
+ 10);
|
2018-09-17 02:24:15 +00:00
|
|
|
buffer_line_to_destination(homing_feedrate(X_AXIS));
|
2018-05-12 06:38:02 +00:00
|
|
|
planner.synchronize();
|
2017-09-08 20:35:25 +00:00
|
|
|
|
2018-03-29 02:27:34 +00:00
|
|
|
// Re-enable stealthChop if used. Disable diag1 pin on driver.
|
|
|
|
#if ENABLED(SENSORLESS_HOMING)
|
2018-12-07 21:34:21 +00:00
|
|
|
tmc_disable_stallguard(stepperX, stealth_states.x);
|
|
|
|
tmc_disable_stallguard(stepperY, stealth_states.y);
|
|
|
|
tmc_disable_stallguard(stepperZ, stealth_states.z);
|
2018-03-29 02:27:34 +00:00
|
|
|
#endif
|
|
|
|
|
2018-07-01 02:54:07 +00:00
|
|
|
endstops.validate_homing_move();
|
2017-09-08 20:35:25 +00:00
|
|
|
|
|
|
|
// At least one carriage has reached the top.
|
|
|
|
// Now re-home each carriage separately.
|
2018-06-30 23:13:13 +00:00
|
|
|
homeaxis(A_AXIS);
|
|
|
|
homeaxis(B_AXIS);
|
|
|
|
homeaxis(C_AXIS);
|
2017-09-08 20:35:25 +00:00
|
|
|
|
|
|
|
// Set all carriages to their home positions
|
|
|
|
// Do this here all at once for Delta, because
|
|
|
|
// XYZ isn't ABC. Applying this per-tower would
|
|
|
|
// give the impression that they are the same.
|
|
|
|
LOOP_XYZ(i) set_axis_is_at_home((AxisEnum)i);
|
|
|
|
|
2018-09-17 02:24:15 +00:00
|
|
|
sync_plan_position();
|
2017-09-08 20:35:25 +00:00
|
|
|
|
|
|
|
#if ENABLED(DEBUG_LEVELING_FEATURE)
|
|
|
|
if (DEBUGGING(LEVELING)) DEBUG_POS("<<< home_delta", current_position);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // DELTA
|