optimisation: Remove unused Z offset
Frees up some SRAM Change in memory: Flash: 0 bytes SRAM: -4 bytes
This commit is contained in:
parent
8bd71b7bf0
commit
e323490659
|
|
@ -267,7 +267,7 @@ const char axis_codes[NUM_AXIS] = {'X', 'Y', 'Z', 'E'};
|
||||||
float destination[NUM_AXIS] = { 0.0, 0.0, 0.0, 0.0};
|
float destination[NUM_AXIS] = { 0.0, 0.0, 0.0, 0.0};
|
||||||
|
|
||||||
// For tracing an arc
|
// For tracing an arc
|
||||||
static float offset[3] = {0.0, 0.0, 0.0};
|
static float offset[2] = {0.0, 0.0};
|
||||||
|
|
||||||
// Current feedrate
|
// Current feedrate
|
||||||
float feedrate = 1500.0;
|
float feedrate = 1500.0;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue