Browse Source

st_synchronize back to normal..

pull/1/head
Bernhard 13 years ago
parent
commit
b1d84d879b
  1. 4
      Marlin/stepper.cpp

4
Marlin/stepper.cpp

@ -707,15 +707,13 @@ void st_init()
}
#include <util/delay.h>
// Block until all buffered steps are executed
void st_synchronize()
{
while(current_block!=0 || blocks_queued()) {
while( blocks_queued()) {
manage_heater();
manage_inactivity(1);
LCD_STATUS;
//_delay_ms(1);
}
}

Loading…
Cancel
Save