AP_Airspeed: rename get_health_failure_probability to get_health_probability

This commit is contained in:
Iampete1 2022-03-01 17:44:43 +00:00 committed by Andrew Tridgell
parent 1435fdcf97
commit 72a65cadb8
2 changed files with 5 additions and 5 deletions

View File

@ -689,7 +689,7 @@ void AP_Airspeed::Log_Airspeed()
offset : get_offset(i),
use : use(i),
healthy : healthy(i),
health_prob : get_health_failure_probability(i),
health_prob : get_health_probability(i),
primary : get_primary()
};
AP::logger().WriteBlock(&pkt, sizeof(pkt));

View File

@ -266,12 +266,12 @@ private:
// returns 0 if the sensor is not enabled
float get_pressure(uint8_t i);
// get the failure health probability
float get_health_failure_probability(uint8_t i) const {
// get the health probability
float get_health_probability(uint8_t i) const {
return state[i].failures.health_probability;
}
float get_health_failure_probability(void) const {
return get_health_failure_probability(primary);
float get_health_probability(void) const {
return get_health_probability(primary);
}
void update_calibration(uint8_t i, float raw_pressure);