Packages

A helper layer on top of MAVLink for performing common commands and tasks with one or more remote vehicles. It can either be used as an API or directly from iex with an experience similar to Ardupilot's MAVProxy.

Current section

Files

Jump to
xmavlink_util lib mavlink_util application.ex
Raw

lib/mavlink_util/application.ex

defmodule MAVLink.Util.Application do
@moduledoc false
use Application
def start(_, _) do
children = [MAVLink.Util.Supervisor]
Supervisor.start_link(children, strategy: :one_for_one)
end
end