Relative movement without using G90 and G91
-
I'm using some nested macros and I'm having issues where, when I'm in relative movment mode, the machine returns to absolute movement becaue I've called a macro that has the G90 command. I'm wondering if it's possible to issue a single relative movement command (eg. G1 Z20) in absolute movement mode without using G90 and G91. Alternatively, is it possible to set the value of inputs[0].axesRelative to a variable value like set inputs[0].axesRelative = {RelativeMoveVar}?
I've tried using M120 and M121 but it also affects feedrate and hotend position.
-
@Phrayzur when a macro finishes the absolute/relative mode returns to what it was when the macro was called.
-
@dc42 You are absolutely correct! I don't know why I thought otherwise. Thanks!
-
-