소스 검색

Merge pull request #1998 from paclema/Filament_runout_fix

Fixed sintaxis error of filament runout
Scott Lahteine 9 년 전
부모
커밋
ca8cec8e8a
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      Marlin/Marlin_main.cpp

+ 2
- 2
Marlin/Marlin_main.cpp 파일 보기

@@ -502,7 +502,7 @@ void setup_filrunoutpin() {
502 502
   #if HAS_FILRUNOUT
503 503
     pinMode(FILRUNOUT_PIN, INPUT);
504 504
     #ifdef ENDSTOPPULLUP_FIL_RUNOUT
505
-      WRITE(FILLRUNOUT_PIN, HIGH);
505
+      WRITE(FILRUNOUT_PIN, HIGH);
506 506
     #endif
507 507
   #endif
508 508
 }
@@ -6029,7 +6029,7 @@ void disable_all_steppers() {
6029 6029
 void manage_inactivity(bool ignore_stepper_queue/*=false*/) {
6030 6030
   
6031 6031
   #if HAS_FILRUNOUT
6032
-    if (card.sdprinting && !(READ(FILRUNOUT_PIN) ^ FIL_RUNOUT_INVERTING))
6032
+    if (IS_SD_PRINTING && !(READ(FILRUNOUT_PIN) ^ FIL_RUNOUT_INVERTING))
6033 6033
       filrunout();
6034 6034
   #endif
6035 6035
 

Loading…
취소
저장