소스 검색

Only show "SD Init Fail" with detectable media (#19236)

Victor Oliveira 4 년 전
부모
커밋
1f25312b65
No account linked to committer's email address
1개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. 4
    2
      Marlin/src/sd/cardreader.cpp

+ 4
- 2
Marlin/src/sd/cardreader.cpp 파일 보기

@@ -383,8 +383,10 @@ void CardReader::mount() {
383 383
 
384 384
   if (flag.mounted)
385 385
     cdroot();
386
-  else if (marlin_state != MF_INITIALIZING)
387
-    ui.set_status_P(GET_TEXT(MSG_SD_INIT_FAIL), -1);
386
+  #if ENABLED(USB_FLASH_DRIVE_SUPPORT) || PIN_EXISTS(SD_DETECT)
387
+    else if (marlin_state != MF_INITIALIZING)
388
+      ui.set_status_P(GET_TEXT(MSG_SD_INIT_FAIL), -1);
389
+  #endif
388 390
 
389 391
   ui.refresh();
390 392
 }

Loading…
취소
저장