Skip to content

Commit

Permalink
remove comment on motor temp
Browse files Browse the repository at this point in the history
  • Loading branch information
Jfriesen222 committed Jul 28, 2020
1 parent 75f9b1c commit 216a009
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mc_interface.c
Original file line number Diff line number Diff line change
Expand Up @@ -1922,7 +1922,7 @@ static void update_override_limits(volatile motor_if_state_t *motor, volatile mc
float lo_max_mot = l_current_max_tmp;
if (motor->m_temp_motor < conf->l_temp_motor_start) {
// Keep values
} else if (motor->m_temp_motor > conf->l_temp_motor_end) { // only fault if 10 degrees over max do give some cushion for noisey sensors
} else if (motor->m_temp_motor > conf->l_temp_motor_end) {
lo_min_mot = 0.0;
lo_max_mot = 0.0;
mc_interface_fault_stop(FAULT_CODE_OVER_TEMP_MOTOR, !is_motor_1, false);
Expand Down

0 comments on commit 216a009

Please sign in to comment.