UBL_DELTA => UBL_SEGMENTED

This commit is contained in:
Scott Lahteine
2017-12-09 03:26:48 -06:00
parent bb33a26e62
commit 6e8da93c42
6 changed files with 18 additions and 18 deletions

View File

@@ -189,7 +189,7 @@
void G26_line_to_destination(const float &feed_rate) {
const float save_feedrate = feedrate_mm_s;
feedrate_mm_s = feed_rate; // use specified feed rate
prepare_move_to_destination(); // will ultimately call ubl.line_to_destination_cartesian or ubl.prepare_linear_move_to for UBL_DELTA
prepare_move_to_destination(); // will ultimately call ubl.line_to_destination_cartesian or ubl.prepare_linear_move_to for UBL_SEGMENTED
feedrate_mm_s = save_feedrate; // restore global feed rate
}