Browse Source

Merge pull request #5957 from MagoKimbra/rc_stepper_indirection_fix

Stepper indirection fix tmc driver
pull/1/head
Scott Lahteine 8 years ago
committed by GitHub
parent
commit
02de8e6f18
  1. 4
      Marlin/stepper_indirection.cpp

4
Marlin/stepper_indirection.cpp

@ -85,8 +85,8 @@
#endif
#define _TMC_INIT(A) do{ \
stepper##A.setMicrosteps(A##_MICROSTEPS);
stepper##A.start();
stepper##A.setMicrosteps(A##_MICROSTEPS); \
stepper##A.start(); \
} while(0)
void tmc_init() {

Loading…
Cancel
Save