Added #ifndef DELTA wrapper to float delta
This commit is contained in:
parent
1d62309d2a
commit
88d12a762a
@ -318,7 +318,10 @@ bool cancel_heatup = false ;
|
|||||||
//===========================================================================
|
//===========================================================================
|
||||||
const char axis_codes[NUM_AXIS] = {'X', 'Y', 'Z', 'E'};
|
const char axis_codes[NUM_AXIS] = {'X', 'Y', 'Z', 'E'};
|
||||||
static float destination[NUM_AXIS] = { 0.0, 0.0, 0.0, 0.0};
|
static float destination[NUM_AXIS] = { 0.0, 0.0, 0.0, 0.0};
|
||||||
|
|
||||||
static float delta[3] = {0.0, 0.0, 0.0};
|
static float delta[3] = {0.0, 0.0, 0.0};
|
||||||
|
#endif
|
||||||
|
|
||||||
static float offset[3] = {0.0, 0.0, 0.0};
|
static float offset[3] = {0.0, 0.0, 0.0};
|
||||||
static bool home_all_axis = true;
|
static bool home_all_axis = true;
|
||||||
static float feedrate = 1500.0, next_feedrate, saved_feedrate;
|
static float feedrate = 1500.0, next_feedrate, saved_feedrate;
|
||||||
|
Loading…
Reference in New Issue
Block a user