From 23cb899c5acdbf9ed68971cbd5741b4327a6b873 Mon Sep 17 00:00:00 2001 From: AnHardt Date: Wed, 21 Jan 2015 16:30:45 +0100 Subject: [PATCH] removed function step_wait() from stepper.cpp removed function step_wait() from stepper.cpp because its used nowhere. --- Marlin/stepper.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Marlin/stepper.cpp b/Marlin/stepper.cpp index b2e7d1208..4810431ff 100644 --- a/Marlin/stepper.cpp +++ b/Marlin/stepper.cpp @@ -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;