first I was not able to compile. had to change following
serial.cpp
void serial_spaces(uint8_t count) { count *= (PROPORTIONAL_FONT_RATIO); while (count--) MYSERIAL.write(' '); }
to
void serial_spaces(uint8_t count) { while (count--) MYSERIAL.write(' '); }
had to uncomment TMC_ADC();:
stepper.cpp
// TRAMS, TMC2130 and TMC2208 advanced settings
#if HAS_TRINAMIC
//TMC_ADV();
#endif
after successful compiling motors does not move (SPI configuration?)
serial.cpp
void serial_spaces(uint8_t count) { count *= (PROPORTIONAL_FONT_RATIO); while (count--) MYSERIAL.write(' '); }
to
void serial_spaces(uint8_t count) { while (count--) MYSERIAL.write(' '); }
had to uncomment TMC_ADC();:
stepper.cpp
// TRAMS, TMC2130 and TMC2208 advanced settings
#if HAS_TRINAMIC
//TMC_ADV();
#endif
after successful compiling motors does not move (SPI configuration?)