2016-01-14 15:30:56 -04:00
|
|
|
#include "Sub.h"
|
2015-12-30 18:57:56 -04:00
|
|
|
|
|
|
|
// return barometric altitude in centimeters
|
2018-06-28 08:09:40 -03:00
|
|
|
void Sub::read_barometer()
|
2015-12-30 18:57:56 -04:00
|
|
|
{
|
|
|
|
barometer.update();
|
2019-09-05 13:32:42 -03:00
|
|
|
// If we are reading a positive altitude, the sensor needs calibration
|
|
|
|
// Even a few meters above the water we should have no significant depth reading
|
2022-09-27 09:04:53 -03:00
|
|
|
if(barometer.get_altitude() > 0) {
|
2019-09-05 13:32:42 -03:00
|
|
|
barometer.update_calibration();
|
|
|
|
}
|
2015-12-30 18:57:56 -04:00
|
|
|
|
2017-05-03 19:13:06 -03:00
|
|
|
if (ap.depth_sensor_present) {
|
|
|
|
sensor_health.depth = barometer.healthy(depth_sensor_idx);
|
|
|
|
}
|
2015-12-30 18:57:56 -04:00
|
|
|
}
|
|
|
|
|
2018-06-28 08:09:40 -03:00
|
|
|
void Sub::init_rangefinder()
|
2015-12-30 18:57:56 -04:00
|
|
|
{
|
2016-05-22 21:50:44 -03:00
|
|
|
#if RANGEFINDER_ENABLED == ENABLED
|
2019-04-05 06:19:31 -03:00
|
|
|
rangefinder.init(ROTATION_PITCH_270);
|
2017-02-03 17:33:27 -04:00
|
|
|
rangefinder_state.alt_cm_filt.set_cutoff_frequency(RANGEFINDER_WPNAV_FILT_HZ);
|
2017-02-26 22:32:58 -04:00
|
|
|
rangefinder_state.enabled = rangefinder.has_orientation(ROTATION_PITCH_270);
|
2015-12-30 18:57:56 -04:00
|
|
|
#endif
|
2016-05-22 21:50:44 -03:00
|
|
|
}
|
2015-12-30 18:57:56 -04:00
|
|
|
|
2016-05-22 21:50:44 -03:00
|
|
|
// return rangefinder altitude in centimeters
|
2018-06-28 08:09:40 -03:00
|
|
|
void Sub::read_rangefinder()
|
2015-12-30 18:57:56 -04:00
|
|
|
{
|
2016-05-22 21:50:44 -03:00
|
|
|
#if RANGEFINDER_ENABLED == ENABLED
|
|
|
|
rangefinder.update();
|
2015-12-30 18:57:56 -04:00
|
|
|
|
2019-11-01 02:12:53 -03:00
|
|
|
rangefinder_state.alt_healthy = ((rangefinder.status_orient(ROTATION_PITCH_270) == RangeFinder::Status::Good) && (rangefinder.range_valid_count_orient(ROTATION_PITCH_270) >= RANGEFINDER_HEALTH_MAX));
|
2016-05-22 21:50:44 -03:00
|
|
|
|
2017-02-26 22:32:58 -04:00
|
|
|
int16_t temp_alt = rangefinder.distance_cm_orient(ROTATION_PITCH_270);
|
2016-05-22 21:50:44 -03:00
|
|
|
|
2017-02-03 17:33:27 -04:00
|
|
|
#if RANGEFINDER_TILT_CORRECTION == ENABLED
|
2016-05-22 21:50:44 -03:00
|
|
|
// correct alt for angle of the rangefinder
|
|
|
|
temp_alt = (float)temp_alt * MAX(0.707f, ahrs.get_rotation_body_to_ned().c.z);
|
2017-02-03 17:33:27 -04:00
|
|
|
#endif
|
2015-12-30 18:57:56 -04:00
|
|
|
|
2016-05-22 21:50:44 -03:00
|
|
|
rangefinder_state.alt_cm = temp_alt;
|
2015-12-30 18:57:56 -04:00
|
|
|
|
2016-05-22 21:50:44 -03:00
|
|
|
// filter rangefinder for use by AC_WPNav
|
|
|
|
uint32_t now = AP_HAL::millis();
|
|
|
|
|
|
|
|
if (rangefinder_state.alt_healthy) {
|
|
|
|
if (now - rangefinder_state.last_healthy_ms > RANGEFINDER_TIMEOUT_MS) {
|
|
|
|
// reset filter if we haven't used it within the last second
|
|
|
|
rangefinder_state.alt_cm_filt.reset(rangefinder_state.alt_cm);
|
|
|
|
} else {
|
|
|
|
rangefinder_state.alt_cm_filt.apply(rangefinder_state.alt_cm, 0.05f);
|
2015-12-30 18:57:56 -04:00
|
|
|
}
|
2016-05-22 21:50:44 -03:00
|
|
|
rangefinder_state.last_healthy_ms = now;
|
2015-12-30 18:57:56 -04:00
|
|
|
}
|
|
|
|
|
2016-05-22 21:50:44 -03:00
|
|
|
// send rangefinder altitude and health to waypoint navigation library
|
2023-03-03 21:01:45 -04:00
|
|
|
const float terrain_offset_cm = inertial_nav.get_position_z_up_cm() - rangefinder_state.alt_cm_filt.get();
|
|
|
|
wp_nav.set_rangefinder_terrain_offset(rangefinder_state.enabled, rangefinder_state.alt_healthy, terrain_offset_cm);
|
|
|
|
circle_nav.set_rangefinder_terrain_offset(rangefinder_state.enabled && wp_nav.rangefinder_used(), rangefinder_state.alt_healthy, terrain_offset_cm);
|
2015-12-30 18:57:56 -04:00
|
|
|
|
|
|
|
#else
|
2016-05-22 21:50:44 -03:00
|
|
|
rangefinder_state.enabled = false;
|
|
|
|
rangefinder_state.alt_healthy = false;
|
|
|
|
rangefinder_state.alt_cm = 0;
|
2015-12-30 18:57:56 -04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-05-22 21:50:44 -03:00
|
|
|
// return true if rangefinder_alt can be used
|
2021-02-01 12:26:24 -04:00
|
|
|
bool Sub::rangefinder_alt_ok() const
|
2016-05-22 21:50:44 -03:00
|
|
|
{
|
|
|
|
return (rangefinder_state.enabled && rangefinder_state.alt_healthy);
|
|
|
|
}
|