Skip to content
Snippets Groups Projects
Unverified Commit ffb76b75 authored by Scott Lahteine's avatar Scott Lahteine Committed by GitHub
Browse files

fix TMC2208 boot loop with SW UART (#14135)

Need stepper .begin() before calling susbequent .push()
parents 4138b1f9 36a0376c
No related branches found
No related tags found
No related merge requests found
......@@ -872,7 +872,11 @@ void setup() {
#endif
setup_killpin();
#if HAS_DRIVER(TMC2208)
tmc2208_serial_begin();
#endif
setup_powerhold();
#if HAS_STEPPER_RESET
......@@ -904,9 +908,6 @@ void setup() {
#endif
tmc_init_cs_pins();
#endif
#if HAS_DRIVER(TMC2208)
tmc2208_serial_begin();
#endif
#ifdef BOARD_INIT
BOARD_INIT();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment