Can't start a new print after finishing one..
-
@secure said in Can't start a new print after finishing one..:
M0
Try removing the M0 in you end gcode
Do you have any start/end gcode in your slicer?
-
@secure also, do you have a stop.g file; and if so, what does it contain?
-
Thanks for the responses.
I recently added M0 to try if it fix problem.. Normally it was not there.
It is a custom built(2020) printer but this problem occured after I set the origin bed at center.(few months ago)
Normally the bed size is Y430 mm x X395 mm x Z510 mm.I have stop.g file with default settigns.(no gcode)
Here is cure start gcodeM190 S{material_bed_temperature} ; start heating the bed to what is set in Cura and WAIT M109 S{material_print_temperature} T1 ; start heating hotend to what is set in Cura and WAIT G28 ; home
Could it be a wrong axis limitation? I've two extruder (side by side.)
M208 X-215:180, Y-215:215 Z510Here is bed.g file
M561 ; clear any bed transform G29 ; probe the bed and enable compensation
-
@secure said in Can't start a new print after finishing one..:
Second job crash.
Is it crashing during homing of the second job? Post your homing files?
Or is it crashing during the end gcode of the first job? -
@Phaedrux
Totally no problem with the first job.
when I start another print, it is crashing after all the heaters are warmed up.- Homing OK
- Warming heater and bed. OK
- Starting actual printing for the first prime FAIL.
So it cant find the first starting point.
Sometimes crashing towards the switches(not forcing) or opposite side of the switches.(forcing) -
Can you share your homing files and an example gcode file?
-
@Phaedrux
Thanks. Sure.
homeall.gG91 ; relative positioning G1 H2 Z5 F9000 ; lift Z relative to current position G1 H1 X400 Y-420 F4800 ; move quickly to X and Y axis endstops and stop there (first pass) G1 H2 X-5 Y5 F6000 ; go back a few mm G1 H1 X400 Y-420 F2400 ; move slowly to X and Y axis endstops once more (second pass) G90 ; absolute positioning G1 X0 Y0 F6000 ; go to first bed probe point and home Z G30 ; home Z by probing the bed
homexyz.g
;X G91 ; relative positioning G1 H2 Z5 F9000 ; lift Z relative to current position G1 H1 X400 F2400 ; move quickly to X axis endstop and stop there (first pass) G1 H2 X-5 F9000 ; go back a few mm G1 H1 X400 F600 ; move slowly to X axis endstop once more (second pass) G1 H2 Z5 F9000 ; lower Z again G90 ; absolute positioning ;Y G91 ; relative positioning G1 H2 Z5 F9000 ; lift Z relative to current position G1 H1 Y-440 F2400 ; move quickly to Y axis endstop and stop there (first pass) G1 H2 Y5 F9000 ; go back a few mm G1 H1 Y-440 F600 ; move slowly to Y axis endstop once more (second pass) G1 H2 Z5 F9000 ; lower Z again G90 ; absolute positioning ;Z G91 ; relative positioning G1 H2 Z5 F9000 ; lift Z relative to current position G90 ; absolute positioning G1 X0 Y0 F9000 ; go to first probe point G30 ; home Z by probing the bed
Gcode starting.. A bit messy but works for the first print.
;FLAVOR:RepRap ;TIME:3606 ;Filament used: 0m, 16.7539m ;Layer height: 0.6 ;MINX:0.905 ;MINY:-61.185 ;MINZ:0.5 ;MAXX:65.709 ;MAXY:66.413 ;MAXZ:104.9 ;Generated with Cura_SteamEngine 5.4.0 T1 M82 ;absolute extrusion mode ;M140 S63 ; start preheating the bed WITHOUT wait to what is set in Cura ;M104 S215 T0 ; start preheating hotend WITHOUT wait to what is set in Cura G28 ; home M190 S63 ; start heating the bed to what is set in Cura and WAIT M109 S215 T1 ; start heating hotend to what is set in Cura and WAIT ;M98 P/Macros/Baslarken_Temizlik M82 ;absolute extrusion mode ;G10 P1 S(material_print_temperature) ;T2 M83 ;relative extrusion mode M83 ;relative extrusion mode G1 F2700 E-3.5 ;LAYER_COUNT:175 ;LAYER:0 M107 P2 G0 F3600 X1.705 Y-57.985 Z0.5 ;TYPE:SKIRT G1 F2700 E3.5 G1 F1350 X1.745 Y-58.421 E0.07281 G1 X1.863 Y-58.842 E0.07271 G1 X2.056 Y-59.235 E0.07281
-
@secure said in Can't start a new print after finishing one..:
This problem occured after I changed to origin at center.
Have you confirmed that your axis limits are actually valid for both tools after your change?
-
@Phaedrux Yes. Never crashes normally.
-
@secure If the first print completes without issue but a subsequent print fails, then logic would dictate that something in the first print end code or a post print macro, is changing a configured setting. It would be useful to know if you always home the printer before every print or only before the first one. If it's the latter, then possible causes are that the end code turns the motors off which will then lose the homing position. Another possibility is that positioning is changed from relative to absolute and that it is not being set to relative at the start of the sliced gcode file.
To get to the bottom of this, we'd need to see everything in the sliced gcode file up to the first move, and everything after the last move. If there are calls to other macros within those sections, we'd need to see those too.