Commit 50f59072 authored by MagoKimbra's avatar MagoKimbra

Fix Delta

parent e5722514
...@@ -2136,14 +2136,14 @@ inline void do_blocking_move_to_z(float z) { do_blocking_move_to(current_positio ...@@ -2136,14 +2136,14 @@ inline void do_blocking_move_to_z(float z) { do_blocking_move_to(current_positio
endstop_adj[i] -= high_endstop; endstop_adj[i] -= high_endstop;
} }
sw_endstop_max[Z_AXIS] -= high_endstop; sw_endstop_max[Z_AXIS] -= high_endstop;
}/* }
else if (high_endstop < 0) { else if (high_endstop < 0) {
ECHO_LMV(DB, "Increment Build height by ", abs(high_endstop)); ECHO_LMV(DB, "Increment Build height by ", abs(high_endstop));
for(uint8_t i = 0; i < 3; i++) { for(uint8_t i = 0; i < 3; i++) {
endstop_adj[i] -= high_endstop; endstop_adj[i] -= high_endstop;
} }
sw_endstop_max[Z_AXIS] -= high_endstop; sw_endstop_max[Z_AXIS] -= high_endstop;
}*/ }
set_delta_constants(); set_delta_constants();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment