Multiple axis TMC OTPW step down (#16044)

This commit is contained in:
Scott Lahteine 2019-11-30 06:59:44 -06:00 committed by GitHub
parent 1ee648ecd2
commit 27943f9e31
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 97 additions and 42 deletions

View file

@ -601,7 +601,7 @@ void manage_inactivity(const bool ignore_stepper_queue/*=false*/) {
#endif #endif
#if ENABLED(MONITOR_DRIVER_STATUS) #if ENABLED(MONITOR_DRIVER_STATUS)
monitor_tmc_driver(); monitor_tmc_drivers();
#endif #endif
#if ENABLED(MONITOR_L6470_DRIVER_STATUS) #if ENABLED(MONITOR_L6470_DRIVER_STATUS)

View file

@ -265,10 +265,30 @@
SERIAL_CHAR('\t'); SERIAL_CHAR('\t');
} }
#if CURRENT_STEP_DOWN > 0
template<typename TMC>
void step_current_down(TMC &st) {
if (st.isEnabled()) {
const uint16_t I_rms = st.getMilliamps() - (CURRENT_STEP_DOWN);
if (I_rms > 50) {
st.rms_current(I_rms);
#if ENABLED(REPORT_CURRENT_CHANGE)
st.printLabel();
SERIAL_ECHOLNPAIR(" current decreased to ", I_rms);
#endif
}
}
}
#endif
template<typename TMC> template<typename TMC>
void monitor_tmc_driver(TMC &st, const bool need_update_error_counters, const bool need_debug_reporting) { bool monitor_tmc_driver(TMC &st, const bool need_update_error_counters, const bool need_debug_reporting) {
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; if (data.drv_status == 0xFFFFFFFF || data.drv_status == 0x0) return false;
bool did_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++;
@ -288,15 +308,9 @@
#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) { if (data.is_otpw && st.otpw_count > 4 && st.isEnabled()) {
uint16_t I_rms = st.getMilliamps(); step_current_down(st);
if (st.isEnabled() && I_rms > 100) { did_step_down = true;
st.rms_current(I_rms - (CURRENT_STEP_DOWN));
#if ENABLED(REPORT_CURRENT_CHANGE)
st.printLabel();
SERIAL_ECHOLNPAIR(" current decreased to ", st.getMilliamps());
#endif
}
} }
#endif #endif
@ -308,64 +322,105 @@
} }
#if ENABLED(TMC_DEBUG) #if ENABLED(TMC_DEBUG)
if (need_debug_reporting) if (need_debug_reporting) report_polled_driver_data(st, data);
report_polled_driver_data(st, data);
#endif #endif
return did_step_down;
} }
void monitor_tmc_driver() { void monitor_tmc_drivers() {
static millis_t next_poll = 0;
const millis_t ms = millis(); const millis_t ms = millis();
bool need_update_error_counters = ELAPSED(ms, next_poll);
bool need_debug_reporting = false; // Poll TMC drivers at the configured interval
if (need_update_error_counters) static millis_t next_poll = 0;
next_poll = ms + MONITOR_DRIVER_STATUS_INTERVAL_MS; const bool need_update_error_counters = ELAPSED(ms, next_poll);
if (need_update_error_counters) next_poll = ms + MONITOR_DRIVER_STATUS_INTERVAL_MS;
// Also poll at intervals for debugging
#if ENABLED(TMC_DEBUG) #if ENABLED(TMC_DEBUG)
static millis_t next_debug_reporting = 0; static millis_t next_debug_reporting = 0;
if (report_tmc_status_interval && ELAPSED(ms, next_debug_reporting)) { const bool need_debug_reporting = report_tmc_status_interval && ELAPSED(ms, next_debug_reporting);
need_debug_reporting = true; if (need_debug_reporting) next_debug_reporting = ms + report_tmc_status_interval;
next_debug_reporting = ms + report_tmc_status_interval; #else
} constexpr bool need_debug_reporting = false;
#endif #endif
if (need_update_error_counters || need_debug_reporting) { if (need_update_error_counters || need_debug_reporting) {
#if AXIS_IS_TMC(X) #if AXIS_IS_TMC(X)
monitor_tmc_driver(stepperX, need_update_error_counters, need_debug_reporting); if (monitor_tmc_driver(stepperX, need_update_error_counters, need_debug_reporting)) {
#endif #if AXIS_IS_TMC(X2)
#if AXIS_IS_TMC(Y) step_current_down(stepperX2)
monitor_tmc_driver(stepperY, need_update_error_counters, need_debug_reporting); #endif
#endif }
#if AXIS_IS_TMC(Z)
monitor_tmc_driver(stepperZ, need_update_error_counters, need_debug_reporting);
#endif #endif
#if AXIS_IS_TMC(X2) #if AXIS_IS_TMC(X2)
monitor_tmc_driver(stepperX2, need_update_error_counters, need_debug_reporting); if (monitor_tmc_driver(stepperX2, need_update_error_counters, need_debug_reporting)) {
#if AXIS_IS_TMC(X)
step_current_down(stepperX)
#endif
}
#endif
#if AXIS_IS_TMC(Y)
if (monitor_tmc_driver(stepperY, need_update_error_counters, need_debug_reporting)) {
#if AXIS_IS_TMC(Y2)
step_current_down(stepperY2)
#endif
}
#endif #endif
#if AXIS_IS_TMC(Y2) #if AXIS_IS_TMC(Y2)
monitor_tmc_driver(stepperY2, need_update_error_counters, need_debug_reporting); if (monitor_tmc_driver(stepperY2, need_update_error_counters, need_debug_reporting)) {
#if AXIS_IS_TMC(Y)
step_current_down(stepperY)
#endif
}
#endif
#if AXIS_IS_TMC(Z)
if (monitor_tmc_driver(stepperZ, need_update_error_counters, need_debug_reporting)) {
#if AXIS_IS_TMC(Z2)
step_current_down(stepperZ2)
#endif
#if AXIS_IS_TMC(Z3)
step_current_down(stepperZ3)
#endif
}
#endif #endif
#if AXIS_IS_TMC(Z2) #if AXIS_IS_TMC(Z2)
monitor_tmc_driver(stepperZ2, need_update_error_counters, need_debug_reporting); if (monitor_tmc_driver(stepperZ2, need_update_error_counters, need_debug_reporting)) {
#if AXIS_IS_TMC(Z)
step_current_down(stepperZ)
#endif
#if AXIS_IS_TMC(Z3)
step_current_down(stepperZ3)
#endif
}
#endif #endif
#if AXIS_IS_TMC(Z3) #if AXIS_IS_TMC(Z3)
monitor_tmc_driver(stepperZ3, need_update_error_counters, need_debug_reporting); if (monitor_tmc_driver(stepperZ3, need_update_error_counters, need_debug_reporting)) {
#if AXIS_IS_TMC(Z)
step_current_down(stepperZ)
#endif
#if AXIS_IS_TMC(Z2)
step_current_down(stepperZ2)
#endif
}
#endif #endif
#if AXIS_IS_TMC(E0) #if AXIS_IS_TMC(E0)
monitor_tmc_driver(stepperE0, need_update_error_counters, need_debug_reporting); (void)monitor_tmc_driver(stepperE0, need_update_error_counters, need_debug_reporting);
#endif #endif
#if AXIS_IS_TMC(E1) #if AXIS_IS_TMC(E1)
monitor_tmc_driver(stepperE1, need_update_error_counters, need_debug_reporting); (void)monitor_tmc_driver(stepperE1, need_update_error_counters, need_debug_reporting);
#endif #endif
#if AXIS_IS_TMC(E2) #if AXIS_IS_TMC(E2)
monitor_tmc_driver(stepperE2, need_update_error_counters, need_debug_reporting); (void)monitor_tmc_driver(stepperE2, need_update_error_counters, need_debug_reporting);
#endif #endif
#if AXIS_IS_TMC(E3) #if AXIS_IS_TMC(E3)
monitor_tmc_driver(stepperE3, need_update_error_counters, need_debug_reporting); (void)monitor_tmc_driver(stepperE3, need_update_error_counters, need_debug_reporting);
#endif #endif
#if AXIS_IS_TMC(E4) #if AXIS_IS_TMC(E4)
monitor_tmc_driver(stepperE4, need_update_error_counters, need_debug_reporting); (void)monitor_tmc_driver(stepperE4, need_update_error_counters, need_debug_reporting);
#endif #endif
#if AXIS_IS_TMC(E5) #if AXIS_IS_TMC(E5)
monitor_tmc_driver(stepperE5, need_update_error_counters, need_debug_reporting); (void)monitor_tmc_driver(stepperE5, need_update_error_counters, need_debug_reporting);
#endif #endif
#if ENABLED(TMC_DEBUG) #if ENABLED(TMC_DEBUG)

View file

@ -345,7 +345,7 @@ void tmc_print_current(TMC &st) {
} }
#endif #endif
void monitor_tmc_driver(); void monitor_tmc_drivers();
void test_tmc_connection(const bool test_x, const bool test_y, const bool test_z, const bool test_e); void test_tmc_connection(const bool test_x, const bool test_y, const bool test_z, const bool test_e);
#if ENABLED(TMC_DEBUG) #if ENABLED(TMC_DEBUG)