Browse Source

babystep synchronisation

Robert Pelnar 6 years ago
parent
commit
f30da4bbca
1 changed files with 4 additions and 0 deletions
  1. 4 0
      Firmware/temperature.cpp

+ 4 - 0
Firmware/temperature.cpp

@@ -1879,14 +1879,18 @@ ISR(TIMER0_COMPB_vect)
    
     if(curTodo>0)
     {
+		asm("cli");
       babystep(axis,/*fwd*/true);
       babystepsTodo[axis]--; //less to do next time
+		asm("sei");
     }
     else
     if(curTodo<0)
     {
+		asm("cli");
       babystep(axis,/*fwd*/false);
       babystepsTodo[axis]++; //less to do next time
+		asm("sei");
     }
   }
 #endif //BABYSTEPPING