-
I'm using SuperSlicer right now and there's an option in the slicer printer settings to add some custom g-code between objects in a sequence. I'm wondering if this firmware has an option to skip the current object being printed, in case there are any issues, and start the next object in the sequence, instead of having to cancel the whole print and start over. |
Beta Was this translation helpful? Give feedback.
Answered by
mriscoc
Sep 22, 2023
Replies: 1 comment 1 reply
-
M486 for cancel object is enabled in this firmware, you can check that in the configuration files: /**
* Cancel Objects
*
* Implement M486 to allow Marlin to skip objects
*/
#define CANCEL_OBJECTS // MRiscoC Enabled M486 to skip objects
#if ENABLED(CANCEL_OBJECTS)
#define CANCEL_OBJECTS_REPORTING // Emit the current object as a status message
#endif I use a cancel object plugin for Octoprint. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
dhysuiej
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
M486 for cancel object is enabled in this firmware, you can check that in the configuration files:
I use a cancel object plugin for Octoprint.