Server Seems to Eat my Startup Sequence...

Not sure what is going on.  I wrote a specific Startup Gcode sequence into my slicer (Prusa), and when I submit things it seems to omit several of the items.  Is there a setting in Repetier to leave my startup Gcode as is?

Details...
Prusa/SuperSlicer current version
Win10
JGMaker Artist-D running Community version of Marlin 2.x.x  (current build)
Reptetier Server Pro 1.2.0

My Startup Gcode looks like this:

;StartUp Gcode AutoPark Mode

;Last edited on Nov 13, 2021

M117 StartUp Sequence

M412 S0 ; Get ABL values in S0

M605 S1 ; Make sure in AutoPark

G90 ;Absolute Mode for XYZ specific addressing

G28 ; home all axes

T0

M140 S[first_layer_bed_temperature] ; Start the bed warming

M104 S[first_layer_temperature] T0 ; set nozzle temp for Extruder 1  (left)

M117 PreHeat Started

M190 S[first_layer_bed_temperature] ; set bed temp and wait for the temp to be reached

M109 S[first_layer_temperature] T0 ; set nozzle temp and wait for the temp to be reached

M117 Everything is HOT

T0 ;for the Primary (left) extruder

G1 Z5 F35000 ; Move Z Axis up to avaoid scratches

G92 E0 ;Reset Extruder

M117 Drawing Prime Lines

G1 X10 Y10 Z0.28 F5000.0 ;Move to start position

G1 X10 Y300.0 Z0.28 F1500.0 E15 ;Draw the first line

G1 X10.3 Y300.0 Z0.28 F5000.0 ;Move to side a little (75% of Nozzle)

G1 X10.3 Y10 Z0.28 F1500.0 E30 ;Draw the second line

G1 E29.5 F2700 ; pull back just a touch, brim or skirt will pickup

G92 E0 ; reset extruder0

G1 Z5 F3000 ; Move Z up to prevent scratches

M117 Printing... ; put message on display


Comments

  • We do never reorder gcodes. We send job start gcode before sending and eventually send some progress info commands. But that is before your code starts.

    In printer server config you can add in replacements that specific commands get replaced, but it is empty by default so only if you entered some replacements there on your own.

    And we might add M105 if no autoreport temperatures is available to update temperatures.

    What change did you see? Best enable logging so you can see exactly the difference.
Sign In or Register to comment.