Allow TMC2209 to save/restore spreadCycle (#16153)

Co-Authored-By: teemuatlut <teemu.mantykallio@live.fi>
This commit is contained in:
elementfoundry 2019-12-19 01:23:54 -07:00 committed by Scott Lahteine
parent 865071a946
commit e5edbf9d35

View file

@ -1038,9 +1038,10 @@
bool tmc_enable_stallguard(TMC2209Stepper &st) {
st.TCOOLTHRS(0xFFFFF);
return true;
return stealthchop_was_enabled;
}
void tmc_disable_stallguard(TMC2209Stepper &st, const bool restore_stealth _UNUSED) {
void tmc_disable_stallguard(TMC2209Stepper &st, const bool restore_stealth) {
st.en_spreadCycle(!restore_stealth);
st.TCOOLTHRS(0);
}