avoid warning: 'SpecialMoveE' defined but not used

This commit is contained in:
Michael Moon 2011-04-04 09:14:22 +10:00
parent be18eb90b8
commit 95e7cda9db
1 changed files with 2 additions and 0 deletions

View File

@ -60,6 +60,7 @@ static void zero_z(void) {
enqueue(&t);
}
#if E_STARTSTOP_STEPS > 0
/// move E by a certain amount at a certain speed
static void SpecialMoveE(int32_t e, uint32_t f) {
TARGET t = startpoint;
@ -67,6 +68,7 @@ static void SpecialMoveE(int32_t e, uint32_t f) {
t.F = f;
enqueue(&t);
}
#endif /* E_STARTSTOP_STEPS > 0 */
/************************************************************************//**