2015-05-29 23:12:49 -03:00
|
|
|
#include "Copter.h"
|
|
|
|
|
2012-06-20 02:17:15 -03:00
|
|
|
// return barometric altitude in centimeters
|
2015-05-29 23:12:49 -03:00
|
|
|
void Copter::read_barometer(void)
|
2011-02-21 00:30:56 -04:00
|
|
|
{
|
2015-01-05 07:28:00 -04:00
|
|
|
barometer.update();
|
2018-04-11 09:50:53 -03:00
|
|
|
|
2014-10-22 04:07:10 -03:00
|
|
|
baro_alt = barometer.get_altitude() * 100.0f;
|
2015-04-22 22:19:44 -03:00
|
|
|
|
2017-01-09 03:31:26 -04:00
|
|
|
motors->set_air_density_ratio(barometer.get_air_density_ratio());
|
2010-12-19 12:40:33 -04:00
|
|
|
}
|
|
|
|
|
2016-04-27 08:37:04 -03:00
|
|
|
void Copter::init_rangefinder(void)
|
2014-10-31 08:40:24 -03:00
|
|
|
{
|
2016-04-27 08:37:04 -03:00
|
|
|
#if RANGEFINDER_ENABLED == ENABLED
|
2019-04-05 06:19:58 -03:00
|
|
|
rangefinder.set_log_rfnd_bit(MASK_LOG_CTUN);
|
2019-04-05 06:14:36 -03:00
|
|
|
rangefinder.init(ROTATION_PITCH_270);
|
2021-06-14 00:38:37 -03:00
|
|
|
rangefinder_state.alt_cm_filt.set_cutoff_frequency(g2.rangefinder_filt);
|
2017-02-09 07:30:59 -04:00
|
|
|
rangefinder_state.enabled = rangefinder.has_orientation(ROTATION_PITCH_270);
|
2019-08-23 22:59:22 -03:00
|
|
|
|
|
|
|
// upward facing range finder
|
2021-06-14 00:38:37 -03:00
|
|
|
rangefinder_up_state.alt_cm_filt.set_cutoff_frequency(g2.rangefinder_filt);
|
2019-08-23 22:59:22 -03:00
|
|
|
rangefinder_up_state.enabled = rangefinder.has_orientation(ROTATION_PITCH_90);
|
2014-10-31 08:40:24 -03:00
|
|
|
#endif
|
2016-04-27 08:37:04 -03:00
|
|
|
}
|
2014-10-31 08:40:24 -03:00
|
|
|
|
2016-04-27 08:37:04 -03:00
|
|
|
// return rangefinder altitude in centimeters
|
2016-04-27 09:20:03 -03:00
|
|
|
void Copter::read_rangefinder(void)
|
2012-12-21 01:03:47 -04:00
|
|
|
{
|
2016-04-27 07:55:35 -03:00
|
|
|
#if RANGEFINDER_ENABLED == ENABLED
|
2016-04-27 08:37:04 -03:00
|
|
|
rangefinder.update();
|
2014-06-27 01:23:56 -03:00
|
|
|
|
2019-08-23 22:59:22 -03:00
|
|
|
#if RANGEFINDER_TILT_CORRECTION == ENABLED
|
|
|
|
const float tilt_correction = MAX(0.707f, ahrs.get_rotation_body_to_ned().c.z);
|
|
|
|
#else
|
2019-10-31 19:34:33 -03:00
|
|
|
const float tilt_correction = 1.0f;
|
2019-08-23 22:59:22 -03:00
|
|
|
#endif
|
2019-06-25 23:16:30 -03:00
|
|
|
|
2019-08-23 22:59:22 -03:00
|
|
|
// iterate through downward and upward facing lidar
|
|
|
|
struct {
|
|
|
|
RangeFinderState &state;
|
|
|
|
enum Rotation orientation;
|
2020-02-16 22:42:25 -04:00
|
|
|
} rngfnd[2] = {{rangefinder_state, ROTATION_PITCH_270}, {rangefinder_up_state, ROTATION_PITCH_90}};
|
2019-08-23 22:59:22 -03:00
|
|
|
|
|
|
|
for (uint8_t i=0; i < ARRAY_SIZE(rngfnd); i++) {
|
|
|
|
// local variables to make accessing simpler
|
|
|
|
RangeFinderState &rf_state = rngfnd[i].state;
|
|
|
|
enum Rotation rf_orient = rngfnd[i].orientation;
|
|
|
|
|
|
|
|
// update health
|
2019-11-01 02:13:55 -03:00
|
|
|
rf_state.alt_healthy = ((rangefinder.status_orient(rf_orient) == RangeFinder::Status::Good) &&
|
2019-08-23 22:59:22 -03:00
|
|
|
(rangefinder.range_valid_count_orient(rf_orient) >= RANGEFINDER_HEALTH_MAX));
|
|
|
|
|
|
|
|
// tilt corrected but unfiltered, not glitch protected alt
|
|
|
|
rf_state.alt_cm = tilt_correction * rangefinder.distance_cm_orient(rf_orient);
|
|
|
|
|
2020-02-18 18:22:31 -04:00
|
|
|
// remember inertial alt to allow us to interpolate rangefinder
|
2021-10-20 05:29:57 -03:00
|
|
|
rf_state.inertial_alt_cm = inertial_nav.get_position_z_up_cm();
|
2020-02-18 18:22:31 -04:00
|
|
|
|
2019-08-23 22:59:22 -03:00
|
|
|
// glitch handling. rangefinder readings more than RANGEFINDER_GLITCH_ALT_CM from the last good reading
|
|
|
|
// are considered a glitch and glitch_count becomes non-zero
|
|
|
|
// glitches clear after RANGEFINDER_GLITCH_NUM_SAMPLES samples in a row.
|
|
|
|
// glitch_cleared_ms is set so surface tracking (or other consumers) can trigger a target reset
|
|
|
|
const int32_t glitch_cm = rf_state.alt_cm - rf_state.alt_cm_glitch_protected;
|
2023-03-05 19:53:58 -04:00
|
|
|
bool reset_terrain_offset = false;
|
2019-08-23 22:59:22 -03:00
|
|
|
if (glitch_cm >= RANGEFINDER_GLITCH_ALT_CM) {
|
|
|
|
rf_state.glitch_count = MAX(rf_state.glitch_count+1, 1);
|
|
|
|
} else if (glitch_cm <= -RANGEFINDER_GLITCH_ALT_CM) {
|
|
|
|
rf_state.glitch_count = MIN(rf_state.glitch_count-1, -1);
|
2016-04-28 00:30:41 -03:00
|
|
|
} else {
|
2019-08-23 22:59:22 -03:00
|
|
|
rf_state.glitch_count = 0;
|
|
|
|
rf_state.alt_cm_glitch_protected = rf_state.alt_cm;
|
|
|
|
}
|
|
|
|
if (abs(rf_state.glitch_count) >= RANGEFINDER_GLITCH_NUM_SAMPLES) {
|
|
|
|
// clear glitch and record time so consumers (i.e. surface tracking) can reset their target altitudes
|
|
|
|
rf_state.glitch_count = 0;
|
|
|
|
rf_state.alt_cm_glitch_protected = rf_state.alt_cm;
|
|
|
|
rf_state.glitch_cleared_ms = AP_HAL::millis();
|
2023-03-05 19:53:58 -04:00
|
|
|
reset_terrain_offset = true;
|
2016-04-28 00:30:41 -03:00
|
|
|
}
|
|
|
|
|
2019-08-23 22:59:22 -03:00
|
|
|
// filter rangefinder altitude
|
|
|
|
uint32_t now = AP_HAL::millis();
|
|
|
|
const bool timed_out = now - rf_state.last_healthy_ms > RANGEFINDER_TIMEOUT_MS;
|
|
|
|
if (rf_state.alt_healthy) {
|
|
|
|
if (timed_out) {
|
|
|
|
// reset filter if we haven't used it within the last second
|
|
|
|
rf_state.alt_cm_filt.reset(rf_state.alt_cm);
|
2023-03-05 19:53:58 -04:00
|
|
|
reset_terrain_offset = true;
|
|
|
|
|
2019-08-23 22:59:22 -03:00
|
|
|
} else {
|
2019-09-27 22:01:38 -03:00
|
|
|
rf_state.alt_cm_filt.apply(rf_state.alt_cm, 0.05f);
|
2019-08-23 22:59:22 -03:00
|
|
|
}
|
|
|
|
rf_state.last_healthy_ms = now;
|
|
|
|
}
|
|
|
|
|
2023-03-05 19:53:58 -04:00
|
|
|
// handle reset of terrain offset
|
|
|
|
if (reset_terrain_offset) {
|
|
|
|
if (rf_orient == ROTATION_PITCH_90) {
|
|
|
|
// upward facing
|
|
|
|
rf_state.terrain_offset_cm = rf_state.inertial_alt_cm + rf_state.alt_cm;
|
|
|
|
} else {
|
|
|
|
// assume downward facing
|
|
|
|
rf_state.terrain_offset_cm = rf_state.inertial_alt_cm - rf_state.alt_cm;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-19 14:56:00 -04:00
|
|
|
// send downward facing lidar altitude and health to the libraries that require it
|
2023-03-03 21:01:34 -04:00
|
|
|
#if HAL_PROXIMITY_ENABLED
|
2019-08-23 22:59:22 -03:00
|
|
|
if (rf_orient == ROTATION_PITCH_270) {
|
|
|
|
if (rangefinder_state.alt_healthy || timed_out) {
|
2021-02-19 14:56:00 -04:00
|
|
|
g2.proximity.set_rangefinder_alt(rangefinder_state.enabled, rangefinder_state.alt_healthy, rangefinder_state.alt_cm_filt.get());
|
2019-08-23 22:59:22 -03:00
|
|
|
}
|
|
|
|
}
|
2023-03-03 21:01:34 -04:00
|
|
|
#endif
|
2019-06-25 23:16:30 -03:00
|
|
|
}
|
2016-04-28 00:30:41 -03:00
|
|
|
|
2012-12-21 01:03:47 -04:00
|
|
|
#else
|
2019-08-23 22:59:22 -03:00
|
|
|
// downward facing rangefinder
|
2016-05-11 03:31:58 -03:00
|
|
|
rangefinder_state.enabled = false;
|
2016-05-07 04:55:40 -03:00
|
|
|
rangefinder_state.alt_healthy = false;
|
|
|
|
rangefinder_state.alt_cm = 0;
|
2019-08-23 22:59:22 -03:00
|
|
|
|
|
|
|
// upward facing rangefinder
|
|
|
|
rangefinder_up_state.enabled = false;
|
|
|
|
rangefinder_up_state.alt_healthy = false;
|
|
|
|
rangefinder_up_state.alt_cm = 0;
|
2012-12-21 01:03:47 -04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-04-27 09:18:35 -03:00
|
|
|
// return true if rangefinder_alt can be used
|
2021-02-01 12:26:21 -04:00
|
|
|
bool Copter::rangefinder_alt_ok() const
|
2016-04-27 09:18:35 -03:00
|
|
|
{
|
2016-05-07 04:55:40 -03:00
|
|
|
return (rangefinder_state.enabled && rangefinder_state.alt_healthy);
|
2016-04-27 09:18:35 -03:00
|
|
|
}
|
|
|
|
|
2019-08-23 22:59:22 -03:00
|
|
|
// return true if rangefinder_alt can be used
|
2021-02-01 12:26:21 -04:00
|
|
|
bool Copter::rangefinder_up_ok() const
|
2019-08-23 22:59:22 -03:00
|
|
|
{
|
|
|
|
return (rangefinder_up_state.enabled && rangefinder_up_state.alt_healthy);
|
|
|
|
}
|
|
|
|
|
2023-03-03 21:01:34 -04:00
|
|
|
// update rangefinder based terrain offset
|
|
|
|
// terrain offset is the terrain's height above the EKF origin
|
|
|
|
void Copter::update_rangefinder_terrain_offset()
|
|
|
|
{
|
|
|
|
float terrain_offset_cm = rangefinder_state.inertial_alt_cm - rangefinder_state.alt_cm_glitch_protected;
|
|
|
|
rangefinder_state.terrain_offset_cm += (terrain_offset_cm - rangefinder_state.terrain_offset_cm) * (copter.G_Dt / MAX(copter.g2.surftrak_tc, copter.G_Dt));
|
|
|
|
|
|
|
|
terrain_offset_cm = rangefinder_up_state.inertial_alt_cm + rangefinder_up_state.alt_cm_glitch_protected;
|
|
|
|
rangefinder_up_state.terrain_offset_cm += (terrain_offset_cm - rangefinder_up_state.terrain_offset_cm) * (copter.G_Dt / MAX(copter.g2.surftrak_tc, copter.G_Dt));
|
|
|
|
|
|
|
|
if (rangefinder_state.alt_healthy || (AP_HAL::millis() - rangefinder_state.last_healthy_ms > RANGEFINDER_TIMEOUT_MS)) {
|
|
|
|
wp_nav->set_rangefinder_terrain_offset(rangefinder_state.enabled, rangefinder_state.alt_healthy, rangefinder_state.terrain_offset_cm);
|
|
|
|
#if MODE_CIRCLE_ENABLED
|
|
|
|
circle_nav->set_rangefinder_terrain_offset(rangefinder_state.enabled && wp_nav->rangefinder_used(), rangefinder_state.alt_healthy, rangefinder_state.terrain_offset_cm);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-18 18:22:31 -04:00
|
|
|
/*
|
|
|
|
get inertially interpolated rangefinder height. Inertial height is
|
|
|
|
recorded whenever we update the rangefinder height, then we use the
|
|
|
|
difference between the inertial height at that time and the current
|
|
|
|
inertial height to give us interpolation of height from rangefinder
|
|
|
|
*/
|
2022-06-15 00:24:26 -03:00
|
|
|
bool Copter::get_rangefinder_height_interpolated_cm(int32_t& ret) const
|
2020-02-18 18:22:31 -04:00
|
|
|
{
|
|
|
|
if (!rangefinder_alt_ok()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
ret = rangefinder_state.alt_cm_filt.get();
|
2021-10-20 05:29:57 -03:00
|
|
|
float inertial_alt_cm = inertial_nav.get_position_z_up_cm();
|
2020-02-18 18:22:31 -04:00
|
|
|
ret += inertial_alt_cm - rangefinder_state.inertial_alt_cm;
|
|
|
|
return true;
|
|
|
|
}
|