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();
|
|
|
|
|
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
|
2017-02-03 17:33:27 -04:00
|
|
|
rangefinder.init();
|
|
|
|
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
|
|
|
|
2017-02-26 22:32:58 -04:00
|
|
|
rangefinder_state.alt_healthy = ((rangefinder.status_orient(ROTATION_PITCH_270) == RangeFinder::RangeFinder_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
|
|
|
|
wp_nav.set_rangefinder_alt(rangefinder_state.enabled, rangefinder_state.alt_healthy, rangefinder_state.alt_cm_filt.get());
|
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
|
|
|
|
bool Sub::rangefinder_alt_ok()
|
|
|
|
{
|
|
|
|
return (rangefinder_state.enabled && rangefinder_state.alt_healthy);
|
|
|
|
}
|
|
|
|
|
2015-12-30 18:57:56 -04:00
|
|
|
/*
|
|
|
|
update RPM sensors
|
|
|
|
*/
|
2016-11-25 18:58:31 -04:00
|
|
|
#if RPM_ENABLED == ENABLED
|
2016-01-14 15:30:56 -04:00
|
|
|
void Sub::rpm_update(void)
|
2015-12-30 18:57:56 -04:00
|
|
|
{
|
|
|
|
rpm_sensor.update();
|
|
|
|
if (rpm_sensor.enabled(0) || rpm_sensor.enabled(1)) {
|
|
|
|
if (should_log(MASK_LOG_RCIN)) {
|
2019-01-18 00:24:08 -04:00
|
|
|
logger.Write_RPM(rpm_sensor);
|
2015-12-30 18:57:56 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-11-25 18:58:31 -04:00
|
|
|
#endif
|
2015-12-30 18:57:56 -04:00
|
|
|
|
|
|
|
// initialise compass
|
2016-01-14 15:30:56 -04:00
|
|
|
void Sub::init_compass()
|
2015-12-30 18:57:56 -04:00
|
|
|
{
|
2018-07-03 06:07:38 -03:00
|
|
|
compass.init();
|
|
|
|
if (!compass.read()) {
|
2015-12-30 18:57:56 -04:00
|
|
|
// make sure we don't pass a broken compass to DCM
|
2017-04-13 19:53:48 -03:00
|
|
|
hal.console->println("COMPASS INIT ERROR");
|
2015-12-30 18:57:56 -04:00
|
|
|
Log_Write_Error(ERROR_SUBSYSTEM_COMPASS,ERROR_CODE_FAILED_TO_INITIALISE);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ahrs.set_compass(&compass);
|
|
|
|
}
|
|
|
|
|
2017-06-05 04:51:54 -03:00
|
|
|
/*
|
2018-08-02 00:20:17 -03:00
|
|
|
initialise compass's location used for declination
|
2017-06-05 04:51:54 -03:00
|
|
|
*/
|
2018-08-02 00:20:17 -03:00
|
|
|
void Sub::init_compass_location()
|
2017-06-05 04:51:54 -03:00
|
|
|
{
|
|
|
|
// update initial location used for declination
|
|
|
|
if (!ap.compass_init_location) {
|
|
|
|
Location loc;
|
|
|
|
if (ahrs.get_position(loc)) {
|
|
|
|
compass.set_initial_location(loc.lat, loc.lng);
|
|
|
|
ap.compass_init_location = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-30 18:57:56 -04:00
|
|
|
// initialise optical flow sensor
|
2017-04-11 16:32:03 -03:00
|
|
|
#if OPTFLOW == ENABLED
|
2016-01-14 15:30:56 -04:00
|
|
|
void Sub::init_optflow()
|
2015-12-30 18:57:56 -04:00
|
|
|
{
|
|
|
|
// initialise optical flow sensor
|
2018-09-02 09:33:53 -03:00
|
|
|
optflow.init(MASK_LOG_OPTFLOW);
|
2015-12-30 18:57:56 -04:00
|
|
|
}
|
2017-04-11 16:32:03 -03:00
|
|
|
#endif // OPTFLOW == ENABLED
|
2015-12-30 18:57:56 -04:00
|
|
|
|
2016-01-14 15:30:56 -04:00
|
|
|
void Sub::compass_cal_update()
|
2015-12-30 18:57:56 -04:00
|
|
|
{
|
|
|
|
if (!hal.util->get_soft_armed()) {
|
|
|
|
compass.compass_cal_update();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-14 15:30:56 -04:00
|
|
|
void Sub::accel_cal_update()
|
2015-12-30 18:57:56 -04:00
|
|
|
{
|
|
|
|
if (hal.util->get_soft_armed()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ins.acal_update();
|
|
|
|
// check if new trim values, and set them
|
|
|
|
float trim_roll, trim_pitch;
|
2017-02-03 17:33:27 -04:00
|
|
|
if (ins.get_new_trim(trim_roll, trim_pitch)) {
|
2015-12-30 18:57:56 -04:00
|
|
|
ahrs.set_trim(Vector3f(trim_roll, trim_pitch, 0));
|
|
|
|
}
|
|
|
|
}
|