Clean up and new streaming script check-mode feature.

[new] The stream.py streaming script now has a check-mode option, where it will place Grbl in $C check mode automatically and then stream the g-code program. It's a very fast way to check if the g-code program has any errors.

[fix] The debug variable was not initialized if the debug option was enabled in config.h

[fix] Updated error_codes CSV file to the same format as the others.
This commit is contained in:
Sonny Jeon 2017-07-17 21:25:42 -06:00
parent 790c666ecb
commit 921e5a9799
5 changed files with 113 additions and 52 deletions

View file

@ -23,7 +23,7 @@
// Grbl versioning system
#define GRBL_VERSION "1.1f"
#define GRBL_VERSION_BUILD "20170531"
#define GRBL_VERSION_BUILD "20170717"
// Define standard libraries used by Grbl.
#include <avr/io.h>

View file

@ -31,6 +31,9 @@ volatile uint8_t sys_rt_exec_state; // Global realtime executor bitflag variab
volatile uint8_t sys_rt_exec_alarm; // Global realtime executor bitflag variable for setting various alarms.
volatile uint8_t sys_rt_exec_motion_override; // Global realtime executor bitflag variable for motion-based overrides.
volatile uint8_t sys_rt_exec_accessory_override; // Global realtime executor bitflag variable for spindle/coolant overrides.
#ifdef DEBUG
volatile uint8_t sys_rt_exec_debug;
#endif
int main(void)