mirror of
https://github.com/grblHAL/core.git
synced 2026-02-06 00:52:35 +08:00
Fix for coolant issue when resetting from feed hold state.
This commit is contained in:
@@ -362,7 +362,7 @@ bool protocol_main_loop (void)
|
||||
// completed. In either case, auto-cycle start, if enabled, any queued moves.
|
||||
protocol_auto_cycle_start();
|
||||
|
||||
if(!protocol_execute_realtime() && sys.abort) // Runtime command check point.
|
||||
if(sys.abort || !protocol_execute_realtime()) // Runtime command check point.
|
||||
return !sys.flags.exit; // Bail to main() program loop to reset system.
|
||||
|
||||
sys.cancel = false;
|
||||
|
||||
Reference in New Issue
Block a user