Include sync_plan_position_delta for SCARA also
This commit is contained in:
parent
18bb6be80e
commit
1c7391717e
@ -1034,7 +1034,7 @@ inline void line_to_destination() {
|
|||||||
inline void sync_plan_position() {
|
inline void sync_plan_position() {
|
||||||
plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]);
|
plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]);
|
||||||
}
|
}
|
||||||
#ifdef DELTA
|
#if defined(DELTA) || defined(SCARA)
|
||||||
inline void sync_plan_position_delta() {
|
inline void sync_plan_position_delta() {
|
||||||
calculate_delta(current_position);
|
calculate_delta(current_position);
|
||||||
plan_set_position(delta[X_AXIS], delta[Y_AXIS], delta[Z_AXIS], current_position[E_AXIS]);
|
plan_set_position(delta[X_AXIS], delta[Y_AXIS], delta[Z_AXIS], current_position[E_AXIS]);
|
||||||
@ -2177,8 +2177,7 @@ inline void gcode_G28() {
|
|||||||
bool do_topography_map = verbose_level > 2 || code_seen('T') || code_seen('t');
|
bool do_topography_map = verbose_level > 2 || code_seen('T') || code_seen('t');
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (verbose_level > 0)
|
if (verbose_level > 0) {
|
||||||
{
|
|
||||||
SERIAL_PROTOCOLPGM("G29 Auto Bed Leveling\n");
|
SERIAL_PROTOCOLPGM("G29 Auto Bed Leveling\n");
|
||||||
if (dryrun) SERIAL_ECHOLN("Running in DRY-RUN mode");
|
if (dryrun) SERIAL_ECHOLN("Running in DRY-RUN mode");
|
||||||
}
|
}
|
||||||
@ -2253,7 +2252,6 @@ inline void gcode_G28() {
|
|||||||
current_position[Y_AXIS] = uncorrected_position.y;
|
current_position[Y_AXIS] = uncorrected_position.y;
|
||||||
current_position[Z_AXIS] = uncorrected_position.z;
|
current_position[Z_AXIS] = uncorrected_position.z;
|
||||||
sync_plan_position();
|
sync_plan_position();
|
||||||
|
|
||||||
#endif // !DELTA
|
#endif // !DELTA
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2264,8 +2262,8 @@ inline void gcode_G28() {
|
|||||||
#ifdef AUTO_BED_LEVELING_GRID
|
#ifdef AUTO_BED_LEVELING_GRID
|
||||||
|
|
||||||
// probe at the points of a lattice grid
|
// probe at the points of a lattice grid
|
||||||
const int xGridSpacing = (right_probe_bed_position - left_probe_bed_position) / (auto_bed_leveling_grid_points-1);
|
const int xGridSpacing = (right_probe_bed_position - left_probe_bed_position) / (auto_bed_leveling_grid_points - 1),
|
||||||
const int yGridSpacing = (back_probe_bed_position - front_probe_bed_position) / (auto_bed_leveling_grid_points-1);
|
yGridSpacing = (back_probe_bed_position - front_probe_bed_position) / (auto_bed_leveling_grid_points - 1);
|
||||||
|
|
||||||
#ifdef DELTA
|
#ifdef DELTA
|
||||||
delta_grid_spacing[0] = xGridSpacing;
|
delta_grid_spacing[0] = xGridSpacing;
|
||||||
@ -5255,19 +5253,18 @@ void clamp_to_software_endstops(float target[3])
|
|||||||
}
|
}
|
||||||
|
|
||||||
#ifdef DELTA
|
#ifdef DELTA
|
||||||
void recalc_delta_settings(float radius, float diagonal_rod)
|
|
||||||
{
|
|
||||||
delta_tower1_x= -SIN_60*radius; // front left tower
|
|
||||||
delta_tower1_y= -COS_60*radius;
|
|
||||||
delta_tower2_x= SIN_60*radius; // front right tower
|
|
||||||
delta_tower2_y= -COS_60*radius;
|
|
||||||
delta_tower3_x= 0.0; // back middle tower
|
|
||||||
delta_tower3_y= radius;
|
|
||||||
delta_diagonal_rod_2= sq(diagonal_rod);
|
|
||||||
}
|
|
||||||
|
|
||||||
void calculate_delta(float cartesian[3])
|
void recalc_delta_settings(float radius, float diagonal_rod) {
|
||||||
{
|
delta_tower1_x = -SIN_60 * radius; // front left tower
|
||||||
|
delta_tower1_y = -COS_60 * radius;
|
||||||
|
delta_tower2_x = SIN_60 * radius; // front right tower
|
||||||
|
delta_tower2_y = -COS_60 * radius;
|
||||||
|
delta_tower3_x = 0.0; // back middle tower
|
||||||
|
delta_tower3_y = radius;
|
||||||
|
delta_diagonal_rod_2 = sq(diagonal_rod);
|
||||||
|
}
|
||||||
|
|
||||||
|
void calculate_delta(float cartesian[3]) {
|
||||||
delta[X_AXIS] = sqrt(delta_diagonal_rod_2
|
delta[X_AXIS] = sqrt(delta_diagonal_rod_2
|
||||||
- sq(delta_tower1_x-cartesian[X_AXIS])
|
- sq(delta_tower1_x-cartesian[X_AXIS])
|
||||||
- sq(delta_tower1_y-cartesian[Y_AXIS])
|
- sq(delta_tower1_y-cartesian[Y_AXIS])
|
||||||
@ -5289,30 +5286,28 @@ void calculate_delta(float cartesian[3])
|
|||||||
SERIAL_ECHOPGM(" y="); SERIAL_ECHO(delta[Y_AXIS]);
|
SERIAL_ECHOPGM(" y="); SERIAL_ECHO(delta[Y_AXIS]);
|
||||||
SERIAL_ECHOPGM(" z="); SERIAL_ECHOLN(delta[Z_AXIS]);
|
SERIAL_ECHOPGM(" z="); SERIAL_ECHOLN(delta[Z_AXIS]);
|
||||||
*/
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef ENABLE_AUTO_BED_LEVELING
|
#ifdef ENABLE_AUTO_BED_LEVELING
|
||||||
// Adjust print surface height by linear interpolation over the bed_level array.
|
|
||||||
int delta_grid_spacing[2] = { 0, 0 };
|
// Adjust print surface height by linear interpolation over the bed_level array.
|
||||||
void adjust_delta(float cartesian[3])
|
int delta_grid_spacing[2] = { 0, 0 };
|
||||||
{
|
void adjust_delta(float cartesian[3]) {
|
||||||
if (delta_grid_spacing[0] == 0 || delta_grid_spacing[1] == 0)
|
if (delta_grid_spacing[0] == 0 || delta_grid_spacing[1] == 0) return; // G29 not done!
|
||||||
return; // G29 not done
|
|
||||||
|
|
||||||
int half = (AUTO_BED_LEVELING_GRID_POINTS - 1) / 2;
|
int half = (AUTO_BED_LEVELING_GRID_POINTS - 1) / 2;
|
||||||
float grid_x = max(0.001-half, min(half-0.001, cartesian[X_AXIS] / delta_grid_spacing[0]));
|
float h1 = 0.001 - half, h2 = half - 0.001,
|
||||||
float grid_y = max(0.001-half, min(half-0.001, cartesian[Y_AXIS] / delta_grid_spacing[1]));
|
grid_x = max(h1, min(h2, cartesian[X_AXIS] / delta_grid_spacing[0])),
|
||||||
int floor_x = floor(grid_x);
|
grid_y = max(h1, min(h2, cartesian[Y_AXIS] / delta_grid_spacing[1]));
|
||||||
int floor_y = floor(grid_y);
|
int floor_x = floor(grid_x), floor_y = floor(grid_y);
|
||||||
float ratio_x = grid_x - floor_x;
|
float ratio_x = grid_x - floor_x, ratio_y = grid_y - floor_y,
|
||||||
float ratio_y = grid_y - floor_y;
|
z1 = bed_level[floor_x + half][floor_y + half],
|
||||||
float z1 = bed_level[floor_x+half][floor_y+half];
|
z2 = bed_level[floor_x + half][floor_y + half + 1],
|
||||||
float z2 = bed_level[floor_x+half][floor_y+half+1];
|
z3 = bed_level[floor_x + half + 1][floor_y + half],
|
||||||
float z3 = bed_level[floor_x+half+1][floor_y+half];
|
z4 = bed_level[floor_x + half + 1][floor_y + half + 1],
|
||||||
float z4 = bed_level[floor_x+half+1][floor_y+half+1];
|
left = (1 - ratio_y) * z1 + ratio_y * z2,
|
||||||
float left = (1-ratio_y)*z1 + ratio_y*z2;
|
right = (1 - ratio_y) * z3 + ratio_y * z4,
|
||||||
float right = (1-ratio_y)*z3 + ratio_y*z4;
|
offset = (1 - ratio_x) * left + ratio_x * right;
|
||||||
float offset = (1-ratio_x)*left + ratio_x*right;
|
|
||||||
|
|
||||||
delta[X_AXIS] += offset;
|
delta[X_AXIS] += offset;
|
||||||
delta[Y_AXIS] += offset;
|
delta[Y_AXIS] += offset;
|
||||||
@ -5333,26 +5328,24 @@ void adjust_delta(float cartesian[3])
|
|||||||
SERIAL_ECHOPGM(" right="); SERIAL_ECHO(right);
|
SERIAL_ECHOPGM(" right="); SERIAL_ECHO(right);
|
||||||
SERIAL_ECHOPGM(" offset="); SERIAL_ECHOLN(offset);
|
SERIAL_ECHOPGM(" offset="); SERIAL_ECHOLN(offset);
|
||||||
*/
|
*/
|
||||||
}
|
}
|
||||||
#endif //ENABLE_AUTO_BED_LEVELING
|
#endif // ENABLE_AUTO_BED_LEVELING
|
||||||
|
|
||||||
void prepare_move_raw()
|
void prepare_move_raw() {
|
||||||
{
|
|
||||||
previous_millis_cmd = millis();
|
previous_millis_cmd = millis();
|
||||||
calculate_delta(destination);
|
calculate_delta(destination);
|
||||||
plan_buffer_line(delta[X_AXIS], delta[Y_AXIS], delta[Z_AXIS],
|
plan_buffer_line(delta[X_AXIS], delta[Y_AXIS], delta[Z_AXIS], destination[E_AXIS], (feedrate/60)*(feedmultiply/100.0), active_extruder);
|
||||||
destination[E_AXIS], feedrate*feedmultiply/60/100.0,
|
for (int i = 0; i < NUM_AXIS; i++) current_position[i] = destination[i];
|
||||||
active_extruder);
|
|
||||||
for(int8_t i=0; i < NUM_AXIS; i++) {
|
|
||||||
current_position[i] = destination[i];
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
#endif //DELTA
|
#endif // DELTA
|
||||||
|
|
||||||
#if defined(MESH_BED_LEVELING)
|
#if defined(MESH_BED_LEVELING)
|
||||||
#if !defined(MIN)
|
|
||||||
#define MIN(_v1, _v2) (((_v1) < (_v2)) ? (_v1) : (_v2))
|
#if !defined(MIN)
|
||||||
#endif // ! MIN
|
#define MIN(_v1, _v2) (((_v1) < (_v2)) ? (_v1) : (_v2))
|
||||||
|
#endif // ! MIN
|
||||||
|
|
||||||
// This function is used to split lines on mesh borders so each segment is only part of one mesh area
|
// This function is used to split lines on mesh borders so each segment is only part of one mesh area
|
||||||
void mesh_plan_buffer_line(float x, float y, float z, const float e, float feed_rate, const uint8_t &extruder, uint8_t x_splits=0xff, uint8_t y_splits=0xff)
|
void mesh_plan_buffer_line(float x, float y, float z, const float e, float feed_rate, const uint8_t &extruder, uint8_t x_splits=0xff, uint8_t y_splits=0xff)
|
||||||
{
|
{
|
||||||
@ -5424,8 +5417,7 @@ void mesh_plan_buffer_line(float x, float y, float z, const float e, float feed_
|
|||||||
}
|
}
|
||||||
#endif // MESH_BED_LEVELING
|
#endif // MESH_BED_LEVELING
|
||||||
|
|
||||||
void prepare_move()
|
void prepare_move() {
|
||||||
{
|
|
||||||
clamp_to_software_endstops(destination);
|
clamp_to_software_endstops(destination);
|
||||||
previous_millis_cmd = millis();
|
previous_millis_cmd = millis();
|
||||||
|
|
||||||
@ -5539,7 +5531,7 @@ void prepare_move()
|
|||||||
}
|
}
|
||||||
#endif //DUAL_X_CARRIAGE
|
#endif //DUAL_X_CARRIAGE
|
||||||
|
|
||||||
#if ! (defined DELTA || defined SCARA)
|
#if !defined(DELTA) && !defined(SCARA)
|
||||||
// Do not use feedmultiply for E or Z only moves
|
// Do not use feedmultiply for E or Z only moves
|
||||||
if( (current_position[X_AXIS] == destination [X_AXIS]) && (current_position[Y_AXIS] == destination [Y_AXIS])) {
|
if( (current_position[X_AXIS] == destination [X_AXIS]) && (current_position[Y_AXIS] == destination [Y_AXIS])) {
|
||||||
line_to_destination();
|
line_to_destination();
|
||||||
|
Loading…
Reference in New Issue
Block a user