Standby temperature not respected
-
Hi
Here is the begin of gcode :
G90 M83 M190 S60 M134 M109 S245 T1 M109 S245 T2 T1 T2 G10 P1 R220 S245 G10 P2 R220 S245 T-1 G29 S1 T2
M109 is generated by simplify3D.
R220 is not respected. When I launch gcode standby temp is set to 245°C, like active one.
What is the reason ?
RepRapFirmware for Duet 2 WiFi/Ethernet 3.1.1 (2020-05-19b2)
Thanks !
-
@sylvain in most examples I saw the G10 was followed by M116 to wait for the heat change to finish, so in your case M116 P1 and M116 P2. My interpretation is that M109 waits until the temperature is reached, but G10 doesn't wait after exectution the G-Code and needs the M116 for this.
According to https://duet3d.dozuki.com/Wiki/Gcode#Section_M109_Set_Extruder_Temperature_and_Wait M109 is deprecated. M134 is not implemented in Duet, see https://duet3d.dozuki.com/Wiki/G-Codes_not_implemented
There is a Simplify3D blog about how to avoid M109 and use G10: https://forum.simplify3d.com/viewtopic.php?t=10402 and https://forum.duet3d.com/topic/5900/simplify3d-configuration-question/7
-
Thanks for your help !