소스 검색

Always define old_z, not always z2

Scott Lahteine 9 년 전
부모
커밋
7336e6df07
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 3
    2
      Marlin/stepper.cpp

+ 3
- 2
Marlin/stepper.cpp 파일 보기

@@ -99,9 +99,10 @@ static volatile bool endstop_z_probe_hit = false; // Leaving this in even if Z_P
99 99
   static bool old_y_max_endstop = false;
100 100
 #endif
101 101
 
102
+static bool old_z_min_endstop = false;
103
+static bool old_z_max_endstop = false;
104
+
102 105
 #ifdef Z_DUAL_ENDSTOPS
103
-  static bool old_z_min_endstop = false;
104
-  static bool old_z_max_endstop = false;
105 106
   static bool old_z2_min_endstop = false;
106 107
   static bool old_z2_max_endstop = false;
107 108
 #endif

Loading…
취소
저장