Avoiding manned airplanes (ADS-B, FLARM)

I have implemented a baseline avoidance system which basically mimics the human operator rules of reducing altitude and returning to land or landing the vehicle in this pull request:

This is enough to fulfil requirements from most regulators. IMHO doing anything more fancy than that requires vehicle-to-vehicle coordination and essentially TCAS compliance. I carefully avoided trying to solve the much bigger problem of traffic coordination. The goal of this PR is to make the operation safer, not create something that potentially leads to unintended manoeuvres due to an automatic avoidance action.

I would be interested in general feedback and thoughts before this goes into master.

1 Like

@LorenzMeier,

This is interesting - thanks for starting the work. Two questions on this:

  1. What simulation tool/environment did or do you use to evaluate this? jMAVSim, Gazebo, or…?
  2. The system uses mavlink as the means to connect he transponder (e.g. ADSB) and PX4. Is that a correct understanding?

It works in both Gazebo and jMAVSim. The uAvionix Ping and the new FLARM models both support the respective MAVLink messages.

Hi @LorenzMeier ,

So mandatorily needs ADS-B Device to simulate or is there any other way ADS-B messages can be simulated without actual device connected?

Thanks !!