Skip to content

Commit

Permalink
Fixed typo bug effecting dual-axis build with Y.
Browse files Browse the repository at this point in the history
  • Loading branch information
chamnit committed Aug 30, 2019
1 parent 40eb439 commit bdc2da9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion grbl/grbl.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

// Grbl versioning system
#define GRBL_VERSION "1.1h"
#define GRBL_VERSION_BUILD "20190825"
#define GRBL_VERSION_BUILD "20190830"

// Define standard libraries used by Grbl.
#include <avr/io.h>
Expand Down
2 changes: 1 addition & 1 deletion grbl/report.c
Original file line number Diff line number Diff line change
Expand Up @@ -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'); }
Expand Down

0 comments on commit bdc2da9

Please sign in to comment.