-
-
Notifications
You must be signed in to change notification settings - Fork 19.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RC6 - "start print" does not zero print time after "stop print" command #3826
Comments
We need more information. How do you start printing is it from the LCD or from the host ? |
Started from SD card / LCD. In which file is the printjob_timer_autostart variable located? |
A few minutes ago a new PR fixing some issues with the print job timer was merged into RCBugfix, would you care to download the latest version and to a quick test to see if the behavior is still there ?
|
PRINTJOB_TIMER_AUTOSTART isn't showing up when I search in configuration.h of RC6 ? Afraid I can't jump into the Bugfix just at the moment.... |
In that case you don't have a current RCBugFix. (https://github.com/MarlinFirmware/Marlin/blob/RCBugFix/Marlin/Configuration.h#L772) |
I've had a quick look and this is indeed a bug, we stop the SD print using a custom function and this function is not taking into account the print job timer. static void lcd_sdcard_stop() {
stepper.quick_stop();
card.sdprinting = false;
card.closefile();
thermalManager.autotempShutdown();
cancel_heatup = true;
lcd_setstatus(MSG_PRINT_ABORTED, true);
} |
…rint counter The LCD menu items for SD printing pause/stop have been updated to control also the print job timer. This commit also fixes a small output bug with M78, the failed print counter was displaying the wrong value.
Closes #3826: SD printing will now pause and stop the print counter
…rint counter The LCD menu items for SD printing pause/stop have been updated to control also the print job timer. This commit also fixes a small output bug with M78, the failed print counter was displaying the wrong value.
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
RC6 firmware
Supposing you stop a print with "stop print" from LCD.
The current print time remains on the display. (Good.)
Then you start another print.
The time for this second print starts from the end time of the previous print. Without first zeroing.
Not good. ;-)
The text was updated successfully, but these errors were encountered: