Marlin code whitespace cleanup

This commit is contained in:
Scott Lahteine
2017-09-27 04:57:14 -05:00
parent 9dd5390d7d
commit dff2904c0f
7 changed files with 18 additions and 18 deletions

View File

@ -302,7 +302,7 @@ class Stepper {
#endif
#ifdef CPU_32_BIT
// In case of high-performance processor, it is able to calculate in real-time
// In case of high-performance processor, it is able to calculate in real-time
timer = (uint32_t)(HAL_STEPPER_TIMER_RATE) / step_rate;
if (timer < (HAL_STEPPER_TIMER_RATE / (STEP_DOUBLER_FREQUENCY * 2))) { // (STEP_DOUBLER_FREQUENCY * 2 kHz - this should never happen)
timer = (HAL_STEPPER_TIMER_RATE / (STEP_DOUBLER_FREQUENCY * 2));