optimisation: Remove unused Z offset

Frees up some SRAM

Change in memory:
Flash: 0 bytes
SRAM: -4 bytes
This commit is contained in:
Guðni Már Gilbert 2023-09-19 23:37:38 +00:00
parent 8bd71b7bf0
commit e323490659
1 changed files with 1 additions and 1 deletions

View File

@ -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};
// For tracing an arc
static float offset[3] = {0.0, 0.0, 0.0};
static float offset[2] = {0.0, 0.0};
// Current feedrate
float feedrate = 1500.0;