I’ve ran into an issue with the stock SV08, when a print job ends the machine moves the head to the left rear comer at the same height that the Z axis is/was after the final print. I want the head to move the Z axis to G90 G0 Z300 F1000
I looked at the END_PRINT macro in Marco.cfg and it appears to be in relative mode
Split the line G90 G0 Z300 F1000 to…
G90
G0 Z300 F1000
G90 puts the printer in absolute mode.
In my experience, Marlin doesn’t work well with more than one command in a line
As an aside, I always use G1 even though G0 & G1 are more or less an alias for each other.
While working with another printer I found the Orca Nozzle Machine Code section, under END_PRINT I added:
M104 S0 ; turn off temperature
M140 S0 ; turn off heatbed
G92 E0.0 ; reset extruder distance position
G1 E-1 F2100 ; retract
G0 X50 Y250 F12000;
G90
G1 Z210 F500
M84 ; disable motors
M107 ; turn off fan
SET_VELOCITY_LIMIT ACCEL_TO_DECEL=4000
I haven’t tested this, waiting on parts