Merge bug fixes from recent v0.8c push. Added readme for Grbl Sim.
This commit is contained in:
parent
8a1720e1a1
commit
97d18f0ffe
5 changed files with 17 additions and 3 deletions
3
report.c
3
report.c
|
|
@ -90,6 +90,7 @@ void report_alarm_message(int8_t alarm_code)
|
|||
printPgmString(PSTR("Abort during cycle")); break;
|
||||
}
|
||||
printPgmString(PSTR(". MPos?\r\n"));
|
||||
delay_ms(500); // Force delay to ensure message clears serial write buffer.
|
||||
}
|
||||
|
||||
// Prints feedback messages. This serves as a centralized method to provide additional
|
||||
|
|
@ -326,7 +327,7 @@ void report_realtime_status()
|
|||
print_position[i] -= gc.coord_system[i]+gc.coord_offset[i];
|
||||
}
|
||||
printFloat(print_position[i]);
|
||||
if (i < N_AXIS-1) { printPgmString(PSTR(",")); }
|
||||
if (i < (N_AXIS-1)) { printPgmString(PSTR(",")); }
|
||||
}
|
||||
|
||||
printPgmString(PSTR(">\r\n"));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue