Merge pull request #1073 from WingTangWong/wing-fix-float-delta

Wing fix float delta
This commit is contained in:
Erik van der Zalm 2014-10-06 13:41:01 +02:00
commit b360306881

View file

@ -318,7 +318,11 @@ bool cancel_heatup = false ;
//===========================================================================
const char axis_codes[NUM_AXIS] = {'X', 'Y', 'Z', 'E'};
static float destination[NUM_AXIS] = { 0.0, 0.0, 0.0, 0.0};
#ifndef DELTA
static float delta[3] = {0.0, 0.0, 0.0};
#endif
static float offset[3] = {0.0, 0.0, 0.0};
static bool home_all_axis = true;
static float feedrate = 1500.0, next_feedrate, saved_feedrate;