diff --git a/report.c b/report.c index 50af386..32720eb 100644 --- a/report.c +++ b/report.c @@ -380,7 +380,7 @@ void report_realtime_status() } // If reporting a position, convert the current step count (current_position) to millimeters. - if (bit_istrue(settings.status_report_mask,(BITFLAG_RT_STATUS_MACHINE_POSITION | BITFLAG_RT_STATUS_WORK_POSITION)) { + if (bit_istrue(settings.status_report_mask,(BITFLAG_RT_STATUS_MACHINE_POSITION | BITFLAG_RT_STATUS_WORK_POSITION))) { for (i=0; i< N_AXIS; i++) { print_position[i] = current_position[i]/settings.steps_per_mm[i]; } } diff --git a/settings.h b/settings.h index 951a80e..3465ad8 100644 --- a/settings.h +++ b/settings.h @@ -29,7 +29,7 @@ #define GRBL_VERSION "0.9g" -#define GRBL_VERSION_BUILD "20140817" +#define GRBL_VERSION_BUILD "20140822" // Version of the EEPROM data. Will be used to migrate existing data from older versions of Grbl // when firmware is upgraded. Always stored in byte 0 of eeprom