Default to SD Card Disabled (PR#139)
This commit is contained in:
commit
fe0cbd40fe
@ -16,7 +16,6 @@
|
|||||||
|
|
||||||
#if ENABLED(MAKRPANEL)
|
#if ENABLED(MAKRPANEL)
|
||||||
#define DOGLCD
|
#define DOGLCD
|
||||||
#define SDSUPPORT
|
|
||||||
#define DEFAULT_LCD_CONTRAST 17
|
#define DEFAULT_LCD_CONTRAST 17
|
||||||
#define ULTIPANEL
|
#define ULTIPANEL
|
||||||
#define NEWPANEL
|
#define NEWPANEL
|
||||||
@ -48,7 +47,6 @@
|
|||||||
|
|
||||||
|
|
||||||
#if ENABLED(PANEL_ONE)
|
#if ENABLED(PANEL_ONE)
|
||||||
#define SDSUPPORT
|
|
||||||
#define ULTIMAKERCONTROLLER
|
#define ULTIMAKERCONTROLLER
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -77,7 +75,6 @@
|
|||||||
|
|
||||||
#if ENABLED(MINIPANEL)
|
#if ENABLED(MINIPANEL)
|
||||||
#define DOGLCD
|
#define DOGLCD
|
||||||
#define SDSUPPORT
|
|
||||||
#define ULTIPANEL
|
#define ULTIPANEL
|
||||||
#define NEWPANEL
|
#define NEWPANEL
|
||||||
#define DEFAULT_LCD_CONTRAST 17
|
#define DEFAULT_LCD_CONTRAST 17
|
||||||
@ -145,7 +142,6 @@
|
|||||||
|
|
||||||
#if ENABLED(ULTIPANEL)
|
#if ENABLED(ULTIPANEL)
|
||||||
#define NEWPANEL //enable this if you have a click-encoder panel
|
#define NEWPANEL //enable this if you have a click-encoder panel
|
||||||
#define SDSUPPORT
|
|
||||||
#define ULTRA_LCD
|
#define ULTRA_LCD
|
||||||
#if ENABLED(DOGLCD) // Change number of lines to match the DOG graphic display
|
#if ENABLED(DOGLCD) // Change number of lines to match the DOG graphic display
|
||||||
#define LCD_WIDTH 22
|
#define LCD_WIDTH 22
|
||||||
|
@ -283,22 +283,25 @@ static void lcd_status_screen() {
|
|||||||
#if PROGRESS_MSG_EXPIRE > 0
|
#if PROGRESS_MSG_EXPIRE > 0
|
||||||
// Handle message expire
|
// Handle message expire
|
||||||
if (expire_status_ms > 0) {
|
if (expire_status_ms > 0) {
|
||||||
if (card.isFileOpen()) {
|
#if ENABLED(SDSUPPORT)
|
||||||
// Expire the message when printing is active
|
if (card.isFileOpen()) {
|
||||||
if (IS_SD_PRINTING) {
|
|
||||||
// Expire the message when printing is active
|
// Expire the message when printing is active
|
||||||
if (ms >= expire_status_ms) {
|
if (IS_SD_PRINTING) {
|
||||||
lcd_status_message[0] = '\0';
|
if (ms >= expire_status_ms) {
|
||||||
expire_status_ms = 0;
|
lcd_status_message[0] = '\0';
|
||||||
|
expire_status_ms = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
expire_status_ms += LCD_UPDATE_INTERVAL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
expire_status_ms += LCD_UPDATE_INTERVAL;
|
expire_status_ms = 0;
|
||||||
}
|
}
|
||||||
}
|
#else
|
||||||
else {
|
|
||||||
expire_status_ms = 0;
|
expire_status_ms = 0;
|
||||||
}
|
#endif //SDSUPPORT
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#endif //LCD_PROGRESS_BAR
|
#endif //LCD_PROGRESS_BAR
|
||||||
@ -367,18 +370,22 @@ static void lcd_status_screen() {
|
|||||||
|
|
||||||
static void lcd_return_to_status() { lcd_goto_menu(lcd_status_screen); }
|
static void lcd_return_to_status() { lcd_goto_menu(lcd_status_screen); }
|
||||||
|
|
||||||
static void lcd_sdcard_pause() { card.pauseSDPrint(); }
|
#if ENABLED(SDSUPPORT)
|
||||||
|
|
||||||
static void lcd_sdcard_resume() { card.startFileprint(); }
|
static void lcd_sdcard_pause() { card.pauseSDPrint(); }
|
||||||
|
|
||||||
static void lcd_sdcard_stop() {
|
static void lcd_sdcard_resume() { card.startFileprint(); }
|
||||||
quickStop();
|
|
||||||
card.sdprinting = false;
|
static void lcd_sdcard_stop() {
|
||||||
card.closefile();
|
quickStop();
|
||||||
autotempShutdown();
|
card.sdprinting = false;
|
||||||
cancel_heatup = true;
|
card.closefile();
|
||||||
lcd_setstatus(MSG_PRINT_ABORTED, true);
|
autotempShutdown();
|
||||||
}
|
cancel_heatup = true;
|
||||||
|
lcd_setstatus(MSG_PRINT_ABORTED, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif //SDSUPPORT
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
@ -1186,57 +1193,61 @@ static void lcd_control_volumetric_menu() {
|
|||||||
}
|
}
|
||||||
#endif // FWRETRACT
|
#endif // FWRETRACT
|
||||||
|
|
||||||
#if !PIN_EXISTS(SD_DETECT)
|
#if ENABLED(SDSUPPORT)
|
||||||
static void lcd_sd_refresh() {
|
|
||||||
card.initsd();
|
#if !PIN_EXISTS(SD_DETECT)
|
||||||
|
static void lcd_sd_refresh() {
|
||||||
|
card.initsd();
|
||||||
|
currentMenuViewOffset = 0;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
static void lcd_sd_updir() {
|
||||||
|
card.updir();
|
||||||
currentMenuViewOffset = 0;
|
currentMenuViewOffset = 0;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
static void lcd_sd_updir() {
|
/**
|
||||||
card.updir();
|
*
|
||||||
currentMenuViewOffset = 0;
|
* "Print from SD" submenu
|
||||||
}
|
*
|
||||||
|
*/
|
||||||
/**
|
void lcd_sdcard_menu() {
|
||||||
*
|
if (lcdDrawUpdate == 0 && LCD_CLICKED == 0) return; // nothing to do (so don't thrash the SD card)
|
||||||
* "Print from SD" submenu
|
uint16_t fileCnt = card.getnrfilenames();
|
||||||
*
|
START_MENU();
|
||||||
*/
|
MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
|
||||||
void lcd_sdcard_menu() {
|
card.getWorkDirName();
|
||||||
if (lcdDrawUpdate == 0 && LCD_CLICKED == 0) return; // nothing to do (so don't thrash the SD card)
|
if (card.filename[0] == '/') {
|
||||||
uint16_t fileCnt = card.getnrfilenames();
|
#if !PIN_EXISTS(SD_DETECT)
|
||||||
START_MENU();
|
MENU_ITEM(function, LCD_STR_REFRESH MSG_REFRESH, lcd_sd_refresh);
|
||||||
MENU_ITEM(back, MSG_MAIN, lcd_main_menu);
|
#endif
|
||||||
card.getWorkDirName();
|
|
||||||
if (card.filename[0] == '/') {
|
|
||||||
#if !PIN_EXISTS(SD_DETECT)
|
|
||||||
MENU_ITEM(function, LCD_STR_REFRESH MSG_REFRESH, lcd_sd_refresh);
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
MENU_ITEM(function, LCD_STR_FOLDER "..", lcd_sd_updir);
|
|
||||||
}
|
|
||||||
|
|
||||||
for (uint16_t i = 0; i < fileCnt; i++) {
|
|
||||||
if (_menuItemNr == _lineNr) {
|
|
||||||
card.getfilename(
|
|
||||||
#if ENABLED(SDCARD_RATHERRECENTFIRST)
|
|
||||||
fileCnt-1 -
|
|
||||||
#endif
|
|
||||||
i
|
|
||||||
);
|
|
||||||
if (card.filenameIsDir)
|
|
||||||
MENU_ITEM(sddirectory, MSG_CARD_MENU, card.filename, card.longFilename);
|
|
||||||
else
|
|
||||||
MENU_ITEM(sdfile, MSG_CARD_MENU, card.filename, card.longFilename);
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
MENU_ITEM_DUMMY();
|
MENU_ITEM(function, LCD_STR_FOLDER "..", lcd_sd_updir);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for (uint16_t i = 0; i < fileCnt; i++) {
|
||||||
|
if (_menuItemNr == _lineNr) {
|
||||||
|
card.getfilename(
|
||||||
|
#if ENABLED(SDCARD_RATHERRECENTFIRST)
|
||||||
|
fileCnt-1 -
|
||||||
|
#endif
|
||||||
|
i
|
||||||
|
);
|
||||||
|
if (card.filenameIsDir)
|
||||||
|
MENU_ITEM(sddirectory, MSG_CARD_MENU, card.filename, card.longFilename);
|
||||||
|
else
|
||||||
|
MENU_ITEM(sdfile, MSG_CARD_MENU, card.filename, card.longFilename);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
MENU_ITEM_DUMMY();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
END_MENU();
|
||||||
}
|
}
|
||||||
END_MENU();
|
|
||||||
}
|
#endif //SDSUPPORT
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
@ -1389,10 +1400,16 @@ static void menu_action_sdfile(const char* filename, char* longFilename) {
|
|||||||
enqueuecommands_P(PSTR("M24"));
|
enqueuecommands_P(PSTR("M24"));
|
||||||
lcd_return_to_status();
|
lcd_return_to_status();
|
||||||
}
|
}
|
||||||
static void menu_action_sddirectory(const char* filename, char* longFilename) {
|
|
||||||
card.chdir(filename);
|
#if ENABLED(SDSUPPORT)
|
||||||
encoderPosition = 0;
|
|
||||||
}
|
static void menu_action_sddirectory(const char* filename, char* longFilename) {
|
||||||
|
card.chdir(filename);
|
||||||
|
encoderPosition = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
static void menu_action_setting_edit_bool(const char* pstr, bool* ptr) { *ptr = !(*ptr); }
|
static void menu_action_setting_edit_bool(const char* pstr, bool* ptr) { *ptr = !(*ptr); }
|
||||||
static void menu_action_setting_edit_callback_bool(const char* pstr, bool* ptr, menuFunc_t callback) {
|
static void menu_action_setting_edit_callback_bool(const char* pstr, bool* ptr, menuFunc_t callback) {
|
||||||
menu_action_setting_edit_bool(pstr, ptr);
|
menu_action_setting_edit_bool(pstr, ptr);
|
||||||
@ -1496,7 +1513,8 @@ void lcd_update() {
|
|||||||
|
|
||||||
lcd_buttons_update();
|
lcd_buttons_update();
|
||||||
|
|
||||||
#if PIN_EXISTS(SD_DETECT)
|
#if ENABLED(SDSUPPORT) && PIN_EXISTS(SD_DETECT)
|
||||||
|
|
||||||
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;
|
||||||
@ -1515,7 +1533,8 @@ void lcd_update() {
|
|||||||
LCD_MESSAGEPGM(MSG_SD_REMOVED);
|
LCD_MESSAGEPGM(MSG_SD_REMOVED);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif//CARDINSERTED
|
|
||||||
|
#endif //SDSUPPORT && SD_DETECT_PIN
|
||||||
|
|
||||||
millis_t ms = millis();
|
millis_t ms = millis();
|
||||||
if (ms > next_lcd_update_ms) {
|
if (ms > next_lcd_update_ms) {
|
||||||
|
Loading…
Reference in New Issue
Block a user