Browse Source

whitespace

PavelSindler 7 years ago
parent
commit
5c118a7fac
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Firmware/stepper.cpp

+ 2 - 2
Firmware/stepper.cpp

@@ -735,7 +735,7 @@ void isr() {
 
   void advance_isr() {
 
-	nextAdvanceISR = eISR_Rate;
+    nextAdvanceISR = eISR_Rate;
 
     if (e_steps) {
       bool dir =
@@ -785,7 +785,7 @@ void isr() {
     }
 
     // Don't run the ISR faster than possible
-	if (OCR1A < TCNT1 + 16) OCR1A = TCNT1 + 16;
+    if (OCR1A < TCNT1 + 16) OCR1A = TCNT1 + 16;
   }
   
   void clear_current_adv_vars() {