Space out array values

This commit is contained in:
Scott Lahteine
2016-09-13 19:01:04 -05:00
parent d4599fd8ed
commit a1812b55f6
24 changed files with 62 additions and 62 deletions

View File

@ -452,13 +452,13 @@
* Default Axis Steps Per Unit (steps/mm)
* Override with M92
*/
#define DEFAULT_AXIS_STEPS_PER_UNIT {400, 400, 400, 163} // default steps per unit for ***** MakiBox A6 *****
#define DEFAULT_AXIS_STEPS_PER_UNIT { 400, 400, 400, 163 } // default steps per unit for ***** MakiBox A6 *****
/**
* Default Max Feed Rate (mm/s)
* Override with M203
*/
#define DEFAULT_MAX_FEEDRATE {60, 60, 20, 45}
#define DEFAULT_MAX_FEEDRATE { 60, 60, 20, 45 }
/**
* Default Max Acceleration (change/s) change = mm/s
@ -466,7 +466,7 @@
*
* Maximum start speed for accelerated moves: { X, Y, Z, E }
*/
#define DEFAULT_MAX_ACCELERATION {2000,2000,30,10000}
#define DEFAULT_MAX_ACCELERATION { 2000, 2000, 30, 10000 }
/**
* Default Acceleration (change/s) change = mm/s

View File

@ -389,7 +389,7 @@
// Number of channels available for I2C digipot, For Azteeg X3 Pro we have 8
#define DIGIPOT_I2C_NUM_CHANNELS 4
// actual motor currents in Amps, need as many here as DIGIPOT_I2C_NUM_CHANNELS
#define DIGIPOT_I2C_MOTOR_CURRENTS {1.7, 1.7, 1.7, 1.7}
#define DIGIPOT_I2C_MOTOR_CURRENTS { 1.7, 1.7, 1.7, 1.7 }
//===========================================================================
//=============================Additional Features===========================