filecheck fix: we need to check buffered gcodes after finding end of gcode file
This commit is contained in:
parent
32ee171a49
commit
6bdab7bf48
|
|
@ -1952,7 +1952,7 @@ static float probe_pt(float x, float y, float z_before) {
|
||||||
bool check_commands() {
|
bool check_commands() {
|
||||||
bool end_command_found = false;
|
bool end_command_found = false;
|
||||||
|
|
||||||
if (buflen)
|
while (buflen)
|
||||||
{
|
{
|
||||||
if ((code_seen("M84")) || (code_seen("M 84"))) end_command_found = true;
|
if ((code_seen("M84")) || (code_seen("M 84"))) end_command_found = true;
|
||||||
if (!cmdbuffer_front_already_processed)
|
if (!cmdbuffer_front_already_processed)
|
||||||
|
|
|
||||||
|
|
@ -5779,7 +5779,6 @@ static bool check_file(const char* filename) {
|
||||||
get_command();
|
get_command();
|
||||||
result = check_commands();
|
result = check_commands();
|
||||||
}
|
}
|
||||||
cmdqueue_reset();
|
|
||||||
card.printingHasFinished();
|
card.printingHasFinished();
|
||||||
strncpy_P(lcd_status_message, WELCOME_MSG, LCD_WIDTH);
|
strncpy_P(lcd_status_message, WELCOME_MSG, LCD_WIDTH);
|
||||||
return result;
|
return result;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue