We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40eb439 commit bdc2da9Copy full SHA for bdc2da9
grbl/grbl.h
@@ -23,7 +23,7 @@
23
24
// Grbl versioning system
25
#define GRBL_VERSION "1.1h"
26
-#define GRBL_VERSION_BUILD "20190825"
+#define GRBL_VERSION_BUILD "20190830"
27
28
// Define standard libraries used by Grbl.
29
#include <avr/io.h>
grbl/report.c
@@ -578,7 +578,7 @@ void report_realtime_status()
578
if (bit_istrue(lim_pin_state,bit(Y_AXIS))) { serial_write('Y'); }
579
#endif
580
#if (DUAL_AXIS_SELECT == Y_AXIS)
581
- if (bit_istrue(lim_pin_state,bit(X_AXIS))) { serial_write('X');
+ if (bit_istrue(lim_pin_state,bit(X_AXIS))) { serial_write('X'); }
582
if (bit_istrue(lim_pin_state,(bit(Y_AXIS)|bit(N_AXIS)))) { serial_write('Y'); }
583
584
if (bit_istrue(lim_pin_state,bit(Z_AXIS))) { serial_write('Z'); }
0 commit comments