Page 1 of 1

Safe Probe M213/214 Stop instead of RESET

PostPosted: Sun Feb 27, 2022 8:40 pm
by DanStory
It would be nice to have option to choose if probe trigger in safe mode does a RESET vs Stop (with Decel). I have RESET force me to rehome, as that is an abrupt interruption to motion and typically my jog/feed rate while using probe has enough time to stop with deceleration without causing permanent damage.

Re: Safe Probe M213/214 Stop instead of RESET

PostPosted: Wed Mar 02, 2022 2:28 am
by DanStory
Additionally it would be nice that in a macro that executes,
Code: Select all
var gcode = new List<string>(new []{
"M213",
"G1 ...",
"(PROBE TRIGGER!)",
"G1 ...",
"M214"
});
exec.Codelist(gcode);
while (exec.IsMoving()) { }

It does a "soft-stop", i.e. motion stops, exec.IsMoving() is false and exec.Ismacrostopped() is false but can check #5060 if the probe triggered (or something along those lines).

Re: Safe Probe M213/214 Stop instead of RESET

PostPosted: Wed Apr 13, 2022 7:47 pm
by Pulcik
+1, agree.
Stop would be good, so we can work with that in macros.

Cheers,
Martin