|
|
|
|
8266
|
inline void gcode_M665() {
|
8266
|
inline void gcode_M665() {
|
8267
|
if (parser.seen('H')) {
|
8267
|
if (parser.seen('H')) {
|
8268
|
home_offset[Z_AXIS] = parser.value_linear_units() - DELTA_HEIGHT;
|
8268
|
home_offset[Z_AXIS] = parser.value_linear_units() - DELTA_HEIGHT;
|
8269
|
- current_position[Z_AXIS] += parser.value_linear_units() - DELTA_HEIGHT - home_offset[Z_AXIS];
|
|
|
8270
|
update_software_endstops(Z_AXIS);
|
8269
|
update_software_endstops(Z_AXIS);
|
8271
|
}
|
8270
|
}
|
8272
|
if (parser.seen('L')) delta_diagonal_rod = parser.value_linear_units();
|
8271
|
if (parser.seen('L')) delta_diagonal_rod = parser.value_linear_units();
|