Add comment about planner_aborted = false

This commit is contained in:
Guðni Már Gilbert 2023-03-26 08:54:47 +00:00
parent 6bdc3c5cfb
commit 4342217159
1 changed files with 6 additions and 0 deletions

View File

@ -20,6 +20,12 @@ float MoveRaiseZ(float delta) {
void planner_abort_queued_moves() {
planner_abort_hard();
// Unblock the planner. This should be safe in the
// toolchange context. Currently we are mainly aborting
// excess E-moves after detecting filament during toolchange.
// If a MMU error is reported, the planner must be unblocked
// as well so the extruder can be parked safely.
planner_aborted = false;
}