|
@@ -5674,7 +5674,7 @@ void home_all_axes() { gcode_G28(true); }
|
5674
|
5674
|
float a_sum = 0.0;
|
5675
|
5675
|
LOOP_XYZ(axis) a_sum += delta_tower_angle_trim[axis];
|
5676
|
5676
|
LOOP_XYZ(axis) delta_tower_angle_trim[axis] -= a_sum / 3.0;
|
5677
|
|
-
|
|
5677
|
+
|
5678
|
5678
|
// adjust delta_height and endstops by the max amount
|
5679
|
5679
|
const float z_temp = MAX3(endstop_adj[A_AXIS], endstop_adj[B_AXIS], endstop_adj[C_AXIS]);
|
5680
|
5680
|
home_offset[Z_AXIS] -= z_temp;
|
|
@@ -6369,6 +6369,8 @@ inline void gcode_M17() {
|
6369
|
6369
|
filament_change_beep(max_beep_count, true);
|
6370
|
6370
|
#endif
|
6371
|
6371
|
|
|
6372
|
+ set_destination_to_current();
|
|
6373
|
+
|
6372
|
6374
|
if (load_length != 0) {
|
6373
|
6375
|
#if ENABLED(ULTIPANEL)
|
6374
|
6376
|
// Show "insert filament"
|
|
@@ -8580,7 +8582,7 @@ inline void gcode_M205() {
|
8580
|
8582
|
#endif
|
8581
|
8583
|
LOOP_XYZ(i) {
|
8582
|
8584
|
if (parser.seen(axis_codes[i])) {
|
8583
|
|
- if (parser.value_linear_units() * Z_HOME_DIR <= 0)
|
|
8585
|
+ if (parser.value_linear_units() * Z_HOME_DIR <= 0)
|
8584
|
8586
|
endstop_adj[i] = parser.value_linear_units();
|
8585
|
8587
|
#if ENABLED(DEBUG_LEVELING_FEATURE)
|
8586
|
8588
|
if (DEBUGGING(LEVELING)) {
|