Only call mesh_buffer_line when MBL is active
This commit is contained in:
parent
799a31cd30
commit
f4a69281fc
@ -7842,11 +7842,6 @@ void clamp_to_software_endstops(float target[3]) {
|
|||||||
|
|
||||||
// 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_buffer_line(float x, float y, float z, const float e, float fr_mm_s, const uint8_t& extruder, uint8_t x_splits = 0xff, uint8_t y_splits = 0xff) {
|
void mesh_buffer_line(float x, float y, float z, const float e, float fr_mm_s, const uint8_t& extruder, uint8_t x_splits = 0xff, uint8_t y_splits = 0xff) {
|
||||||
if (!mbl.active()) {
|
|
||||||
planner.buffer_line(x, y, z, e, fr_mm_s, extruder);
|
|
||||||
set_current_to_destination();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
int pcx = mbl.cell_index_x(RAW_CURRENT_POSITION(X_AXIS)),
|
int pcx = mbl.cell_index_x(RAW_CURRENT_POSITION(X_AXIS)),
|
||||||
pcy = mbl.cell_index_y(RAW_CURRENT_POSITION(Y_AXIS)),
|
pcy = mbl.cell_index_y(RAW_CURRENT_POSITION(Y_AXIS)),
|
||||||
cx = mbl.cell_index_x(RAW_POSITION(x, X_AXIS)),
|
cx = mbl.cell_index_x(RAW_POSITION(x, X_AXIS)),
|
||||||
@ -8007,11 +8002,13 @@ void mesh_buffer_line(float x, float y, float z, const float e, float fr_mm_s, c
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
#if ENABLED(MESH_BED_LEVELING)
|
#if ENABLED(MESH_BED_LEVELING)
|
||||||
|
if (mbl.active()) {
|
||||||
mesh_buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], MMM_TO_MMS_SCALED(feedrate_mm_m), active_extruder);
|
mesh_buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], MMM_TO_MMS_SCALED(feedrate_mm_m), active_extruder);
|
||||||
return false;
|
return false;
|
||||||
#else
|
}
|
||||||
line_to_destination(MMM_SCALED(feedrate_mm_m));
|
else
|
||||||
#endif
|
#endif
|
||||||
|
line_to_destination(MMM_SCALED(feedrate_mm_m));
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user