2011-03-19 07:20:11 -03:00
|
|
|
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
2010-12-19 12:40:33 -04:00
|
|
|
|
2015-05-29 23:12:49 -03:00
|
|
|
#include "Copter.h"
|
|
|
|
|
|
|
|
void Copter::init_barometer(bool full_calibration)
|
2010-12-19 12:40:33 -04:00
|
|
|
{
|
2015-11-18 15:08:19 -04:00
|
|
|
gcs_send_text(MAV_SEVERITY_INFO, "Calibrating barometer");
|
2014-01-15 10:18:23 -04:00
|
|
|
if (full_calibration) {
|
|
|
|
barometer.calibrate();
|
|
|
|
}else{
|
|
|
|
barometer.update_calibration();
|
|
|
|
}
|
2015-11-18 15:08:19 -04:00
|
|
|
gcs_send_text(MAV_SEVERITY_INFO, "Barometer calibration complete");
|
2011-02-25 01:33:39 -04:00
|
|
|
}
|
2011-12-26 19:13:47 -04:00
|
|
|
|
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();
|
2014-10-16 21:37:49 -03:00
|
|
|
if (should_log(MASK_LOG_IMU)) {
|
2014-02-18 16:38:20 -04:00
|
|
|
Log_Write_Baro();
|
|
|
|
}
|
2014-10-22 04:07:10 -03:00
|
|
|
baro_alt = barometer.get_altitude() * 100.0f;
|
|
|
|
baro_climbrate = barometer.get_climb_rate() * 100.0f;
|
2015-04-22 22:19:44 -03:00
|
|
|
|
|
|
|
motors.set_air_density_ratio(barometer.get_air_density_ratio());
|
2010-12-19 12:40:33 -04:00
|
|
|
}
|
|
|
|
|
2014-10-31 08:40:24 -03:00
|
|
|
#if CONFIG_SONAR == ENABLED
|
2015-05-29 23:12:49 -03:00
|
|
|
void Copter::init_sonar(void)
|
2014-10-31 08:40:24 -03:00
|
|
|
{
|
|
|
|
sonar.init();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-12-21 01:03:47 -04:00
|
|
|
// return sonar altitude in centimeters
|
2015-05-29 23:12:49 -03:00
|
|
|
int16_t Copter::read_sonar(void)
|
2012-12-21 01:03:47 -04:00
|
|
|
{
|
|
|
|
#if CONFIG_SONAR == ENABLED
|
2014-06-27 01:23:56 -03:00
|
|
|
sonar.update();
|
|
|
|
|
2013-01-31 04:00:28 -04:00
|
|
|
// exit immediately if sonar is disabled
|
2015-06-11 04:58:13 -03:00
|
|
|
if (sonar.status() != RangeFinder::RangeFinder_Good) {
|
2013-01-31 04:00:28 -04:00
|
|
|
sonar_alt_health = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-06-27 01:23:56 -03:00
|
|
|
int16_t temp_alt = sonar.distance_cm();
|
2012-12-21 01:03:47 -04:00
|
|
|
|
2014-06-27 01:23:56 -03:00
|
|
|
if (temp_alt >= sonar.min_distance_cm() &&
|
|
|
|
temp_alt <= sonar.max_distance_cm() * SONAR_RELIABLE_DISTANCE_PCT) {
|
2013-01-08 03:41:07 -04:00
|
|
|
if ( sonar_alt_health < SONAR_ALT_HEALTH_MAX ) {
|
|
|
|
sonar_alt_health++;
|
|
|
|
}
|
2012-12-29 00:51:14 -04:00
|
|
|
}else{
|
2013-01-08 03:41:07 -04:00
|
|
|
sonar_alt_health = 0;
|
2012-12-29 00:51:14 -04:00
|
|
|
}
|
|
|
|
|
2012-12-21 01:03:47 -04:00
|
|
|
#if SONAR_TILT_CORRECTION == 1
|
|
|
|
// correct alt for angle of the sonar
|
2014-02-08 03:40:45 -04:00
|
|
|
float temp = ahrs.cos_pitch() * ahrs.cos_roll();
|
2015-11-27 13:11:58 -04:00
|
|
|
temp = MAX(temp, 0.707f);
|
2012-12-21 01:03:47 -04:00
|
|
|
temp_alt = (float)temp_alt * temp;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return temp_alt;
|
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2015-08-07 02:34:56 -03:00
|
|
|
/*
|
|
|
|
update RPM sensors
|
|
|
|
*/
|
|
|
|
void Copter::rpm_update(void)
|
|
|
|
{
|
|
|
|
rpm_sensor.update();
|
2015-11-19 22:06:14 -04:00
|
|
|
if (rpm_sensor.enabled(0) || rpm_sensor.enabled(1)) {
|
2015-08-07 07:34:27 -03:00
|
|
|
if (should_log(MASK_LOG_RCIN)) {
|
|
|
|
DataFlash.Log_Write_RPM(rpm_sensor);
|
|
|
|
}
|
|
|
|
}
|
2015-08-07 02:34:56 -03:00
|
|
|
}
|
|
|
|
|
2014-10-31 08:40:24 -03:00
|
|
|
// initialise compass
|
2015-05-29 23:12:49 -03:00
|
|
|
void Copter::init_compass()
|
2011-12-29 23:06:31 -04:00
|
|
|
{
|
2012-08-16 21:50:03 -03:00
|
|
|
if (!compass.init() || !compass.read()) {
|
2012-02-24 23:09:12 -04:00
|
|
|
// make sure we don't pass a broken compass to DCM
|
2015-10-25 16:50:51 -03:00
|
|
|
cliSerial->println("COMPASS INIT ERROR");
|
2012-12-29 23:08:25 -04:00
|
|
|
Log_Write_Error(ERROR_SUBSYSTEM_COMPASS,ERROR_CODE_FAILED_TO_INITIALISE);
|
2012-02-24 23:09:12 -04:00
|
|
|
return;
|
|
|
|
}
|
2012-03-11 05:36:12 -03:00
|
|
|
ahrs.set_compass(&compass);
|
2011-12-29 23:06:31 -04:00
|
|
|
}
|
|
|
|
|
2014-10-31 08:40:24 -03:00
|
|
|
// initialise optical flow sensor
|
2015-05-29 23:12:49 -03:00
|
|
|
void Copter::init_optflow()
|
2011-12-29 23:06:31 -04:00
|
|
|
{
|
2012-11-18 12:16:07 -04:00
|
|
|
#if OPTFLOW == ENABLED
|
2014-07-11 23:34:55 -03:00
|
|
|
// exit immediately if not enabled
|
|
|
|
if (!optflow.enabled()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-04-23 04:24:31 -03:00
|
|
|
// initialise optical flow sensor
|
2014-01-08 23:29:50 -04:00
|
|
|
optflow.init();
|
2012-11-18 12:16:07 -04:00
|
|
|
#endif // OPTFLOW == ENABLED
|
2011-12-29 23:06:31 -04:00
|
|
|
}
|
|
|
|
|
2014-12-07 21:29:32 -04:00
|
|
|
// called at 200hz
|
|
|
|
#if OPTFLOW == ENABLED
|
2015-05-29 23:12:49 -03:00
|
|
|
void Copter::update_optical_flow(void)
|
2014-12-07 21:29:32 -04:00
|
|
|
{
|
|
|
|
static uint32_t last_of_update = 0;
|
|
|
|
|
|
|
|
// exit immediately if not enabled
|
|
|
|
if (!optflow.enabled()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// read from sensor
|
|
|
|
optflow.update();
|
|
|
|
|
|
|
|
// write to log and send to EKF if new data has arrived
|
|
|
|
if (optflow.last_update() != last_of_update) {
|
|
|
|
last_of_update = optflow.last_update();
|
|
|
|
uint8_t flowQuality = optflow.quality();
|
|
|
|
Vector2f flowRate = optflow.flowRate();
|
|
|
|
Vector2f bodyRate = optflow.bodyRate();
|
2015-04-15 22:31:31 -03:00
|
|
|
ahrs.writeOptFlowMeas(flowQuality, flowRate, bodyRate, last_of_update);
|
2015-01-05 22:06:44 -04:00
|
|
|
if (g.log_bitmask & MASK_LOG_OPTFLOW) {
|
2014-12-07 21:29:32 -04:00
|
|
|
Log_Write_Optflow();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif // OPTFLOW == ENABLED
|
|
|
|
|
2012-11-13 10:43:54 -04:00
|
|
|
// read_battery - check battery voltage and current and invoke failsafe if necessary
|
|
|
|
// called at 10hz
|
2015-05-29 23:12:49 -03:00
|
|
|
void Copter::read_battery(void)
|
2010-12-19 12:40:33 -04:00
|
|
|
{
|
2013-10-01 10:34:44 -03:00
|
|
|
battery.read();
|
2011-01-17 22:48:44 -04:00
|
|
|
|
2013-10-01 10:34:44 -03:00
|
|
|
// update compass with current value
|
2014-12-03 01:32:44 -04:00
|
|
|
if (battery.has_current()) {
|
2013-10-01 10:34:44 -03:00
|
|
|
compass.set_current(battery.current_amps());
|
2012-08-16 21:50:03 -03:00
|
|
|
}
|
2015-02-11 07:50:55 -04:00
|
|
|
|
|
|
|
// update motors with voltage and current
|
|
|
|
if (battery.get_type() != AP_BattMonitor::BattMonitor_TYPE_NONE) {
|
|
|
|
motors.set_voltage(battery.voltage());
|
|
|
|
}
|
|
|
|
if (battery.has_current()) {
|
|
|
|
motors.set_current(battery.current_amps());
|
|
|
|
}
|
2012-08-16 21:50:03 -03:00
|
|
|
|
2012-11-13 10:43:54 -04:00
|
|
|
// check for low voltage or current if the low voltage check hasn't already been triggered
|
2013-09-12 10:41:28 -03:00
|
|
|
// we only check when we're not powered by USB to avoid false alarms during bench tests
|
2013-10-13 01:52:52 -03:00
|
|
|
if (!ap.usb_connected && !failsafe.battery && battery.exhausted(g.fs_batt_voltage, g.fs_batt_mah)) {
|
|
|
|
failsafe_battery_event();
|
2012-08-16 21:50:03 -03:00
|
|
|
}
|
2014-10-07 09:40:48 -03:00
|
|
|
|
|
|
|
// log battery info to the dataflash
|
2014-10-16 21:37:49 -03:00
|
|
|
if (should_log(MASK_LOG_CURRENT)) {
|
2014-10-07 09:40:48 -03:00
|
|
|
Log_Write_Current();
|
|
|
|
}
|
2010-12-19 12:40:33 -04:00
|
|
|
}
|
2012-11-22 05:59:33 -04:00
|
|
|
|
|
|
|
// read the receiver RSSI as an 8 bit number for MAVLink
|
|
|
|
// RC_CHANNELS_SCALED message
|
2015-05-29 23:12:49 -03:00
|
|
|
void Copter::read_receiver_rssi(void)
|
2012-11-22 05:59:33 -04:00
|
|
|
{
|
2015-08-28 03:00:55 -03:00
|
|
|
receiver_rssi = rssi.read_receiver_rssi_uint8();
|
2012-11-22 05:59:33 -04:00
|
|
|
}
|
2014-09-15 03:52:21 -03:00
|
|
|
|
2015-07-01 16:36:53 -03:00
|
|
|
void Copter::compass_cal_update()
|
|
|
|
{
|
|
|
|
if (!hal.util->get_soft_armed()) {
|
|
|
|
compass.compass_cal_update();
|
|
|
|
}
|
2016-01-05 20:23:16 -04:00
|
|
|
#ifdef CAL_ALWAYS_REBOOT
|
|
|
|
if (compass.compass_cal_requires_reboot()) {
|
|
|
|
hal.scheduler->delay(1000);
|
|
|
|
hal.scheduler->reboot(false);
|
|
|
|
}
|
|
|
|
#endif
|
2015-07-01 16:36:53 -03:00
|
|
|
}
|
|
|
|
|
2015-10-16 19:05:53 -03:00
|
|
|
void Copter::accel_cal_update()
|
|
|
|
{
|
|
|
|
if (hal.util->get_soft_armed()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ins.acal_update();
|
|
|
|
// check if new trim values, and set them
|
|
|
|
float trim_roll, trim_pitch;
|
|
|
|
if(ins.get_new_trim(trim_roll, trim_pitch)) {
|
|
|
|
ahrs.set_trim(Vector3f(trim_roll, trim_pitch, 0));
|
|
|
|
}
|
2016-01-05 20:23:16 -04:00
|
|
|
|
|
|
|
#ifdef CAL_ALWAYS_REBOOT
|
|
|
|
if (ins.accel_cal_requires_reboot()) {
|
|
|
|
hal.scheduler->delay(1000);
|
|
|
|
hal.scheduler->reboot(false);
|
|
|
|
}
|
|
|
|
#endif
|
2015-10-16 19:05:53 -03:00
|
|
|
}
|
|
|
|
|
2014-09-15 03:52:21 -03:00
|
|
|
#if EPM_ENABLED == ENABLED
|
|
|
|
// epm update - moves epm pwm output back to neutral after grab or release is completed
|
2015-05-29 23:12:49 -03:00
|
|
|
void Copter::epm_update()
|
2014-09-15 03:52:21 -03:00
|
|
|
{
|
|
|
|
epm.update();
|
|
|
|
}
|
|
|
|
#endif
|