mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-06-28 01:40:56 +00:00
clear_block_buffer, kill_current_block in quick_stop
This commit is contained in:
parent
99282a46e9
commit
36b97bde9f
3 changed files with 9 additions and 6 deletions
Marlin/src/module
|
@ -2083,10 +2083,11 @@ void Stepper::finish_and_disable() {
|
|||
}
|
||||
|
||||
void Stepper::quick_stop() {
|
||||
cleaning_buffer_counter = 5000;
|
||||
DISABLE_STEPPER_DRIVER_INTERRUPT();
|
||||
while (planner.has_blocks_queued()) planner.discard_current_block();
|
||||
kill_current_block();
|
||||
current_block = NULL;
|
||||
cleaning_buffer_counter = 5000;
|
||||
planner.clear_block_buffer();
|
||||
ENABLE_STEPPER_DRIVER_INTERRUPT();
|
||||
#if ENABLED(ULTRA_LCD)
|
||||
planner.clear_block_buffer_runtime();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue