Can post processing code do this?
Posted: Fri Sep 16, 2016 12:45 pm
Hi!
When exporting a gcode file, the temperature settings at the beginning look like this:
Which makes the bed heat up, and only after it reached the target temperature, the nozzle starts heating.
I tested if changing the order can make them both heat at the same time, and it works indeed:
Now the question is, can I do this 'move line one up' with the post processing commands in s3d?
Thanks in advance
When exporting a gcode file, the temperature settings at the beginning look like this:
Code: Select all
M140 S50 ; heat bed
M190 S50 ; wait for bed to reach temp
M104 S230 T0 ; heat head
M109 S230 T0 ; wait for head to reach tempI tested if changing the order can make them both heat at the same time, and it works indeed:
Code: Select all
M140 S50 ; heat bed
M104 S230 T0 ; heat head
M190 S50 ; wait for bed to reach temp
M109 S230 T0 ; wait for head to reach tempThanks in advance