Skip to content

Commit

Permalink
Probing command gets stuck in hold if several g38.2 are submitted
Browse files Browse the repository at this point in the history
Ex.
G0 X0 Y0 Z0
G38.2 Z-10 F100
G10 L20 P0 Z0
G0 Z2
G38.2 Z-1 F50
G10 L20 P0 Z0
G0 Z2
G0 X0 Y0
G38.2 Z-1 F100
G0 Z2
  • Loading branch information
henols committed Mar 7, 2014
1 parent 76ab1b6 commit 3d053d8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions motion_control.c
Expand Up @@ -279,6 +279,7 @@ void mc_probe_cycle(float *target, float feed_rate, uint8_t invert_feed_rate, in
void mc_probe_cycle(float *target, float feed_rate, uint8_t invert_feed_rate)
#endif
{
if (sys.state != STATE_CYCLE) protocol_auto_cycle_start();
protocol_buffer_synchronize(); // Finish all queued commands
if (sys.abort) { return; } // Return if system reset has been issued.

Expand Down

0 comments on commit 3d053d8

Please sign in to comment.