(Running 3.1.1) I've noticed some flaky behavior with using 2 extruders to one hot-end (SeeMeCNC Y adapter). Though I usually get a proper filament purge when changing tools, I spotted this yesterday during a print, and went back & found it in the code. The issue seems to be that while a prime pillar is being built with 2 parts (unique process for each part), a prime doesn't occur when a tool change coincides with changing from one part (or process) to another.
PVA support filament is in T1, but when a T0 is issued, no purging/priming takes place - it just jumps into printing a perimeter with the PLA in T0. Other places in the file purge properly, when the tool change is within the same part.
Desired operation:
Code: Select all
G1 X-76.071 Y-21.249 F2700
G1 E0.0000 F600
G1 Z6.350 F12000
T1
; tool H0.250 W0.720
; prime pillar
G1 X-6.640 Y81.200 F13500
G1 Z2.750 F12000
G1 E0.0000 F600
G1 X6.640 Y81.200 E0.8745 F2160Code: Select all
G1 X-42.579 Y-6.845 F2700
G1 Z6.350 F12000
; layer 22, Z = 2.75
T0
; tool H0.250 W0.720
; outer perimeter
G1 X-60.099 Y-25.117 F13500
G1 Z2.750 F12000
G1 E0.0000 F600
G1 X-60.726 Y-24.647 E0.0510 F2700Any ideas (or links to threads that I missed)? Thanks!
