2011-09-08 22:29:39 -03:00
|
|
|
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
|
|
|
|
|
|
static void init_barometer(void)
|
|
|
|
{
|
2012-12-03 20:13:33 -04:00
|
|
|
gcs_send_text_P(SEVERITY_LOW, PSTR("Calibrating barometer"));
|
2012-12-04 18:22:21 -04:00
|
|
|
barometer.calibrate();
|
2012-11-18 17:09:44 -04:00
|
|
|
|
2012-06-19 23:26:58 -03:00
|
|
|
gcs_send_text_P(SEVERITY_LOW, PSTR("barometer calibration complete"));
|
2011-09-08 22:29:39 -03:00
|
|
|
}
|
|
|
|
|
2013-10-30 19:23:21 -03:00
|
|
|
static void init_sonar(void)
|
|
|
|
{
|
2014-06-27 00:05:14 -03:00
|
|
|
sonar.init();
|
2013-10-30 19:23:21 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
// read the sonars
|
|
|
|
static void read_sonars(void)
|
|
|
|
{
|
2014-06-27 00:05:14 -03:00
|
|
|
sonar.update();
|
2013-10-30 19:23:21 -03:00
|
|
|
|
2014-01-13 22:07:43 -04:00
|
|
|
if (should_log(MASK_LOG_SONAR))
|
2013-10-30 19:23:21 -03:00
|
|
|
Log_Write_Sonar();
|
|
|
|
}
|
|
|
|
|
2013-08-28 09:37:07 -03:00
|
|
|
/*
|
|
|
|
ask airspeed sensor for a new value
|
|
|
|
*/
|
2011-09-08 22:29:39 -03:00
|
|
|
static void read_airspeed(void)
|
|
|
|
{
|
2013-06-04 00:34:58 -03:00
|
|
|
if (airspeed.enabled()) {
|
|
|
|
airspeed.read();
|
2014-01-27 19:35:59 -04:00
|
|
|
if (should_log(MASK_LOG_IMU)) {
|
|
|
|
Log_Write_Airspeed();
|
|
|
|
}
|
2013-06-04 00:34:58 -03:00
|
|
|
calc_airspeed_errors();
|
|
|
|
}
|
2011-09-08 22:29:39 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void zero_airspeed(void)
|
|
|
|
{
|
2012-12-04 18:22:21 -04:00
|
|
|
airspeed.calibrate();
|
2012-08-15 06:49:09 -03:00
|
|
|
gcs_send_text_P(SEVERITY_LOW,PSTR("zero airspeed calibrated"));
|
2011-09-08 22:29:39 -03:00
|
|
|
}
|
|
|
|
|
2013-09-29 09:54:39 -03:00
|
|
|
// read_battery - reads battery voltage and current and invokes failsafe
|
|
|
|
// should be called at 10hz
|
2011-09-08 22:29:39 -03:00
|
|
|
static void read_battery(void)
|
|
|
|
{
|
2013-09-29 09:54:39 -03:00
|
|
|
battery.read();
|
2014-04-14 19:28:32 -03:00
|
|
|
compass.set_current(battery.current_amps());
|
2012-08-16 21:50:15 -03:00
|
|
|
|
2013-09-30 11:15:35 -03:00
|
|
|
if (!usb_connected && battery.exhausted(g.fs_batt_voltage, g.fs_batt_mah)) {
|
2013-05-22 07:33:57 -03:00
|
|
|
low_battery_event();
|
|
|
|
}
|
2011-09-08 22:29:39 -03:00
|
|
|
}
|
|
|
|
|
2012-08-22 00:33:12 -03:00
|
|
|
|
2012-08-22 00:58:25 -03:00
|
|
|
// read the receiver RSSI as an 8 bit number for MAVLink
|
2012-08-22 00:33:12 -03:00
|
|
|
// RC_CHANNELS_SCALED message
|
2012-08-22 00:58:25 -03:00
|
|
|
void read_receiver_rssi(void)
|
2012-08-22 00:33:12 -03:00
|
|
|
{
|
2014-01-29 20:29:35 -04:00
|
|
|
// avoid divide by zero
|
|
|
|
if (g.rssi_range <= 0) {
|
|
|
|
receiver_rssi = 0;
|
|
|
|
}else{
|
|
|
|
rssi_analog_source->set_pin(g.rssi_pin);
|
|
|
|
float ret = rssi_analog_source->voltage_average() * 255 / g.rssi_range;
|
|
|
|
receiver_rssi = constrain_int16(ret, 0, 255);
|
|
|
|
}
|
2012-08-22 00:33:12 -03:00
|
|
|
}
|
2012-09-19 03:22:53 -03:00
|
|
|
|