Rename SDCARDDETECT to SDCARDDETECT_PIN
- Rename the pin so it can be tested with `PIN_EXISTS` - Fix some incorrect tests for `SDCARDDETECT`
This commit is contained in:
parent
aa1d38613a
commit
8d3b74cc6e
|
@ -81,11 +81,11 @@ extern CardReader card;
|
||||||
|
|
||||||
#define IS_SD_PRINTING (card.sdprinting)
|
#define IS_SD_PRINTING (card.sdprinting)
|
||||||
|
|
||||||
#if (SDCARDDETECT > -1)
|
#if PIN_EXISTS(SDCARDDETECT)
|
||||||
#if ENABLED(SDCARDDETECTINVERTED)
|
#if ENABLED(SDCARDDETECTINVERTED)
|
||||||
#define IS_SD_INSERTED (READ(SDCARDDETECT) != 0)
|
#define IS_SD_INSERTED (READ(SDCARDDETECT_PIN) != 0)
|
||||||
#else
|
#else
|
||||||
#define IS_SD_INSERTED (READ(SDCARDDETECT) == 0)
|
#define IS_SD_INSERTED (READ(SDCARDDETECT_PIN) == 0)
|
||||||
#endif
|
#endif
|
||||||
#else
|
#else
|
||||||
//No card detect line? Assume the card is inserted.
|
//No card detect line? Assume the card is inserted.
|
||||||
|
|
|
@ -109,7 +109,7 @@
|
||||||
#define BTN_ENC 39 //the click switch
|
#define BTN_ENC 39 //the click switch
|
||||||
|
|
||||||
#define SDSS 53
|
#define SDSS 53
|
||||||
#define SDCARDDETECT 49
|
#define SDCARDDETECT_PIN 49
|
||||||
|
|
||||||
#define KILL_PIN 31
|
#define KILL_PIN 31
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -54,7 +54,7 @@
|
||||||
#define PS_ON_PIN -1
|
#define PS_ON_PIN -1
|
||||||
#define KILL_PIN -1
|
#define KILL_PIN -1
|
||||||
#define ALARM_PIN -1
|
#define ALARM_PIN -1
|
||||||
#define SDCARDDETECT 12
|
#define SDCARDDETECT_PIN 12
|
||||||
|
|
||||||
#if DISABLED(SDSUPPORT)
|
#if DISABLED(SDSUPPORT)
|
||||||
// these pins are defined in the SD library if building with SD support
|
// these pins are defined in the SD library if building with SD support
|
||||||
|
|
|
@ -86,4 +86,4 @@
|
||||||
#define BLEN_A 0
|
#define BLEN_A 0
|
||||||
|
|
||||||
// Cheaptronic v1.0 does not use this port
|
// Cheaptronic v1.0 does not use this port
|
||||||
#define SDCARDDETECT -1
|
#define SDCARDDETECT_PIN -1
|
||||||
|
|
|
@ -64,7 +64,7 @@
|
||||||
#if ENABLED(RA_CONTROL_PANEL)
|
#if ENABLED(RA_CONTROL_PANEL)
|
||||||
|
|
||||||
#define SDSS 53
|
#define SDSS 53
|
||||||
#define SDCARDDETECT 28
|
#define SDCARDDETECT_PIN 28
|
||||||
|
|
||||||
#define BTN_EN1 14
|
#define BTN_EN1 14
|
||||||
#define BTN_EN2 39
|
#define BTN_EN2 39
|
||||||
|
|
|
@ -19,6 +19,6 @@
|
||||||
#define BLEN_C 2
|
#define BLEN_C 2
|
||||||
#define BLEN_B 1
|
#define BLEN_B 1
|
||||||
#define BLEN_A 0
|
#define BLEN_A 0
|
||||||
#define SDCARDDETECT 6
|
#define SDCARDDETECT_PIN 6
|
||||||
|
|
||||||
#endif // NEWPANEL && ULTRA_LCD
|
#endif // NEWPANEL && ULTRA_LCD
|
||||||
|
|
|
@ -57,7 +57,7 @@
|
||||||
//#define RX_ENABLE_PIN 13
|
//#define RX_ENABLE_PIN 13
|
||||||
|
|
||||||
#define BEEPER_PIN -1
|
#define BEEPER_PIN -1
|
||||||
#define SDCARDDETECT -1
|
#define SDCARDDETECT_PIN -1
|
||||||
#define SUICIDE_PIN -1 //has to be defined; otherwise Power_off doesn't work
|
#define SUICIDE_PIN -1 //has to be defined; otherwise Power_off doesn't work
|
||||||
|
|
||||||
#define KILL_PIN -1
|
#define KILL_PIN -1
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
|
|
||||||
#define SDPOWER -1
|
#define SDPOWER -1
|
||||||
#define SDSS 11
|
#define SDSS 11
|
||||||
#define SDCARDDETECT -1 // 10 optional also used as mode pin
|
#define SDCARDDETECT_PIN -1 // 10 optional also used as mode pin
|
||||||
#define LED_PIN 13
|
#define LED_PIN 13
|
||||||
#define FAN_PIN 7
|
#define FAN_PIN 7
|
||||||
#define PS_ON_PIN -1
|
#define PS_ON_PIN -1
|
||||||
|
|
|
@ -107,6 +107,6 @@
|
||||||
#define BTN_EN2 11
|
#define BTN_EN2 11
|
||||||
#define BTN_ENC 10 //the click switch
|
#define BTN_ENC 10 //the click switch
|
||||||
//not connected to a pin
|
//not connected to a pin
|
||||||
#define SDCARDDETECT 49
|
#define SDCARDDETECT_PIN 49
|
||||||
#endif //Minipanel
|
#endif //Minipanel
|
||||||
|
|
||||||
|
|
|
@ -78,6 +78,6 @@
|
||||||
#define BLEN_B 1
|
#define BLEN_B 1
|
||||||
#define BLEN_A 0
|
#define BLEN_A 0
|
||||||
|
|
||||||
#define SDCARDDETECT -1 // RAMPS doesn't use this
|
#define SDCARDDETECT_PIN -1 // RAMPS doesn't use this
|
||||||
|
|
||||||
#endif // ULTRA_LCD && NEWPANEL
|
#endif // ULTRA_LCD && NEWPANEL
|
||||||
|
|
|
@ -94,4 +94,4 @@
|
||||||
#define BLEN_B 1
|
#define BLEN_B 1
|
||||||
#define BLEN_A 0
|
#define BLEN_A 0
|
||||||
|
|
||||||
#define SDCARDDETECT -1 // Megatronics does not use this port
|
#define SDCARDDETECT_PIN -1 // Megatronics does not use this port
|
||||||
|
|
|
@ -99,4 +99,4 @@
|
||||||
#define BLEN_B 1
|
#define BLEN_B 1
|
||||||
#define BLEN_A 0
|
#define BLEN_A 0
|
||||||
|
|
||||||
#define SDCARDDETECT -1 // Megatronics does not use this port
|
#define SDCARDDETECT_PIN -1 // Megatronics does not use this port
|
||||||
|
|
|
@ -107,7 +107,7 @@
|
||||||
#define BTN_EN2 72
|
#define BTN_EN2 72
|
||||||
#define BTN_ENC 9 // the click
|
#define BTN_ENC 9 // the click
|
||||||
|
|
||||||
#define SDCARDDETECT 15
|
#define SDCARDDETECT_PIN 15
|
||||||
|
|
||||||
#endif //NEWPANEL
|
#endif //NEWPANEL
|
||||||
#endif //ULTRA_LCD
|
#endif //ULTRA_LCD
|
||||||
|
|
|
@ -78,4 +78,4 @@
|
||||||
#define BLEN_B 1
|
#define BLEN_B 1
|
||||||
#define BLEN_A 0
|
#define BLEN_A 0
|
||||||
|
|
||||||
#define SDCARDDETECT -1 // Megatronics does not use this port
|
#define SDCARDDETECT_PIN -1 // Minitronics does not use this port
|
||||||
|
|
|
@ -70,7 +70,7 @@
|
||||||
|
|
||||||
#define SDPOWER -1
|
#define SDPOWER -1
|
||||||
#define SDSS 11
|
#define SDSS 11
|
||||||
#define SDCARDDETECT -1 // 10 optional also used as mode pin
|
#define SDCARDDETECT_PIN -1 // 10 optional also used as mode pin
|
||||||
#define LED_PIN -1
|
#define LED_PIN -1
|
||||||
#define FAN_PIN 14 // PWM on MIDDLE connector
|
#define FAN_PIN 14 // PWM on MIDDLE connector
|
||||||
#define PS_ON_PIN -1
|
#define PS_ON_PIN -1
|
||||||
|
|
|
@ -61,7 +61,7 @@
|
||||||
|
|
||||||
#define SDPOWER -1
|
#define SDPOWER -1
|
||||||
#define SDSS 11
|
#define SDSS 11
|
||||||
#define SDCARDDETECT -1 // 10 optional also used as mode pin
|
#define SDCARDDETECT_PIN -1 // 10 optional also used as mode pin
|
||||||
#define LED_PIN -1
|
#define LED_PIN -1
|
||||||
#define FAN_PIN 3
|
#define FAN_PIN 3
|
||||||
#define PS_ON_PIN -1
|
#define PS_ON_PIN -1
|
||||||
|
|
|
@ -88,7 +88,7 @@
|
||||||
#define SDSS 40 //use SD card on Panelolu2 (Teensyduino pin mapping)
|
#define SDSS 40 //use SD card on Panelolu2 (Teensyduino pin mapping)
|
||||||
#endif // LCD_I2C_PANELOLU2
|
#endif // LCD_I2C_PANELOLU2
|
||||||
//not connected to a pin
|
//not connected to a pin
|
||||||
#define SDCARDDETECT -1
|
#define SDCARDDETECT_PIN -1
|
||||||
#endif // ULTRA_LCD && NEWPANEL
|
#endif // ULTRA_LCD && NEWPANEL
|
||||||
|
|
||||||
#if ENABLED(VIKI2) || ENABLED(miniVIKI)
|
#if ENABLED(VIKI2) || ENABLED(miniVIKI)
|
||||||
|
@ -104,7 +104,7 @@
|
||||||
#define BTN_ENC 47 //the click switch
|
#define BTN_ENC 47 //the click switch
|
||||||
|
|
||||||
#define SDSS 45
|
#define SDSS 45
|
||||||
#define SDCARDDETECT -1 // FastIO (Manual says 72 I'm not certain cause I can't test)
|
#define SDCARDDETECT_PIN -1 // FastIO (Manual says 72 I'm not certain cause I can't test)
|
||||||
|
|
||||||
#if ENABLED(TEMP_STAT_LEDS)
|
#if ENABLED(TEMP_STAT_LEDS)
|
||||||
#define STAT_LED_RED 12 //Non-FastIO
|
#define STAT_LED_RED 12 //Non-FastIO
|
||||||
|
|
|
@ -133,7 +133,7 @@
|
||||||
#define BLEN_B 1
|
#define BLEN_B 1
|
||||||
#define BLEN_A 0
|
#define BLEN_A 0
|
||||||
|
|
||||||
#define SDCARDDETECT 81 // Ramps does not use this port
|
#define SDCARDDETECT_PIN 81 // Ramps doesn't use this port
|
||||||
|
|
||||||
#else //!NEWPANEL - old style panel with shift register
|
#else //!NEWPANEL - old style panel with shift register
|
||||||
|
|
||||||
|
@ -180,7 +180,7 @@
|
||||||
#define BTN_EN2 84
|
#define BTN_EN2 84
|
||||||
#define BTN_ENC 83 //the click switch
|
#define BTN_ENC 83 //the click switch
|
||||||
|
|
||||||
#define SDCARDDETECT -1 // Pin 72 if using easy adapter board
|
#define SDCARDDETECT_PIN -1 // Pin 72 if using easy adapter board
|
||||||
|
|
||||||
#if ENABLED(TEMP_STAT_LEDS)
|
#if ENABLED(TEMP_STAT_LEDS)
|
||||||
#define STAT_LED_RED 22
|
#define STAT_LED_RED 22
|
||||||
|
|
|
@ -165,25 +165,25 @@
|
||||||
#define BTN_EN2 33
|
#define BTN_EN2 33
|
||||||
#define BTN_ENC 35
|
#define BTN_ENC 35
|
||||||
|
|
||||||
#define SDCARDDETECT 49
|
#define SDCARDDETECT_PIN 49
|
||||||
#elif ENABLED(LCD_I2C_PANELOLU2)
|
#elif ENABLED(LCD_I2C_PANELOLU2)
|
||||||
#define BTN_EN1 47 // reverse if the encoder turns the wrong way.
|
#define BTN_EN1 47 // reverse if the encoder turns the wrong way.
|
||||||
#define BTN_EN2 43
|
#define BTN_EN2 43
|
||||||
#define BTN_ENC 32
|
#define BTN_ENC 32
|
||||||
#define LCD_SDSS 53
|
#define LCD_SDSS 53
|
||||||
#define SDCARDDETECT -1
|
#define SDCARDDETECT_PIN -1
|
||||||
#define KILL_PIN 41
|
#define KILL_PIN 41
|
||||||
#elif ENABLED(LCD_I2C_VIKI)
|
#elif ENABLED(LCD_I2C_VIKI)
|
||||||
#define BTN_EN1 22 // reverse if the encoder turns the wrong way.
|
#define BTN_EN1 22 // reverse if the encoder turns the wrong way.
|
||||||
#define BTN_EN2 7
|
#define BTN_EN2 7
|
||||||
#define BTN_ENC -1
|
#define BTN_ENC -1
|
||||||
#define LCD_SDSS 53
|
#define LCD_SDSS 53
|
||||||
#define SDCARDDETECT 49
|
#define SDCARDDETECT_PIN 49
|
||||||
#elif ENABLED(ELB_FULL_GRAPHIC_CONTROLLER)
|
#elif ENABLED(ELB_FULL_GRAPHIC_CONTROLLER)
|
||||||
#define BTN_EN1 35 // reverse if the encoder turns the wrong way.
|
#define BTN_EN1 35 // reverse if the encoder turns the wrong way.
|
||||||
#define BTN_EN2 37
|
#define BTN_EN2 37
|
||||||
#define BTN_ENC 31
|
#define BTN_ENC 31
|
||||||
#define SDCARDDETECT 49
|
#define SDCARDDETECT_PIN 49
|
||||||
#define LCD_SDSS 53
|
#define LCD_SDSS 53
|
||||||
#define KILL_PIN 41
|
#define KILL_PIN 41
|
||||||
#define BEEPER_PIN 23
|
#define BEEPER_PIN 23
|
||||||
|
@ -210,7 +210,7 @@
|
||||||
#define BTN_EN2 63
|
#define BTN_EN2 63
|
||||||
#define BTN_ENC 59 //the click switch
|
#define BTN_ENC 59 //the click switch
|
||||||
//not connected to a pin
|
//not connected to a pin
|
||||||
#define SDCARDDETECT 49
|
#define SDCARDDETECT_PIN 49
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
|
@ -235,9 +235,9 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if ENABLED(G3D_PANEL)
|
#if ENABLED(G3D_PANEL)
|
||||||
#define SDCARDDETECT 49
|
#define SDCARDDETECT_PIN 49
|
||||||
#else
|
#else
|
||||||
#define SDCARDDETECT -1 // Ramps does not use this port
|
#define SDCARDDETECT_PIN -1 // Ramps does not use this port
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -25,8 +25,8 @@
|
||||||
#undef BEEPER_PIN
|
#undef BEEPER_PIN
|
||||||
#define BEEPER_PIN -1
|
#define BEEPER_PIN -1
|
||||||
|
|
||||||
#undef SDCARDDETECT
|
#undef SDCARDDETECT_PIN
|
||||||
#define SDCARDDETECT 22
|
#define SDCARDDETECT_PIN 22
|
||||||
|
|
||||||
// Extra button definitions, substitute for EN1 / EN2
|
// Extra button definitions, substitute for EN1 / EN2
|
||||||
#define BTN_UP 37 // BTN_EN1
|
#define BTN_UP 37 // BTN_EN1
|
||||||
|
@ -43,16 +43,16 @@
|
||||||
#undef BTN_ENC
|
#undef BTN_ENC
|
||||||
#define BTN_ENC 31
|
#define BTN_ENC 31
|
||||||
|
|
||||||
#undef SDCARDDETECT
|
#undef SDCARDDETECT_PIN
|
||||||
#define SDCARDDETECT 22
|
#define SDCARDDETECT_PIN 22
|
||||||
|
|
||||||
#elif defined(REPRAP_DISCOUNT_SMART_CONTROLLER)
|
#elif defined(REPRAP_DISCOUNT_SMART_CONTROLLER)
|
||||||
|
|
||||||
#undef BEEPER_PIN
|
#undef BEEPER_PIN
|
||||||
#define BEEPER_PIN -1
|
#define BEEPER_PIN -1
|
||||||
|
|
||||||
#undef SDCARDDETECT
|
#undef SDCARDDETECT_PIN
|
||||||
#define SDCARDDETECT 22
|
#define SDCARDDETECT_PIN 22
|
||||||
|
|
||||||
#undef KILL_PIN
|
#undef KILL_PIN
|
||||||
#define KILL_PIN 32
|
#define KILL_PIN 32
|
||||||
|
|
|
@ -101,7 +101,7 @@
|
||||||
|
|
||||||
#define SDPOWER -1
|
#define SDPOWER -1
|
||||||
#define SDSS 53
|
#define SDSS 53
|
||||||
#define SDCARDDETECT 49
|
#define SDCARDDETECT_PIN 49
|
||||||
#define BEEPER_PIN 44
|
#define BEEPER_PIN 44
|
||||||
#define LCD_PINS_RS 19
|
#define LCD_PINS_RS 19
|
||||||
#define LCD_PINS_ENABLE 42
|
#define LCD_PINS_ENABLE 42
|
||||||
|
|
|
@ -156,7 +156,7 @@
|
||||||
#define LCD_SDSS 28 // Smart Controller SD card reader rather than the Melzi
|
#define LCD_SDSS 28 // Smart Controller SD card reader rather than the Melzi
|
||||||
#endif //Panelolu2
|
#endif //Panelolu2
|
||||||
|
|
||||||
#define SDCARDDETECT -1
|
#define SDCARDDETECT_PIN -1
|
||||||
|
|
||||||
#elif ENABLED(MAKRPANEL)
|
#elif ENABLED(MAKRPANEL)
|
||||||
|
|
||||||
|
@ -178,7 +178,7 @@
|
||||||
#define BTN_EN2 10
|
#define BTN_EN2 10
|
||||||
#define BTN_ENC 16
|
#define BTN_ENC 16
|
||||||
|
|
||||||
#define SDCARDDETECT -1
|
#define SDCARDDETECT_PIN -1
|
||||||
|
|
||||||
#endif // MAKRPANEL
|
#endif // MAKRPANEL
|
||||||
|
|
||||||
|
|
|
@ -83,7 +83,7 @@
|
||||||
#define LED_PIN -1
|
#define LED_PIN -1
|
||||||
#define PS_ON_PIN -1
|
#define PS_ON_PIN -1
|
||||||
#define ALARM_PIN -1
|
#define ALARM_PIN -1
|
||||||
#define SDCARDDETECT -1
|
#define SDCARDDETECT_PIN -1
|
||||||
|
|
||||||
#define BEEPER_PIN -1
|
#define BEEPER_PIN -1
|
||||||
#define LCD_PINS_RS -1
|
#define LCD_PINS_RS -1
|
||||||
|
|
|
@ -86,7 +86,7 @@
|
||||||
#define TEMP_2_PIN -1
|
#define TEMP_2_PIN -1
|
||||||
|
|
||||||
#define SDPOWER -1
|
#define SDPOWER -1
|
||||||
#define SDCARDDETECT -1
|
#define SDCARDDETECT_PIN -1
|
||||||
#define SDSS 20 // 8
|
#define SDSS 20 // 8
|
||||||
#define LED_PIN 6
|
#define LED_PIN 6
|
||||||
#define PS_ON_PIN 27
|
#define PS_ON_PIN 27
|
||||||
|
|
|
@ -78,7 +78,7 @@
|
||||||
#define SDSS 40 //use SD card on Panelolu2 (Teensyduino pin mapping)
|
#define SDSS 40 //use SD card on Panelolu2 (Teensyduino pin mapping)
|
||||||
#endif // LCD_I2C_PANELOLU2
|
#endif // LCD_I2C_PANELOLU2
|
||||||
|
|
||||||
#define SDCARDDETECT -1
|
#define SDCARDDETECT_PIN -1
|
||||||
|
|
||||||
#endif // ULTRA_LCD && NEWPANEL
|
#endif // ULTRA_LCD && NEWPANEL
|
||||||
|
|
||||||
|
|
|
@ -76,4 +76,4 @@
|
||||||
#define BLEN_B 1
|
#define BLEN_B 1
|
||||||
#define BLEN_A 0
|
#define BLEN_A 0
|
||||||
|
|
||||||
#define SDCARDDETECT 39
|
#define SDCARDDETECT_PIN 39
|
||||||
|
|
|
@ -73,7 +73,7 @@
|
||||||
#define BTN_EN2 42
|
#define BTN_EN2 42
|
||||||
#define BTN_ENC 19
|
#define BTN_ENC 19
|
||||||
|
|
||||||
#define SDCARDDETECT 38
|
#define SDCARDDETECT_PIN 38
|
||||||
|
|
||||||
#else //!NEWPANEL - Old style panel with shift register
|
#else //!NEWPANEL - Old style panel with shift register
|
||||||
|
|
||||||
|
@ -90,7 +90,7 @@
|
||||||
#define LCD_PINS_D6 20
|
#define LCD_PINS_D6 20
|
||||||
#define LCD_PINS_D7 19
|
#define LCD_PINS_D7 19
|
||||||
|
|
||||||
#define SDCARDDETECT -1
|
#define SDCARDDETECT_PIN -1
|
||||||
|
|
||||||
#endif // !NEWPANEL
|
#endif // !NEWPANEL
|
||||||
|
|
||||||
|
|
|
@ -221,7 +221,7 @@ static void lcd_status_screen();
|
||||||
millis_t next_button_update_ms;
|
millis_t next_button_update_ms;
|
||||||
uint8_t lastEncoderBits;
|
uint8_t lastEncoderBits;
|
||||||
uint32_t encoderPosition;
|
uint32_t encoderPosition;
|
||||||
#if (SDCARDDETECT > 0)
|
#if PIN_EXISTS(SDCARDDETECT)
|
||||||
bool lcd_oldcardstatus;
|
bool lcd_oldcardstatus;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -411,14 +411,14 @@ static void lcd_main_menu() {
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
MENU_ITEM(submenu, MSG_CARD_MENU, lcd_sdcard_menu);
|
MENU_ITEM(submenu, MSG_CARD_MENU, lcd_sdcard_menu);
|
||||||
#if SDCARDDETECT < 1
|
#if !PIN_EXISTS(SDCARDDETECT)
|
||||||
MENU_ITEM(gcode, MSG_CNG_SDCARD, PSTR("M21")); // SD-card changed by user
|
MENU_ITEM(gcode, MSG_CNG_SDCARD, PSTR("M21")); // SD-card changed by user
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
MENU_ITEM(submenu, MSG_NO_CARD, lcd_sdcard_menu);
|
MENU_ITEM(submenu, MSG_NO_CARD, lcd_sdcard_menu);
|
||||||
#if SDCARDDETECT < 1
|
#if !PIN_EXISTS(SDCARDDETECT)
|
||||||
MENU_ITEM(gcode, MSG_INIT_SDCARD, PSTR("M21")); // Manually initialize the SD-card via user interface
|
MENU_ITEM(gcode, MSG_INIT_SDCARD, PSTR("M21")); // Manually initialize the SD-card via user interface
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@ -1156,7 +1156,7 @@ static void lcd_control_volumetric_menu() {
|
||||||
}
|
}
|
||||||
#endif // FWRETRACT
|
#endif // FWRETRACT
|
||||||
|
|
||||||
#if SDCARDDETECT == -1
|
#if !PIN_EXISTS(SDCARDDETECT)
|
||||||
static void lcd_sd_refresh() {
|
static void lcd_sd_refresh() {
|
||||||
card.initsd();
|
card.initsd();
|
||||||
currentMenuViewOffset = 0;
|
currentMenuViewOffset = 0;
|
||||||
|
@ -1180,7 +1180,7 @@ void lcd_sdcard_menu() {
|
||||||
MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
|
MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
|
||||||
card.getWorkDirName();
|
card.getWorkDirName();
|
||||||
if (card.filename[0] == '/') {
|
if (card.filename[0] == '/') {
|
||||||
#if SDCARDDETECT == -1
|
#if !PIN_EXISTS(SDCARDDETECT)
|
||||||
MENU_ITEM(function, LCD_STR_REFRESH MSG_REFRESH, lcd_sd_refresh);
|
MENU_ITEM(function, LCD_STR_REFRESH MSG_REFRESH, lcd_sd_refresh);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@ -1407,11 +1407,11 @@ void lcd_init() {
|
||||||
#endif // SR_LCD_2W_NL
|
#endif // SR_LCD_2W_NL
|
||||||
#endif//!NEWPANEL
|
#endif//!NEWPANEL
|
||||||
|
|
||||||
#if ENABLED(SDSUPPORT) && defined(SDCARDDETECT) && (SDCARDDETECT > 0)
|
#if ENABLED(SDSUPPORT) && PIN_EXISTS(SDCARDDETECT)
|
||||||
pinMode(SDCARDDETECT, INPUT);
|
pinMode(SDCARDDETECT_PIN, INPUT);
|
||||||
WRITE(SDCARDDETECT, HIGH);
|
WRITE(SDCARDDETECT_PIN, HIGH);
|
||||||
lcd_oldcardstatus = IS_SD_INSERTED;
|
lcd_oldcardstatus = IS_SD_INSERTED;
|
||||||
#endif //(SDCARDDETECT > 0)
|
#endif
|
||||||
|
|
||||||
#if ENABLED(LCD_HAS_SLOW_BUTTONS)
|
#if ENABLED(LCD_HAS_SLOW_BUTTONS)
|
||||||
slow_buttons = 0;
|
slow_buttons = 0;
|
||||||
|
@ -1466,7 +1466,7 @@ void lcd_update() {
|
||||||
|
|
||||||
lcd_buttons_update();
|
lcd_buttons_update();
|
||||||
|
|
||||||
#if (SDCARDDETECT > 0)
|
#if PIN_EXISTS(SDCARDDETECT)
|
||||||
if (IS_SD_INSERTED != lcd_oldcardstatus && lcd_detected()) {
|
if (IS_SD_INSERTED != lcd_oldcardstatus && lcd_detected()) {
|
||||||
lcdDrawUpdate = 2;
|
lcdDrawUpdate = 2;
|
||||||
lcd_oldcardstatus = IS_SD_INSERTED;
|
lcd_oldcardstatus = IS_SD_INSERTED;
|
||||||
|
|
Loading…
Reference in a new issue