Browse Source

Adjust spacing

esenapaj 8 years ago
parent
commit
954563d603
2 changed files with 11 additions and 11 deletions
  1. 9
    9
      Marlin/stepper.cpp
  2. 2
    2
      Marlin/stepper.h

+ 9
- 9
Marlin/stepper.cpp View File

82
   bool Stepper::locked_z2_motor = false;
82
   bool Stepper::locked_z2_motor = false;
83
 #endif
83
 #endif
84
 
84
 
85
-long  Stepper::counter_X = 0,
86
-      Stepper::counter_Y = 0,
87
-      Stepper::counter_Z = 0,
88
-      Stepper::counter_E = 0;
85
+long Stepper::counter_X = 0,
86
+     Stepper::counter_Y = 0,
87
+     Stepper::counter_Z = 0,
88
+     Stepper::counter_E = 0;
89
 
89
 
90
 volatile uint32_t Stepper::step_events_completed = 0; // The number of step events executed in the current block
90
 volatile uint32_t Stepper::step_events_completed = 0; // The number of step events executed in the current block
91
 
91
 
101
         Stepper::current_estep_rate[E_STEPPERS],
101
         Stepper::current_estep_rate[E_STEPPERS],
102
         Stepper::current_adv_steps[E_STEPPERS];
102
         Stepper::current_adv_steps[E_STEPPERS];
103
   #else
103
   #else
104
-    long  Stepper::e_steps[E_STEPPERS],
105
-          Stepper::final_advance = 0,
106
-          Stepper::old_advance = 0,
107
-          Stepper::advance_rate,
108
-          Stepper::advance;
104
+    long Stepper::e_steps[E_STEPPERS],
105
+         Stepper::final_advance = 0,
106
+         Stepper::old_advance = 0,
107
+         Stepper::advance_rate,
108
+         Stepper::advance;
109
   #endif
109
   #endif
110
 #endif
110
 #endif
111
 
111
 

+ 2
- 2
Marlin/stepper.h View File

118
         static int final_estep_rate;
118
         static int final_estep_rate;
119
         static int current_estep_rate[E_STEPPERS]; // Actual extruder speed [steps/s]
119
         static int current_estep_rate[E_STEPPERS]; // Actual extruder speed [steps/s]
120
         static int current_adv_steps[E_STEPPERS];  // The amount of current added esteps due to advance.
120
         static int current_adv_steps[E_STEPPERS];  // The amount of current added esteps due to advance.
121
-                                                  // i.e., the current amount of pressure applied
122
-                                                  // to the spring (=filament).
121
+                                                   // i.e., the current amount of pressure applied
122
+                                                   // to the spring (=filament).
123
       #else
123
       #else
124
         static long e_steps[E_STEPPERS];
124
         static long e_steps[E_STEPPERS];
125
         static long advance_rate, advance, final_advance;
125
         static long advance_rate, advance, final_advance;

Loading…
Cancel
Save