0

Can I mix BIGTREETECH S42B closed loop stepper drivers on the MKS Gen L controller board with other drivers?

Are the pins in the same position? Would mixing work?

Davo
  • 2,440
  • 1
  • 14
  • 28

1 Answers1

0

As far as I know, that should work. You need to define the correctly used drivers in your configuration. For the closed loop drivers, the board (via a break out board) has to provide the pulses to the motor driver (on the back of the stepper). If you use such a closed loop driver you need to disable the stepper driver type in your Configuration.h file for those you plan to insert a closed loop driver. The firmware will assume the A4988 driver is being used:

enter image description here

Now you need to set high enough values for the MAXIMUM_STEPPER_RATE (150000):

enter image description here

and the MINIMUM_STEPPER_PULSE (3):

enter image description here

in Marlin/src/inc/Conditionals_adv.h under HAS_DRIVER(4988).

0scar
  • 37,446
  • 12
  • 68
  • 156