From 1d5677cc3b1c7fa3e0b1b9ee6f980f417d99b646 Mon Sep 17 00:00:00 2001 From: Wurstnase Date: Tue, 12 May 2015 09:36:19 +0200 Subject: [PATCH] add missing Z-bits --- Marlin/stepper.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Marlin/stepper.cpp b/Marlin/stepper.cpp index 508eb3f5f..29d77048c 100644 --- a/Marlin/stepper.cpp +++ b/Marlin/stepper.cpp @@ -558,7 +558,7 @@ ISR(TIMER1_COMPA_vect) { z2_min_both = z2_min_endstop && old_z2_min_endstop; if ((z_min_both || z2_min_both) && current_block->steps[Z_AXIS] > 0) { endstops_trigsteps[Z_AXIS] = count_position[Z_AXIS]; - endstop_z_hit = true; + endstop_hit_bits |= BIT(Z_MIN); if (!performing_homing || (performing_homing && z_min_both && z2_min_both)) //if not performing home or if both endstops were trigged during homing... step_events_completed = current_block->step_event_count; } @@ -613,7 +613,7 @@ ISR(TIMER1_COMPA_vect) { z2_max_both = z2_max_endstop && old_z2_max_endstop; if ((z_max_both || z2_max_both) && current_block->steps[Z_AXIS] > 0) { endstops_trigsteps[Z_AXIS] = count_position[Z_AXIS]; - endstop_z_hit = true; + endstop_hit_bits |= BIT(Z_MIN); // if (z_max_both) SERIAL_ECHOLN("z_max_endstop = true"); // if (z2_max_both) SERIAL_ECHOLN("z2_max_endstop = true");