Browse Source

Misc. code cleanup

vanilla_fb_2.0.x
Scott Lahteine 3 years ago
parent
commit
cca5844ba9
  1. 4
      Marlin/src/MarlinCore.cpp
  2. 10
      Marlin/src/gcode/queue.cpp
  3. 2
      Marlin/src/lcd/extui/dgus/mks/DGUSScreenHandler.cpp
  4. 4
      Marlin/src/lcd/extui/mks_ui/draw_ui.cpp
  5. 8
      Marlin/src/lcd/extui/mks_ui/wifi_module.cpp

4
Marlin/src/MarlinCore.cpp

@ -390,8 +390,8 @@ void startOrResumeJob() {
}
inline void finishSDPrinting() {
if (queue.enqueue_one_P(PSTR("M1001"))) {
marlin_state = MF_RUNNING;
if (queue.enqueue_one_P(PSTR("M1001"))) { // Keep trying until it gets queued
marlin_state = MF_RUNNING; // Signal to stop trying
TERN_(PASSWORD_AFTER_SD_PRINT_END, password.lock_machine());
TERN_(DGUS_LCD_UI_MKS, ScreenHandler.SDPrintingFinished());
}

10
Marlin/src/gcode/queue.cpp

@ -501,13 +501,9 @@ void GCodeQueue::get_serial_commands() {
char* gpos = strchr(command, 'G');
if (gpos) {
switch (strtol(gpos + 1, nullptr, 10)) {
case 0: case 1:
#if ENABLED(ARC_SUPPORT)
case 2: case 3:
#endif
#if ENABLED(BEZIER_CURVE_SUPPORT)
case 5:
#endif
case 0 ... 1:
TERN_(ARC_SUPPORT, case 2 ... 3:)
TERN_(BEZIER_CURVE_SUPPORT, case 5:)
PORT_REDIRECT(SERIAL_PORTMASK(p)); // Reply to the serial port that sent the command
SERIAL_ECHOLNPGM(STR_ERR_STOPPED);
LCD_MESSAGEPGM(MSG_STOPPED);

2
Marlin/src/lcd/extui/dgus/mks/DGUSScreenHandler.cpp

@ -1477,7 +1477,7 @@ void DGUSScreenHandler::DGUS_ExtrudeLoadInit(void) {
void DGUSScreenHandler::DGUS_RunoutInit(void) {
#if PIN_EXISTS(MT_DET_1)
pinMode(MT_DET_1_PIN, INPUT_PULLUP);
SET_INPUT_PULLUP(MT_DET_1_PIN);
#endif
runout_mks.de_count = 0;
runout_mks.de_times = 10;

4
Marlin/src/lcd/extui/mks_ui/draw_ui.cpp

@ -645,9 +645,7 @@ char *creat_title_text() {
gcode_preview_over = false;
card.closefile();
char *cur_name;
cur_name = strrchr(list_file.file_name[sel_id], '/');
char *cur_name = strrchr(list_file.file_name[sel_id], '/');
SdFile file;
SdFile *curDir;

8
Marlin/src/lcd/extui/mks_ui/wifi_module.cpp

@ -1795,12 +1795,8 @@ void get_wifi_commands() {
if (gpos) {
switch (strtol(gpos + 1, nullptr, 10)) {
case 0 ... 1:
#if ENABLED(ARC_SUPPORT)
case 2 ... 3:
#endif
#if ENABLED(BEZIER_CURVE_SUPPORT)
case 5:
#endif
TERN_(ARC_SUPPORT, case 2 ... 3:)
TERN_(BEZIER_CURVE_SUPPORT, case 5:)
SERIAL_ECHOLNPGM(STR_ERR_STOPPED);
LCD_MESSAGEPGM(MSG_STOPPED);
break;

Loading…
Cancel
Save