Greetings,
I am making a large printer (1800mm^3), my first duet setup and would like some feedback if I am getting my axis setup properly.
I have 4 Z lead screws, and 2 Y rack and pinions:
Does this syntax look right for defining the drives for my 8 Axises?? The docs on how to map the drives were a bit confusing, so I am hoping I got this right.
; Drives on Duet3 6XD board
M569 P0.0 S1 ; X physical drive 0.0 goes forwards
M569 P0.1 S1 ; Y1 physical drive 0.1 goes forwards
M569 P0.2 S0 ; Y2 physical drive 0.2 goes Reverse
M569 P0.3 S1 ; Z1 physical drive 0.3 goes forwards
M569 P0.4 S1 ; Extruder physical drive .4 goes forwards
; Drives on Duet3 3HC board
M569 P1.0 S1 ; Z2 physical drive 1.0 goes forwards
M569 P1.1 S1 ; Z3 physical drive 1.0 goes forwards
M569 P1.3 S1 ; Z4 physical drive 1.0 goes forwards
; Configure axises
M584 X0.0 Y0.1:0.2 Z0.3:1.0:1.2:1.3 E0.2 ; set drive mapping
The next question is in regard to endstops. Again, does this syntax look reasonable?
; Endstops
M574 X1 S1 P"io0.in" ; X Endstop on 6XD board
M574 Y1 S1 P"io1.in" ; Y Endstop on 6XD board
M574 Y2 S1 P"io2.in" ; Y Second Axis Endstop on 6XD board
M574 Z1 S1 P"1.io0.in" ; Z Axis Endstop on 6XD board
M574 Z2 S1 P"1.io1.in" ; Z Second Axis Endstop on 6XD board
M574 Z3 S1 P"1.io2.in" ; Z Third Axis Endstop on 6XD board
M574 Z4 S1 P"1.io3.in" ; Z Fourth Axis Endstop on 6XD board
Really appreciate the help!
Scott