Thank you lot.
I have include the gcode commands as your indication, and now the first problem is OK.
I have anather question is possible change this value ?
G1 F1500 E-6.5 in to E10
;LAYER_COUNT:101
;LAYER:0
G1 F1200 E-9.5 in to E0
Thank you
Recommended Posts
ahoeben 1,892
You can't change all the highlighted lines from the definition files.
The absolute extrusion lines should change to relative extrusion lines if you change the "Relative Extrusion" setting in the "Special Modes" category.
The M104 and M109 lines that appear before the start gcode will not be inserted there if you include them in your start gcode as follows:
M104 T{initial_extruder_nr} S{material_print_temperature_layer_0,initial_extruder_nr}
M109 T{initial_extruder_nr} S{material_print_temperature_layer_0,initial_extruder_nr}
Cura looks for the string "material_print_temperature" in your start gcode. If it is not there, it will prepend its own heatup sequence.
You can also use a post processing script (eg search and replace) to edit the output before it is saved/exported.
Link to post
Share on other sites