Obey hard limit switches?
-
@Gerrard said in Obey hard limit switches?:
So that takes care of the triggers during jobs, but what about other Macros or manual movement (jogging etc)? Is there an overriding default behaviour? Should it be defined as a trigger in config.g, then configured as an endstop for the homing operations and a trigger again after homing?
You can configure a trigger to be active only when running a job from SD card.
-
@kazolar said in Obey hard limit switches?:
There is actually no way. If you setup a eStop trigger you have to reset or powercycle the board, no good. My custom M113 does exactly what eStop button in the webui / panel due does-- stop the world (immediately) and reboot.
Would it be better if emergency stop (M112) rebooted the board automatically?
The disadvantage i can see with doing that is that if the board is being fed GCodes via USB or from an attached SBC, it may start executing commands again immediately. I think that's why M122 was defined originally to require a manual reset. Similar how a proper Emergency Stop switch has be reset before you can run the machine again.
-
In my travels I have come across M564. Would a M564 H1 S1 at the start of my print, or just after the first layer keep the motion within the end-stops?
-
No, but if you set your maximum travel range the firmware will stay within that regardless of end stops. So if your motion system is dimensioned to not skip steps you'll be fine.
Otherwise add the macro to pause or e-stop if end stops are tripped.
-
@dc42 In answer you your question, I believe that a E-Stop signal should just stop all motion. It should not reboot the board as that would clear any of the events or activity that caused the problem and hamper investigation of the cause. On a CNC machine the E-Stop should also turn off the power to the servo's and spindle. That is unless they are equipped with a braking mechanism and in that case the brake should be applied first then power off.
The point is SAFETY. E-Stop is what you press if a problem exists that is going to cause damage to you or the machine. The stop or feed hold button is what you press if you think there may be a problem.
-
@maxspongebob said in Obey hard limit switches?:
@dc42 In answer you your question, I believe that a E-Stop signal should just stop all motion. It should not reboot the board as that would clear any of the events or activity that caused the problem and hamper investigation of the cause. On a CNC machine the E-Stop should also turn off the power to the servo's and spindle. That is unless they are equipped with a braking mechanism and in that case the brake should be applied first then power off.
Thanks. I guess we'll need a separate mechanism to reset the E-stop without resetting the board, possibly M999 S0 or else a new M-code.
-
@bearer So lets say that a print is dislodged from the bed and gets wedged such that the steppers skip some steps. Then every time the head travels to the opposite side it will bash up against whatever is in the way beyond the end-stop until the job is complete.
Doesn't sound like a good plan to me.
Why not just pay attention to the end-stop signal and stop if it is tripped?
-
Is that a fault of the board or the printer? The board allows you compensate for that by using the macro to pay attention to the end stops and take whatever action you desire, just like it allows you to not configure end stops at all if thats your cup of tea.
The better plan would be to use stall guard to detect the lost steps if you want to get pedantic.
-
@bearer You have to remember, we are not just talking about small 3D printers any longer. Not every machine uses stepper motors driven from the board. Stall guard doesn't help if your motors don't stall.
My point was that a basic function of a motion controller is to cause motion based on commands to do so, and to stop based on feedback.
While my Duet 3 is working great at causing motion, it is not so good at paying attention to feedback from the system. In my opinion it should be an out-of-the-box feature to stop the motion of an axis or spindle based on a hardware signal. Virtually every other motion controller that I have used, granted they are mostly for CNC subtractive machines, does this.
Requiring that the customer also create and program macros to achieve basic functionality is a stretch. Most would just move on to another board that provides the features they are looking for.
-
I really don't see the point in getting worked up over something you could easily address by submitting a pull request or issue to the online configurator to include that by default for cnc setups.*
Those who don't use the configurator can probably manage to configure it if the so choose.
*) although its no guarntee the devs would accept, maybe adding a comment to the config is a middle ground?
-
@maxspongebob said in Obey hard limit switches?:
Requiring that the customer also create and program macros to achieve basic functionality is a stretch.
Really? Given the amount of work that goes into building these machines a few minutes coding a macro is a stretch?
Frederick