Fixed typo bug effecting dual-axis build with Y.
This commit is contained in:
parent
40eb439bf2
commit
bdc2da9b59
2 changed files with 2 additions and 2 deletions
|
|
@ -578,7 +578,7 @@ void report_realtime_status()
|
|||
if (bit_istrue(lim_pin_state,bit(Y_AXIS))) { serial_write('Y'); }
|
||||
#endif
|
||||
#if (DUAL_AXIS_SELECT == Y_AXIS)
|
||||
if (bit_istrue(lim_pin_state,bit(X_AXIS))) { serial_write('X');
|
||||
if (bit_istrue(lim_pin_state,bit(X_AXIS))) { serial_write('X'); }
|
||||
if (bit_istrue(lim_pin_state,(bit(Y_AXIS)|bit(N_AXIS)))) { serial_write('Y'); }
|
||||
#endif
|
||||
if (bit_istrue(lim_pin_state,bit(Z_AXIS))) { serial_write('Z'); }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue