地面站终端 App
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hengli f2e26de605 Added remote OpenGL drawing in 3D view. Any external application can draw to the 3D view via the protobuf implementation of GLOverlay messages. 13 years ago
..
include Added remote OpenGL drawing in 3D view. Any external application can draw to the 3D view via the protobuf implementation of GLOverlay messages. 13 years ago
message_definitions Added remote OpenGL drawing in 3D view. Any external application can draw to the 3D view via the protobuf implementation of GLOverlay messages. 13 years ago
missionlib Removed outdated MAVLINK v0.9 version as QGC does not work with this version. Added feature to import COLLADA terrain model and visualize model in 3D view. 13 years ago
src/pixhawk Added remote OpenGL drawing in 3D view. Any external application can draw to the 3D view via the protobuf implementation of GLOverlay messages. 13 years ago
README Removed outdated MAVLINK v0.9 version as QGC does not work with this version. Added feature to import COLLADA terrain model and visualize model in 3D view. 13 years ago
license.txt Removed outdated MAVLINK v0.9 version as QGC does not work with this version. Added feature to import COLLADA terrain model and visualize model in 3D view. 13 years ago

README

MAVLink Micro Air Vehicle Message Marshalling Library

This is a library for lightweight communication between
Micro Air Vehicles (swarm) and/or ground control stations.
It serializes C-structs for serial channels and can be used with
any type of radio modem.

For help, please visit the mailing list: http://groups.google.com/group/mavlink

MAVLink is licensed under the terms of the Lesser General Public License of the Free Software Foundation (LGPL).
As MAVLink is a header-only library, compiling an application with it is considered "using the libary", not a derived work. MAVLink can therefore be used without limits in any closed-source application without publishing the source code of the closed-source application.

To generate/update packets, select mavlink_standard_message.xml
in the QGroundControl station settings view, select mavlink/include as
the output directory and click on "Save and Generate".
You will find the newly generated/updated message_xx.h files in
the mavlink/include/generated folder.

To use MAVLink, #include the <mavlink.h> file, not the individual
message files. In some cases you will have to add the main folder to the include search path as well. To be safe, we recommend these flags:

gcc -I mavlink/include -I mavlink/include/<your message set, e.g. common>

For more information, please visit:

http://qgroundcontrol.org/mavlink/

(c) 2009-2012 Lorenz Meier <mail@qgroundcontrol.org>