mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-23 12:04:19 +00:00
parent
ba4c32eec5
commit
836b0bbeee
@ -114,9 +114,8 @@ public:
|
||||
;
|
||||
}
|
||||
|
||||
// Support functions, which may be embedded in the class later
|
||||
#if IS_CARTESIAN && DISABLED(SEGMENT_LEVELED_MOVES)
|
||||
void line_to_destination(const float fr_mm_s, uint8_t x_splits=0xFF, uint8_t y_splits=0xFF);
|
||||
static void line_to_destination(const float fr_mm_s, uint8_t x_splits=0xFF, uint8_t y_splits=0xFF);
|
||||
#endif
|
||||
};
|
||||
|
||||
|
@ -780,7 +780,7 @@ float soft_endstop_min[XYZ] = { X_MIN_BED, Y_MIN_BED, Z_MIN_POS },
|
||||
*/
|
||||
if (current_position[X_AXIS] != destination[X_AXIS] || current_position[Y_AXIS] != destination[Y_AXIS]) {
|
||||
#if ENABLED(MESH_BED_LEVELING)
|
||||
mesh_line_to_destination(MMS_SCALED(feedrate_mm_s));
|
||||
mbl.line_to_destination(MMS_SCALED(feedrate_mm_s));
|
||||
#elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
|
||||
bilinear_line_to_destination(MMS_SCALED(feedrate_mm_s));
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user