From 954563d6033ad2ae267bc899da92572d440418e0 Mon Sep 17 00:00:00 2001 From: esenapaj Date: Tue, 20 Sep 2016 19:16:05 +0900 Subject: [PATCH] Adjust spacing --- Marlin/stepper.cpp | 18 +++++++++--------- Marlin/stepper.h | 4 ++-- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Marlin/stepper.cpp b/Marlin/stepper.cpp index d2f47fd465..a7eccd8779 100644 --- a/Marlin/stepper.cpp +++ b/Marlin/stepper.cpp @@ -82,10 +82,10 @@ unsigned int Stepper::cleaning_buffer_counter = 0; bool Stepper::locked_z2_motor = false; #endif -long Stepper::counter_X = 0, - Stepper::counter_Y = 0, - Stepper::counter_Z = 0, - Stepper::counter_E = 0; +long Stepper::counter_X = 0, + Stepper::counter_Y = 0, + Stepper::counter_Z = 0, + Stepper::counter_E = 0; volatile uint32_t Stepper::step_events_completed = 0; // The number of step events executed in the current block @@ -101,11 +101,11 @@ volatile uint32_t Stepper::step_events_completed = 0; // The number of step even Stepper::current_estep_rate[E_STEPPERS], Stepper::current_adv_steps[E_STEPPERS]; #else - long Stepper::e_steps[E_STEPPERS], - Stepper::final_advance = 0, - Stepper::old_advance = 0, - Stepper::advance_rate, - Stepper::advance; + long Stepper::e_steps[E_STEPPERS], + Stepper::final_advance = 0, + Stepper::old_advance = 0, + Stepper::advance_rate, + Stepper::advance; #endif #endif diff --git a/Marlin/stepper.h b/Marlin/stepper.h index d5de89657a..b0f0779ea9 100644 --- a/Marlin/stepper.h +++ b/Marlin/stepper.h @@ -118,8 +118,8 @@ class Stepper { static int final_estep_rate; static int current_estep_rate[E_STEPPERS]; // Actual extruder speed [steps/s] static int current_adv_steps[E_STEPPERS]; // The amount of current added esteps due to advance. - // i.e., the current amount of pressure applied - // to the spring (=filament). + // i.e., the current amount of pressure applied + // to the spring (=filament). #else static long e_steps[E_STEPPERS]; static long advance_rate, advance, final_advance;