What is g-code for disarming individual steppers?

I am thinking about cutting power supply to my steppers because of EMI. Is it possible through g-code? (I really hope so)

More info about purpose of my LowRiderV3

To disable individually:
M84 X
M84 Y
M84 Z

https://marlinfw.org/docs/gcode/M018.html

3 Likes

Thanks. After this command, do I have to enable them or I just write next position, for either axis, and they are automatically enabled?

Next motion that moves the axis will enable the stepper. If Y is disabled, moving pure X will not enable Y, but moving Y or a combined move that includes Y will enable Y.

2 Likes

Great! Thank you