Fix CURRENT_STEP_DOWN compile error

This commit is contained in:
Scott Lahteine 2020-02-01 06:27:17 -06:00
parent 832d33ce9d
commit 0d342bac51

View file

@ -281,6 +281,10 @@
} }
} }
#else
#define step_current_down(...)
#endif #endif
template<typename TMC> template<typename TMC>
@ -288,7 +292,7 @@
TMC_driver_data data = get_driver_data(st); TMC_driver_data data = get_driver_data(st);
if (data.drv_status == 0xFFFFFFFF || data.drv_status == 0x0) return false; if (data.drv_status == 0xFFFFFFFF || data.drv_status == 0x0) return false;
bool did_step_down = false; bool should_step_down = false;
if (need_update_error_counters) { if (need_update_error_counters) {
if (data.is_ot /* | data.s2ga | data.s2gb*/) st.error_count++; if (data.is_ot /* | data.s2ga | data.s2gb*/) st.error_count++;
@ -308,10 +312,8 @@
#if CURRENT_STEP_DOWN > 0 #if CURRENT_STEP_DOWN > 0
// Decrease current if is_otpw is true and driver is enabled and there's been more than 4 warnings // Decrease current if is_otpw is true and driver is enabled and there's been more than 4 warnings
if (data.is_otpw && st.otpw_count > 4 && st.isEnabled()) { if (data.is_otpw && st.otpw_count > 4 && st.isEnabled())
step_current_down(st); should_step_down = true;
did_step_down = true;
}
#endif #endif
if (data.is_otpw) { if (data.is_otpw) {
@ -325,7 +327,7 @@
if (need_debug_reporting) report_polled_driver_data(st, data); if (need_debug_reporting) report_polled_driver_data(st, data);
#endif #endif
return did_step_down; return should_step_down;
} }
void monitor_tmc_drivers() { void monitor_tmc_drivers() {