Merge pull request #1395 from AnHardt/iss1394

removed function step_wait() from stepper.cpp
This commit is contained in:
Scott Lahteine 2015-01-23 06:58:10 -08:00
commit 9040446780

View File

@ -238,12 +238,6 @@ void st_wake_up() {
ENABLE_STEPPER_DRIVER_INTERRUPT();
}
void step_wait(){
for(int8_t i=0; i < 6; i++){
}
}
FORCE_INLINE unsigned short calc_timer(unsigned short step_rate) {
unsigned short timer;
if(step_rate > MAX_STEP_FREQUENCY) step_rate = MAX_STEP_FREQUENCY;