mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
AP_BatteryMonitor: Analog: check valid pin
This commit is contained in:
parent
0731af751a
commit
19f66803ff
@ -58,8 +58,6 @@ AP_BattMonitor_Analog::AP_BattMonitor_Analog(AP_BattMonitor &mon,
|
||||
_volt_pin_analog_source = hal.analogin->channel(_volt_pin);
|
||||
_curr_pin_analog_source = hal.analogin->channel(_curr_pin);
|
||||
|
||||
// always healthy
|
||||
_state.healthy = true;
|
||||
}
|
||||
|
||||
// read - read the voltage and current
|
||||
@ -67,7 +65,7 @@ void
|
||||
AP_BattMonitor_Analog::read()
|
||||
{
|
||||
// this copes with changing the pin at runtime
|
||||
_volt_pin_analog_source->set_pin(_volt_pin);
|
||||
_state.healthy = _volt_pin_analog_source->set_pin(_volt_pin);
|
||||
|
||||
// get voltage
|
||||
_state.voltage = _volt_pin_analog_source->voltage_average() * _volt_multiplier;
|
||||
@ -79,7 +77,7 @@ AP_BattMonitor_Analog::read()
|
||||
float dt = tnow - _state.last_time_micros;
|
||||
|
||||
// this copes with changing the pin at runtime
|
||||
_curr_pin_analog_source->set_pin(_curr_pin);
|
||||
_state.healthy &= _curr_pin_analog_source->set_pin(_curr_pin);
|
||||
|
||||
// read current
|
||||
_state.current_amps = (_curr_pin_analog_source->voltage_average() - _curr_amp_offset) * _curr_amp_per_volt;
|
||||
|
Loading…
Reference in New Issue
Block a user