🎨 Misc code and spacing cleanup
This commit is contained in:
@@ -1428,14 +1428,10 @@ void Stepper::isr() {
|
||||
|
||||
// Get the interval to the next ISR call
|
||||
const uint32_t interval = _MIN(
|
||||
uint32_t(HAL_TIMER_TYPE_MAX), // Come back in a very long time
|
||||
nextMainISR // Time until the next Pulse / Block phase
|
||||
#if ENABLED(LIN_ADVANCE)
|
||||
, nextAdvanceISR // Come back early for Linear Advance?
|
||||
#endif
|
||||
#if ENABLED(INTEGRATED_BABYSTEPPING)
|
||||
, nextBabystepISR // Come back early for Babystepping?
|
||||
#endif
|
||||
, uint32_t(HAL_TIMER_TYPE_MAX) // Come back in a very long time
|
||||
OPTARG(LIN_ADVANCE, nextAdvanceISR) // Come back early for Linear Advance?
|
||||
OPTARG(INTEGRATED_BABYSTEPPING, nextBabystepISR) // Come back early for Babystepping?
|
||||
);
|
||||
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user