Printer Speed
-
I have spent all day working through my configurations and finally have things working. I swapped from a stock ender CR-10 v2 controller to the duet 2 wifi. When I was printing with the stock controller, my cura slicer was all set up and working fine. I didn't make any changes in the cura slicer other than changing the gcode flavor from Marlin to RepRap, which I assume is correct.
The issue is the printer is now gawd awful slow and pauses a lot within the same layer. I am not sure what other changes need to be made in the cura slicer to finally get the printer to print like it was with the stock controller running Marlin 2.0x bugfix.
Here is the start of my gcode in the machine settings of cura. I already commented out the M420 S1 command as that threw and error the first time I tried to run a print.
Anything else I need to do now that I have switched to a Duet 2?
By the way, I tried printer by loading the file over the web interface and via the SD card, all with the same results.
Thanks.
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 M280 P0 S160 ;BLTouch alarm release G28 ;Home ;M420 S1 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
-
I should note that when I auto home or do a bed level or manually move the bed or z axis, the printer speeds are fast and match what I have in the config.g file, so I am pretty confident it is something to do with the cura slicer. I am using cura 4.7.1.
-
@kgrigio said in Printer Speed:
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
Remove this section from the Cura start gcode. It's intended for marlin printers and is setting your speeds low.
Your speed and jerk setting should be set in your config.g
-
Perfect! Thanks, that did the trip. I am now officially fully converted over to a duet 2 setup!