Use descriptive constants instead of numeric literals

This commit is contained in:
Gabe Rosenhouse 2014-02-19 00:02:59 -08:00
parent abba7a0003
commit 2ccdf4f36d

View File

@ -1241,7 +1241,7 @@ void process_commands()
#else // NOT DELTA
home_all_axis = !((code_seen(axis_codes[0])) || (code_seen(axis_codes[1])) || (code_seen(axis_codes[2])));
home_all_axis = !((code_seen(axis_codes[X_AXIS])) || (code_seen(axis_codes[Y_AXIS])) || (code_seen(axis_codes[Z_AXIS])));
#if Z_HOME_DIR > 0 // If homing away from BED do Z first
if((home_all_axis) || (code_seen(axis_codes[Z_AXIS]))) {