mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-06-30 02:40:57 +00:00
Backlash cleanup (#13659)
…And save backlash, fil. sensor, ExtUI userdata to EEPROM.
This commit is contained in:
parent
0181e57417
commit
15357af67c
22 changed files with 645 additions and 293 deletions
Marlin/src/module
|
@ -113,7 +113,7 @@ Stepper stepper; // Singleton
|
|||
#include "../feature/mixing.h"
|
||||
#endif
|
||||
|
||||
#if FILAMENT_RUNOUT_DISTANCE_MM > 0
|
||||
#ifdef FILAMENT_RUNOUT_DISTANCE_MM
|
||||
#include "../feature/runout.h"
|
||||
#endif
|
||||
|
||||
|
@ -1537,7 +1537,7 @@ uint32_t Stepper::stepper_block_phase_isr() {
|
|||
|
||||
// If current block is finished, reset pointer
|
||||
if (step_events_completed >= step_event_count) {
|
||||
#if FILAMENT_RUNOUT_DISTANCE_MM > 0
|
||||
#ifdef FILAMENT_RUNOUT_DISTANCE_MM
|
||||
runout.block_completed(current_block);
|
||||
#endif
|
||||
axis_did_move = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue