Gcode from Carbide Create
-
Hey guys,
I havn't tried yet but I wanted to check with Carbide Create will GCode from that app work with Duet firmware 3.x?
I thought there was an issue due to Carbide not including G1 in front of move commands but then I was reading and it looked like that might have been fixed in a newer version of Firmware.
Sample:
G90 G21 (Contour.T...) M05 M0 ;T102 M03S10000 G0X-110.591Y45.500Z5.000 G1Z-0.300F203.2 X-110.585Y46.031F508.0 X-110.564Y46.560 X-110.531Y47.084 X-110.485Y47.605 X-110.426Y48.123
I found this in a previous post so it looks like the G1 requirement is not always needed in CNC mode:
From @dc42
No. Duet doesn't support "sticky" G1 or G0. You will need to select a different post processor, or modify that one.Yes it does, when in CNC mode and using recent firmware versions (2.05 or 3.x).
I am running 3.4 firmware and have set CNC mode but if I try to run the CNC sample file above I get:
File 0:/gcodes/Test Carbide Gcode.nc selected for printing
Finished printing file 0:/gcodes/Test Carbide Gcode.nc, print time was 0h 0m -
@yycsparks The M0 command in line 5 has a specific meaning in RepRapFirmware,Unconditional Stop. So you would need to make sure that is not being emitted.
-
@oliof Oh interesting, thank you for pointing that out. That makes alot of sense now. I will make that change and see if that helps.
-
@oliof Thank you very much for your advise it worked great.
-
-