GregValiant 1,410
I responded on Github and I'll rehash it here.
This looks like a bug to me as it doesn't matter if T0 is disabled or unused. When the Prime Tower is enabled Cura switches to T0. With the Prime Tower disabled it seems to work as it should with no references to T0.
I see you have a workaround. The same thing can be done within Cura using Search and Replace post-processor:
Search = T0\n
Replace = T3\n
Use regular expressions = checked
The "\n" is a newline character and they are required as shown.
Whether it's done in Cura or Octoprint - it's a poor workaround as the movement code at the Prime Tower is still there and it isn't needed (or wanted).
Edited by GregValiant
Recommended Posts
madurani 0
Very temporary solution in my case when I want only disable/replace extruder1 with extruder3 was modify gcode
output file from Cura. I replaced it with sed command extruder1(T0) with extruder3(T2) and were fixed:
grep T0 CFFFP_color2.gcode|wc -l 6 sed -i 's/T0/T2/g' CFFFP_color2_sed.gcode grep T0 CFFFP_color2.gcode|wc -l 0
When I print file via OctoPrint
Link to post
Share on other sites