소스 검색

Fix Z_PROBE_PING not declared, allows code to compile if Z_PROBE_ENDSTOP

is not used.
Chris Roadfeldt 9 년 전
부모
커밋
2966ae2022
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      Marlin/pins.h

+ 1
- 1
Marlin/pins.h 파일 보기

@@ -187,7 +187,7 @@
187 187
   #define Z_MIN_PIN          -1
188 188
 #endif
189 189
 
190
-#ifdef DISABLE_Z_PROBE_ENDSTOP
190
+#if defined (DISABLE_Z_PROBE_ENDSTOP) || ! defined (Z_PROBE_ENDSTOP) // Allow code to compile regardless of Z_PROBE_ENDSTOP setting.
191 191
   #define Z_PROBE_PIN        -1
192 192
 #endif
193 193
 

Loading…
취소
저장