[2.0.x] G33 probe error handling
This commit is contained in:
@@ -30,7 +30,6 @@
|
||||
#if ENABLED(DELTA)
|
||||
|
||||
#include "../../module/delta.h"
|
||||
|
||||
/**
|
||||
* M665: Set delta configurations
|
||||
*
|
||||
@@ -44,10 +43,7 @@
|
||||
* Z = Rotate A and B by this angle
|
||||
*/
|
||||
void GcodeSuite::M665() {
|
||||
if (parser.seen('H')) {
|
||||
delta_height = parser.value_linear_units();
|
||||
update_software_endstops(Z_AXIS);
|
||||
}
|
||||
if (parser.seen('H')) delta_height = parser.value_linear_units();
|
||||
if (parser.seen('L')) delta_diagonal_rod = parser.value_linear_units();
|
||||
if (parser.seen('R')) delta_radius = parser.value_linear_units();
|
||||
if (parser.seen('S')) delta_segments_per_second = parser.value_float();
|
||||
|
||||
Reference in New Issue
Block a user