Scott Lahteine
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
Marlin/src/gcode/queue.cpp
|
@ -631,7 +631,7 @@ inline void get_serial_commands() { |
|
|
} |
|
|
} |
|
|
#if ENABLED(SDSUPPORT) |
|
|
#if ENABLED(SDSUPPORT) |
|
|
// Pronterface "M29" and "M29 " has no line number
|
|
|
// Pronterface "M29" and "M29 " has no line number
|
|
|
else if (card.flag.saving && !(command[0] == 'M' && command[1] == '2' && command[2] == '9' && (command[3] == '\0' || command[3] == ' '))) |
|
|
else if (card.flag.saving && !(command[0] == 'M' && command[1] == '2' && command[2] == '9' && (command[3] == '\0' || command[3] == ' ' || || command[3] == '*'))) |
|
|
return gcode_line_error(PSTR(MSG_ERR_NO_CHECKSUM), i); |
|
|
return gcode_line_error(PSTR(MSG_ERR_NO_CHECKSUM), i); |
|
|
#endif |
|
|
#endif |
|
|
|
|
|
|
|
@ -840,7 +840,7 @@ void advance_command_queue() { |
|
|
|
|
|
|
|
|
if (card.flag.saving) { |
|
|
if (card.flag.saving) { |
|
|
char* command = command_queue[cmd_queue_index_r]; |
|
|
char* command = command_queue[cmd_queue_index_r]; |
|
|
if (command[0] == 'M' && command[1] == '2' && command[2] == '9' && (command[3] == '\0' || command[3] == ' ')) { |
|
|
if (command[0] == 'M' && command[1] == '2' && command[2] == '9' && (command[3] == '\0' || command[3] == ' ' || || command[3] == '*')) { |
|
|
// M29 closes the file
|
|
|
// M29 closes the file
|
|
|
card.closefile(); |
|
|
card.closefile(); |
|
|
SERIAL_ECHOLNPGM(MSG_FILE_SAVED); |
|
|
SERIAL_ECHOLNPGM(MSG_FILE_SAVED); |
|
|