mirror of https://github.com/ArduPilot/ardupilot
130 lines
4.2 KiB
C++
130 lines
4.2 KiB
C++
/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
|
|
#pragma once
|
|
|
|
/*
|
|
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/>.
|
|
*/
|
|
/*
|
|
ADS-B RF based collision avoidance module
|
|
https://en.wikipedia.org/wiki/Automatic_dependent_surveillance_%E2%80%93_broadcast
|
|
|
|
Tom Pittenger, November 2015
|
|
*/
|
|
|
|
#include <AP_Common/AP_Common.h>
|
|
#include <AP_Param/AP_Param.h>
|
|
#include <GCS_MAVLink/GCS.h>
|
|
|
|
#define VEHICLE_THREAT_RADIUS_M 1000
|
|
#define VEHICLE_TIMEOUT_MS 10000 // if no updates in this time, drop it from the list
|
|
#define ADSB_VEHICLE_LIST_SIZE_DEFAULT 25
|
|
#define ADSB_VEHICLE_LIST_SIZE_MAX 100
|
|
|
|
class AP_ADSB
|
|
{
|
|
public:
|
|
enum ADSB_BEHAVIOR {
|
|
ADSB_BEHAVIOR_NONE = 0,
|
|
ADSB_BEHAVIOR_LOITER = 1,
|
|
ADSB_BEHAVIOR_LOITER_AND_DESCEND = 2,
|
|
ADSB_BEHAVIOR_GUIDED = 3
|
|
};
|
|
|
|
enum ADSB_THREAT_LEVEL {
|
|
ADSB_THREAT_LOW = 0,
|
|
ADSB_THREAT_HIGH = 1
|
|
};
|
|
|
|
struct adsb_vehicle_t {
|
|
mavlink_adsb_vehicle_t info; // the whole mavlink struct with all the juicy details. sizeof() == 38
|
|
uint32_t last_update_ms; // last time this was refreshed, allows timeouts
|
|
ADSB_THREAT_LEVEL threat_level; // basic threat level
|
|
};
|
|
|
|
|
|
// Constructor
|
|
AP_ADSB(AP_AHRS &ahrs) :
|
|
_ahrs(ahrs)
|
|
{
|
|
AP_Param::setup_object_defaults(this, var_info);
|
|
}
|
|
|
|
// for holding parameters
|
|
static const struct AP_Param::GroupInfo var_info[];
|
|
|
|
// periodic task that maintains vehicle_list
|
|
void update(void);
|
|
|
|
// add or update vehicle_list from inbound mavlink msg
|
|
void update_vehicle(const mavlink_message_t* msg);
|
|
|
|
bool get_possible_threat() { return _enabled && _another_vehicle_within_radius; }
|
|
|
|
ADSB_BEHAVIOR get_behavior() { return (ADSB_BEHAVIOR)(_behavior.get()); }
|
|
bool get_is_evading_threat() { return _enabled && _is_evading_threat; }
|
|
void set_is_evading_threat(bool is_evading) { if (_enabled) { _is_evading_threat = is_evading; } }
|
|
uint16_t get_vehicle_count() { return _vehicle_count; }
|
|
|
|
// send ADSB_VEHICLE mavlink message, usually as a StreamRate
|
|
void send_adsb_vehicle(mavlink_channel_t chan);
|
|
|
|
private:
|
|
|
|
// initialize _vehicle_list
|
|
void init();
|
|
|
|
// free _vehicle_list
|
|
void deinit();
|
|
|
|
// compares current vector against vehicle_list to detect threats
|
|
void perform_threat_detection(void);
|
|
|
|
// extract a location out of a vehicle item
|
|
Location get_location(const adsb_vehicle_t &vehicle) const;
|
|
|
|
// return index of given vehicle if ICAO_ADDRESS matches. return -1 if no match
|
|
bool find_index(const adsb_vehicle_t &vehicle, uint16_t *index) const;
|
|
|
|
// remove a vehicle from the list
|
|
void delete_vehicle(uint16_t index);
|
|
|
|
void set_vehicle(uint16_t index, const adsb_vehicle_t &vehicle);
|
|
|
|
// reference to AHRS, so we can ask for our position,
|
|
// heading and speed
|
|
const AP_AHRS &_ahrs;
|
|
|
|
AP_Int8 _enabled;
|
|
AP_Int8 _behavior;
|
|
AP_Int16 _list_size_param;
|
|
uint16_t _list_size = 1; // start with tiny list, then change to param-defined size. This ensures it doesn't fail on start
|
|
adsb_vehicle_t *_vehicle_list;
|
|
uint16_t _vehicle_count = 0;
|
|
bool _another_vehicle_within_radius = false;
|
|
bool _is_evading_threat = false;
|
|
|
|
// index of and distance to vehicle with lowest threat
|
|
uint16_t _lowest_threat_index = 0;
|
|
float _lowest_threat_distance = 0;
|
|
|
|
// index of and distance to vehicle with highest threat
|
|
uint16_t _highest_threat_index = 0;
|
|
float _highest_threat_distance = 0;
|
|
|
|
// streamrate stuff
|
|
uint32_t send_start_ms[MAVLINK_COMM_NUM_BUFFERS];
|
|
uint16_t send_index[MAVLINK_COMM_NUM_BUFFERS];
|
|
|
|
};
|