Skip to content

Commit dbe2ed4

Browse files
committed
Fix pause/resume when using M25/M601
Remove the conflicting and mostly useless card.paused flag (the printing is either paused, or not) and switch to isPrintPaused only which accounts for both cases (SD/USB) correctly. Fix M27/getStatus to show the current real status of the SD print. Synchronize the queue on M601, as required to precisely pause the print at the correct instruction. Alias M25 to M601, which when combined with PR prusa3d#1899 fixes issue prusa3d#1614. Guard against incorrect usage in M601, M602 and M603.
1 parent 18eaf21 commit dbe2ed4

6 files changed

+48
-56
lines changed

Firmware/Marlin.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ extern uint16_t gcode_in_progress;
396396
extern LongTimer safetyTimer;
397397

398398
#define PRINT_PERCENT_DONE_INIT 0xff
399-
#define PRINTER_ACTIVE (IS_SD_PRINTING || is_usb_printing || isPrintPaused || (custom_message_type == CustomMsg::TempCal) || saved_printing || (lcd_commands_type == LcdCommands::Layer1Cal) || card.paused || mmu_print_saved)
399+
#define PRINTER_ACTIVE (IS_SD_PRINTING || is_usb_printing || isPrintPaused || (custom_message_type == CustomMsg::TempCal) || saved_printing || (lcd_commands_type == LcdCommands::Layer1Cal) || mmu_print_saved)
400400

401401
//! Beware - mcode_in_progress is set as soon as the command gets really processed,
402402
//! which is not the same as posting the M600 command into the command queue

Firmware/Marlin_main.cpp

+21-15
Original file line numberDiff line numberDiff line change
@@ -5377,21 +5377,19 @@ if(eSoundMode!=e_SOUND_MODE_SILENT)
53775377
card.openFile(strchr_pointer + 4,true);
53785378
break;
53795379

5380-
//! ### M24 - Start SD print
5380+
//! ### M24 - Start/resume SD print
53815381
// ----------------------------------
53825382
case 24:
5383-
if (!card.paused)
5384-
failstats_reset_print();
5385-
card.startFileprint();
5386-
starttime=_millis();
5383+
if (isPrintPaused)
5384+
lcd_resume_print();
5385+
else
5386+
{
5387+
failstats_reset_print();
5388+
card.startFileprint();
5389+
starttime=_millis();
5390+
}
53875391
break;
53885392

5389-
//! ### M25 - Pause SD print
5390-
// ----------------------------------
5391-
case 25:
5392-
card.pauseSDPrint();
5393-
break;
5394-
53955393
//! ### M26 S\<index\> - Set SD index
53965394
//! Set position in SD card file to index in bytes.
53975395
//! This command is expected to be called after M23 and before M24.
@@ -7246,26 +7244,34 @@ SERIAL_PROTOCOLPGM("\n\n");
72467244
break;
72477245
#endif //FILAMENTCHANGEENABLE
72487246

7247+
//! ### M25 - Pause SD print
72497248
//! ### M601 - Pause print
7249+
//! ### M125 - Pause print (TODO: not implemented)
72507250
// -------------------------------
7251+
case 25:
72517252
case 601:
72527253
{
7253-
cmdqueue_pop_front(); //trick because we want skip this command (M601) after restore
7254-
lcd_pause_print();
7254+
if (!isPrintPaused)
7255+
{
7256+
st_synchronize();
7257+
cmdqueue_pop_front(); //trick because we want skip this command (M601) after restore
7258+
lcd_pause_print();
7259+
}
72557260
}
72567261
break;
72577262

72587263
//! ### M602 - Resume print
72597264
// -------------------------------
72607265
case 602: {
7261-
lcd_resume_print();
7266+
if (isPrintPaused)
7267+
lcd_resume_print();
72627268
}
72637269
break;
72647270

72657271
//! ### M603 - Stop print
72667272
// -------------------------------
72677273
case 603: {
7268-
lcd_print_stop();
7274+
Stop();
72697275
}
72707276
break;
72717277

Firmware/cardreader.cpp

+23-34
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ CardReader::CardReader()
2525
sdpos = 0;
2626
sdprinting = false;
2727
cardOK = false;
28-
paused = false;
2928
saving = false;
3029
logging = false;
3130
autostart_atmillis=0;
@@ -242,24 +241,13 @@ void CardReader::startFileprint()
242241
if(cardOK)
243242
{
244243
sdprinting = true;
245-
paused = false;
246-
Stopped = false;
244+
Stopped = false;
247245
#ifdef SDCARD_SORT_ALPHA
248246
//flush_presort();
249247
#endif
250248
}
251249
}
252250

253-
void CardReader::pauseSDPrint()
254-
{
255-
if(sdprinting)
256-
{
257-
sdprinting = false;
258-
paused = true;
259-
}
260-
}
261-
262-
263251
void CardReader::openLogFile(const char* name)
264252
{
265253
logging = true;
@@ -408,9 +396,7 @@ void CardReader::openFile(const char* name,bool read, bool replace_current/*=tru
408396
SERIAL_ECHOLN(name);
409397
}
410398
sdprinting = false;
411-
paused = false;
412-
413-
399+
414400
SdFile myDir;
415401
const char *fname=name;
416402
diveSubfolder(fname,myDir);
@@ -492,24 +478,27 @@ uint32_t CardReader::getFileSize()
492478

493479
void CardReader::getStatus()
494480
{
495-
if(sdprinting){
496-
SERIAL_PROTOCOL(longFilename);
497-
SERIAL_PROTOCOLPGM("\n");
498-
SERIAL_PROTOCOLRPGM(_N("SD printing byte "));////MSG_SD_PRINTING_BYTE
499-
SERIAL_PROTOCOL(sdpos);
500-
SERIAL_PROTOCOLPGM("/");
501-
SERIAL_PROTOCOLLN(filesize);
502-
uint16_t time = _millis()/60000 - starttime/60000;
503-
SERIAL_PROTOCOL(itostr2(time/60));
504-
SERIAL_PROTOCOL(':');
505-
SERIAL_PROTOCOL(itostr2(time%60));
506-
SERIAL_PROTOCOLPGM("\n");
507-
}
508-
else if (paused) {
509-
SERIAL_PROTOCOLLNPGM("SD print paused");
510-
}
511-
else if (saved_printing) {
512-
SERIAL_PROTOCOLLNPGM("Print saved");
481+
if(sdprinting)
482+
{
483+
if (isPrintPaused) {
484+
SERIAL_PROTOCOLLNPGM("SD print paused");
485+
}
486+
else if (saved_printing) {
487+
SERIAL_PROTOCOLLNPGM("Print saved");
488+
}
489+
else {
490+
SERIAL_PROTOCOL(longFilename);
491+
SERIAL_PROTOCOLPGM("\n");
492+
SERIAL_PROTOCOLRPGM(_N("SD printing byte "));////MSG_SD_PRINTING_BYTE
493+
SERIAL_PROTOCOL(sdpos);
494+
SERIAL_PROTOCOLPGM("/");
495+
SERIAL_PROTOCOLLN(filesize);
496+
uint16_t time = _millis()/60000 - starttime/60000;
497+
SERIAL_PROTOCOL(itostr2(time/60));
498+
SERIAL_PROTOCOL(':');
499+
SERIAL_PROTOCOL(itostr2(time%60));
500+
SERIAL_PROTOCOLPGM("\n");
501+
}
513502
}
514503
else {
515504
SERIAL_PROTOCOLLNPGM("Not SD printing");

Firmware/cardreader.h

-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ class CardReader
2525
void closefile(bool store_location=false);
2626
void release();
2727
void startFileprint();
28-
void pauseSDPrint();
2928
uint32_t getFileSize();
3029
void getStatus();
3130
void printingHasFinished();
@@ -75,7 +74,6 @@ class CardReader
7574
bool logging;
7675
bool sdprinting ;
7776
bool cardOK ;
78-
bool paused ;
7977
char filename[13];
8078
uint16_t modificationTime, modificationDate;
8179
uint32_t cluster, position;

Firmware/ultralcd.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4108,7 +4108,7 @@ void prusa_statistics(int _message, uint8_t _fil_nr) {
41084108
{
41094109
prusa_statistics_case0(15);
41104110
}
4111-
else if (isPrintPaused || card.paused)
4111+
else if (isPrintPaused)
41124112
{
41134113
prusa_statistics_case0(14);
41144114
}

Tests/PrusaStatistics_test.cpp

+2-3
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ void prusa_statistics(int _message, uint8_t _fil_nr) {
198198
SERIAL_ECHOLN("}");
199199
status_number = 15;
200200
}
201-
else if (isPrintPaused || card.paused)
201+
else if (isPrintPaused)
202202
{
203203
SERIAL_ECHO("{");
204204
prusa_stat_printerstatus(14);
@@ -490,7 +490,7 @@ void prusa_statistics(int _message, uint8_t _fil_nr) {
490490
{
491491
prusa_statistics_case0(15);
492492
}
493-
else if (isPrintPaused || card.paused)
493+
else if (isPrintPaused)
494494
{
495495
prusa_statistics_case0(14);
496496
}
@@ -753,7 +753,6 @@ TEST_CASE("Prusa_statistics test", "[prusa_stats]")
753753
SERIALS_RESET();
754754

755755
isPrintPaused = 0;
756-
card.paused = 0;
757756
IS_SD_PRINTING = 1;
758757
old_code::prusa_statistics(test_codes[i],0);
759758
new_code::prusa_statistics(test_codes[i],0);

0 commit comments

Comments
 (0)