Brand new duet 3 mini, 2 issues
-
@deamonata So I just checked my cura settings I'm guessing that having my gcode flavour setting as Marlin is probably not right. so I'll correct that but could that be causing this behaviour?
-
@deamonata could be. are you using a bed mesh as well?
-
@jay_s_uk not currently. I have an IR probe to fit but it's currently not configured or connected ass I don't have a mount for it currently
-
@deamonata There is a note in this section about not connecting anything to io0 if you connect a PanelDue: https://docs.duet3d.com/en/How_to_guides/Wiring_your_Duet_3#h-15-connecting-a-display
a 10-way flat cable with a maximum recommended length of 400mm. It plugs into the 10-pin PanelDue_SD header. It has extra pins that allow the Duet to access the PanelDue's SD card reader. The IO_0 connector cannot be used for other purposes when using the PanelDue_SD header because they share connections.
It makes more sense for this to be in this section than the endstop section, I think, though it could be a bit better highlighted. It's also the first note (and well highlighted) on the 'Connecting a PanelDue' page: https://docs.duet3d.com/User_manual/Connecting_hardware/Display_PanelDue#notes
Ian
-
What do you have in your cura start gcode? Since you were set to marlin flavour I assume you were using a profile. Sometimes there are speed commands added to the start gcode that would be overriding your config.g speed settings. The pauses may be due to that.
-
@droftarts
Fair enough I must have missed that. I still think an extra note would be helpful but I accept that all the information was there and I just didn't read it carefully enough. -
@Phaedrux My cura start code is:
M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration M203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate M204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration M205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk M220 S100 ;Reset Feedrate M221 S100 ;Reset Flowrate G28 ;Home G92 E0 ;Reset Extruder G1 Z2.0 F3000 ;Move Z Axis up G1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position G1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line G1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little G1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line G92 E0 ;Reset Extruder G1 Z2.0 F3000 ;Move Z Axis up
-
@Phaedrux said in Brand new duet 3 mini, 2 issues:
What do you have in your cura start gcode? Since you were set to marlin flavour I assume you were using a profile. Sometimes there are speed commands added to the start gcode that would be overriding your config.g speed settings. The pauses may be due to that.
As someone else has just had the same problem, I think I will!
Ian
-
@deamonata said in Brand new duet 3 mini, 2 issues:
@Phaedrux My cura start code is:
M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration M203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate M204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration M205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk M220 S100 ;Reset Feedrate M221 S100 ;Reset Flowrate G28 ;Home G92 E0 ;Reset Extruder G1 Z2.0 F3000 ;Move Z Axis up G1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position G1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line G1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little G1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line G92 E0 ;Reset Extruder G1 Z2.0 F3000 ;Move Z Axis up
These commands are the issue. Delete them so that your commands in config.g will not be overwritten.
M201 X500.00 Y500.00 Z100.00 E5000.00 ;Setup machine max acceleration M203 X500.00 Y500.00 Z10.00 E50.00 ;Setup machine max feedrate M204 P500.00 R1000.00 T500.00 ;Setup Print/Retract/Travel acceleration M205 X8.00 Y8.00 Z0.40 E5.00 ;Setup Jerk
-
@Phaedrux thanks for that I'll give it a go this evening