소스 검색

whitespace

PavelSindler 7 년 전
부모
커밋
5c118a7fac
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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() {