Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Dave_P

1
Posts
1
Topics
A member registered Jul 12, 2019

Recent community posts

Hello. I have just discovered PixelCNC, it is a really clever idea, well done!! I trying  out the 64bit V1.33a version and am having problems with my DUET2 controller board running the gcode from PixelCNC.  I am using the Marlin Metric post processor it looka like my controller dosent like the spindle speed commands in the start of the gcode file. As an example, the following fails on my board:-

; Generated By: PixelCNC v1.33a, Post: Marlin Metric.txt v1.00
G21 G90 G91.1
G00 X0.0 Y0.0 Z0.0 F2100
G00 Z5.0 F480
; Tool: 1
T1 ; Spindle: CW 10000
M03
; Operation: operation01, tool01
G00 Z3.00
G00 X9.57 Y-28.69
G01 Z-0.70 F200 S10000
G01 X9.25 Y-28.32 F300
G01 X8.94 Y-27.73 F300
G01 X8.82 Y-27.51 F300

and on...

After editing to comment out the tool selection and remove the S10000 speed parameter as follows the gcode runs:-

; Generated By: PixelCNC v1.33a, Post: Marlin Metric.txt v1.00
G21
G90
G00 X0.0 Y0.0 Z0.0 F2100
G00 Z5.0 F480
; Tool: 1
 ;T1 ; Spindle: CW 10000 ;M03
; Operation: operation01, tool01 G00 Z3.00
G00 X9.57 Y-28.69
G01 Z-0.70 F200
G01 X9.25 Y-28.32 F300
G01 X8.94 Y-27.73 F300
G01 X8.82 Y-27.51 F300

Could you suggest how to modify the Marlin Post processor to cater for this.

Many thanks

Dave