Cannot get E on Tool board to reverse
-
; Axis to driver mapping M584 X0 Y1 U2 Z3:4:5 ; X and Y for CoreXY. U for toolchanger lock. Z has three drivers for kinematic bed suspension. M584 E1.0:1.1:22.0 ; Extruders for three tools. First two on 3HC 1, third one on Tool Board 22 M569 P0 S0 ; Drive 0 direction | X stepper M569 P1 S0 ; Drive 1 direction | Y Stepper M569 P2 S0 ; Drive 2 direction | U Tool Changer Lock M569 P3 S0 ; Drive 3 direction | Front Left Z M569 P4 S0 ; Drive 4 direction | Front Right Z M569 P5 S0 ; Drive 5 direction | Back Z ; End of main board drivers. Expansion boards have three each. ; Expansion CAN 1 M569 P6 S0 ; Drive 6 direction | Extruder T0 M569 P7 S0 ; Drive 7 direction | Extruder T1 ; At this moment, nothing on expansion CAN 2 ; Tool board CAN 22 M569 P8 S1 ; Drive 8 direction | Extruder T2
I've tried M569 P8 S0 and S1. Tried dynamically through the console, all the way up to power cycles. It always turns the same direction for, say, an extract.
I've also tried M569 P6, 7, 8, 9, 10, 11, just in case I don't understand how these are indexed.
I can rewire the motor, but I'd rather not.
-
Shouldn't the "P" number be something like "P2.0" to match driver 0 on can board 2?
Same with your expansion board. They should start at "P1.0"Extract from my current config
;############## Drive Direction ###################### M569 P0.0 S1 ; Drive 0 direction | X stepper M569 P0.1 S0 ; Drive 1 direction | Y Stepper M569 P0.2 S1 ; Drive 2 direction | U Tool Changer Lock M569 P0.3 S1 ; Drive 3 direction | Front Left Z M569 P0.4 S1 ; Drive 4 direction | Front Right Z M569 P0.5 S1 ; Drive 5 direction | Back Z M569 P1.0 S0 ; Drive 6 direction | Tool 1 M569 P1.1 S1 ; Drive 6 direction | Tool 2
-
DOH!!! Of course. I will give that a try.
Edit: That was it!! Of course, S1 is the default, so I actually had to set it to S0 when I got the "address" right. Final Result:
M584 X0 Y1 U2 Z3:4:5 ; X and Y for CoreXY. U for toolchanger lock. Z has three drivers for kinematic bed suspension. M584 E1.0:1.1:22.0 ; Extruders for three tools. First two on 3HC 1, third one on Tool Board 22 M569 P0 S0 ; Drive 0 direction | X stepper M569 P1 S0 ; Drive 1 direction | Y Stepper M569 P2 S0 ; Drive 2 direction | U Tool Changer Lock M569 P3 S0 ; Drive 3 direction | Front Left Z M569 P4 S0 ; Drive 4 direction | Front Right Z M569 P5 S0 ; Drive 5 direction | Back Z ; End of main board drivers. Expansion boards have three each. ; Expansion CAN 1 M569 P1.0 S1 ; Extruder T0 M569 P1.1 S1 ; Extruder T1 ; At this moment, nothing on expansion CAN 2 ; Tool board CAN 22 M569 P22.0 S0 ; Extruder T2
P.S. THANK YOU! I knew it was something I was staring right at and not seeing.