Browse Source

Merge pull request #1638 from AnHardt/warning4

delta[3] not used when DELTA not defined.
pull/1/head
Scott Lahteine 9 years ago
parent
commit
8664c6d465
  1. 5
      Marlin/Marlin_main.cpp

5
Marlin/Marlin_main.cpp

@ -357,6 +357,7 @@ int fanSpeed = 0;
#ifdef SCARA
float axis_scaling[3] = { 1, 1, 1 }; // Build size scaling, default to 1
static float delta[3] = { 0, 0, 0 };
#endif
bool cancel_heatup = false;
@ -383,10 +384,6 @@ const char echomagic[] PROGMEM = "echo:";
const char axis_codes[NUM_AXIS] = {'X', 'Y', 'Z', 'E'};
static float destination[NUM_AXIS] = { 0, 0, 0, 0 };
#ifndef DELTA
static float delta[3] = { 0, 0, 0 };
#endif
static float offset[3] = { 0, 0, 0 };
static bool home_all_axis = true;
static float feedrate = 1500.0, next_feedrate, saved_feedrate;

Loading…
Cancel
Save