Ran into an interesting issue yesterday as I started to modify my start script on my CR-X Pro (stock). I've always used Cura before to slice my prints and just recently switched to using S3D. After a few days reading about gcode commands and what they do, I modified the start script as follows:
G28 ; home all axes
G1 Z10 F600 ; raise Z axis
M190 S[bed0_temperature] ; stabilize bed
G92 E0 ; reset extrusion distance
G1 X5 Y10 Z0.2 F3000 ; move to wait position
M109 S[extruder0_temperature] ; stabilize extruder
G1 E90 F1500 ; load filament
G92 E0 ; reset extrusion distance
G1 F600 X160 E15 ; prime nozzle in a line
G1 F5000 X180 ; quick wipe
G92 E0 ; reset extrusion distance
G92 E0
So here is where things get interesting using S3D. After Slicing, the preview of the print runs as written and expected.
Ive attempted a small test print using three different methods:
S3D machine control panel connected via USB running the gcode without saving to file. RESULT: successful start script and successful print.
S3D machine control panel connected via USB running the gcode AFTER saving to file. RESULT: successful start script and successful print.
Save to SD Card. RESULT: Failed start script but successful print. (instead of priming a line across the front of the bed as written it loads the filament and immediately draws a 3cm line through the middle of the bed on the x-axis and begins the print). Print continues as normal.
Thoughts and ideas are appreciated TIA