Ardupilot2/libraries/AP_RangeFinder/AP_RangeFinder_MAVLink.cpp

50 lines
1.6 KiB
C++
Raw Normal View History

2016-05-04 00:02:44 -03:00
/*
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "AP_RangeFinder_MAVLink.h"
2016-05-04 00:02:44 -03:00
#include <AP_HAL/AP_HAL.h>
/*
Set the distance based on a MAVLINK message
*/
void AP_RangeFinder_MAVLink::handle_msg(const mavlink_message_t &msg)
2016-05-04 00:02:44 -03:00
{
mavlink_distance_sensor_t packet;
mavlink_msg_distance_sensor_decode(&msg, &packet);
2016-05-04 00:02:44 -03:00
// only accept distances for downward facing sensors
if (packet.orientation == MAV_SENSOR_ROTATION_PITCH_270) {
state.last_reading_ms = AP_HAL::millis();
distance_cm = packet.current_distance;
sensor_type = (MAV_DISTANCE_SENSOR)packet.type;
}
2016-05-04 00:02:44 -03:00
}
/*
2016-05-04 00:02:44 -03:00
update the state of the sensor
*/
void AP_RangeFinder_MAVLink::update(void)
2016-05-04 00:02:44 -03:00
{
//Time out on incoming data; if we don't get new
//data in 500ms, dump it
if (AP_HAL::millis() - state.last_reading_ms > AP_RANGEFINDER_MAVLINK_TIMEOUT_MS) {
set_status(RangeFinder::Status::NoData);
2016-05-04 00:02:44 -03:00
state.distance_cm = 0;
} else {
state.distance_cm = distance_cm;
update_status();
2016-05-04 00:02:44 -03:00
}
}