README.md 6.71 KB
Newer Older
Gus Grubba's avatar
Gus Grubba committed
1
# QGroundControl Ground Control Station
Hamish Willee's avatar
Hamish Willee committed
2

3
[![Releases](https://img.shields.io/github/release/mavlink/QGroundControl.svg)](https://github.com/mavlink/QGroundControl/releases)
4 5 6
[![Travis Build Status](https://travis-ci.org/mavlink/qgroundcontrol.svg?branch=master)](https://travis-ci.org/mavlink/qgroundcontrol)
[![Appveyor Build Status](https://ci.appveyor.com/api/projects/status/crxcm4qayejuvh6c/branch/master?svg=true)](https://ci.appveyor.com/project/mavlink/qgroundcontrol)

The Gitter Badger's avatar
The Gitter Badger committed
7 8
[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/mavlink/qgroundcontrol?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

Lorenz Meier's avatar
Lorenz Meier committed
9
Website: <http://qgroundcontrol.com>
10

Don Gagne's avatar
Don Gagne committed
11
## Obtaining source code
Lorenz Meier's avatar
Lorenz Meier committed
12

Don Gagne's avatar
Don Gagne committed
13
Source code for QGroundControl is kept on GitHub: https://github.com/mavlink/qgroundcontrol.
Stefano Probst's avatar
Stefano Probst committed
14
```
Daniel Agar's avatar
Daniel Agar committed
15
git clone --recursive https://github.com/mavlink/qgroundcontrol.git
Stefano Probst's avatar
Stefano Probst committed
16
```
Don Gagne's avatar
Don Gagne committed
17
Each time you pull new source to your repository you should run `git submodule update` to get the latest submodules as well. Since QGroundControl uses submodules, using the zip file for source download will not work. You must use git.
18

19 20
The source code is [dual-licensed under Apache 2.0 and GPLv3](https://github.com/mavlink/qgroundcontrol/blob/master/COPYING.md).

Don Gagne's avatar
Don Gagne committed
21
### User Manual
Hamish Willee's avatar
Hamish Willee committed
22
https://docs.qgroundcontrol.com/en/
Don Gagne's avatar
Don Gagne committed
23

Don Gagne's avatar
Don Gagne committed
24
### Supported Builds
25 26

#### Native Builds
Gus Grubba's avatar
Gus Grubba committed
27
QGroundControl builds are supported for OSX, Linux, Windows, iOS and Android. QGroundControl uses [Qt](http://www.qt.io) as its cross-platform support library and uses [QtCreator](http://doc.qt.io/qtcreator/index.html) as its default build environment.
DonLakeFlyer's avatar
DonLakeFlyer committed
28

Don Gagne's avatar
Don Gagne committed
29
* OSX: OSX 10.7 or higher, 64 bit, clang compiler (IMPORTANT: XCode 8 requires a workaround described below)
Don Gagne's avatar
Don Gagne committed
30
* Ubuntu: 64 bit, gcc compiler
Don Gagne's avatar
Don Gagne committed
31
* Windows: Vista or higher, 32 bit, [Visual Studio 2015 compiler](http://www.visualstudio.com/downloads/download-visual-studio-vs#d-express-windows-desktop)
Don Gagne's avatar
Don Gagne committed
32
* iOS: 8.0 and higher
Don Gagne's avatar
Don Gagne committed
33
* Android: Jelly Bean (4.1) and higher. Standard QGC is built against ndk version 19.
DonLakeFlyer's avatar
DonLakeFlyer committed
34
* Qt version: **5.9.3 only**
35

36
###### Install QT
DonLakeFlyer's avatar
DonLakeFlyer committed
37
You **need to install Qt as described below** instead of using pre-built packages from say, a Linux distribution, because QGroundControl needs access to private Qt headers.
Don Gagne's avatar
Don Gagne committed
38
* Download the [Qt installer](http://www.qt.io/download-open-source)
DonLakeFlyer's avatar
DonLakeFlyer committed
39
    * Make sure to install Qt version **5.9.3**. You will also need to install the Qt Speech package.
Don Gagne's avatar
Don Gagne committed
40
    * Ubuntu: Set the downloaded file to executable using:`chmod +x`. Install to default location for use with ./qgroundcontrol-start.sh. If you install Qt to a non-default location you will need to modify qgroundcontrol-start.sh in order to run downloaded builds.
Don Gagne's avatar
Don Gagne committed
41
    * Windows: Make sure to install VS 2015 32 bit package.
Don Gagne's avatar
Don Gagne committed
42

43
###### Install additional packages:
44 45 46
* Ubuntu: sudo apt-get install speech-dispatcher libudev-dev libsdl2-dev
* Fedora: sudo dnf install speech-dispatcher SDL2-devel SDL2 systemd-devel
* Arch Linux: pacman -Sy speech-dispatcher
Don Gagne's avatar
Don Gagne committed
47 48
* Windows: [USB Driver](http://www.pixhawk.org/firmware/downloads) to connect to Pixhawk/PX4Flow/3DR Radio
* Android: [Qt Android Setup](http://doc.qt.io/qt-5/androidgs.html)
49

50
###### Building using Qt Creator
Gus Grubba's avatar
Gus Grubba committed
51

Gus Grubba's avatar
Gus Grubba committed
52
* Launch Qt Creator and open the `qgroundcontrol.pro` project.
Don Gagne's avatar
Don Gagne committed
53
* Select the appropriate kit for your needs:
DonLakeFlyer's avatar
DonLakeFlyer committed
54 55 56 57
    * OSX: Desktop Qt 5.9.3 clang 64 bit
    * Ubuntu: Desktop Qt 5.9.3 GCC bit
    * Windows: Desktop Qt 5.9.3 MSVC2015 32bit
    * Android: Android for armeabi-v7a (GCC 4.9, Qt 5.9.3)
Gus Grubba's avatar
Gus Grubba committed
58
* Note: iOS builds must be built using xCode: http://doc.qt.io/qt-5/ios-support.html. Use Qt Creator to generate the XCode project (*Run Qmake* from the context menu).
Gus Grubba's avatar
Gus Grubba committed
59

60 61
#### Vagrant

Lorenz Meier's avatar
Lorenz Meier committed
62
A Vagrantfile is provided to build QGroundControl using the [Vagrant](https://www.vagrantup.com/) system. This will produce a native Linux build which can be run in the Vagrant Virtual Machine or on the host machine if it is compatible.
63 64 65 66

* [Download](https://www.vagrantup.com/downloads.html) Vagrant
* [Install](https://www.vagrantup.com/docs/getting-started/) Vagrant
* From the root directory of the QGroundControl repository run "vagrant up"
67
* To use the graphical environment run "vagrant reload"
68 69

#### Additional build notes for all supported OS
70

Gus Grubba's avatar
Gus Grubba committed
71 72
* Warnings as Errors: Specifying `CONFIG+=WarningsAsErrorsOn` will turn all warnings into errors which breaks the build. If you are working on a pull request you plan to submit to github for consideration, you should always run with this setting turned on, since it is required for all pull requests. NOTE: Putting this line into a file called "user_config.pri" in the top-level directory (same directory as `qgroundcontrol.pro`) will set this flag on all builds without interfering with the GIT history.
* Parallel builds: For non Windows builds, you can use the '-j#' option to run parellel builds.
Don Gagne's avatar
Don Gagne committed
73
* Location of built files: Individual build file results can be found in the `build_debug` or `build_release` directories. The built executable can be found in the `debug` or `release` directory.
Don Gagne's avatar
Don Gagne committed
74
* If you get this error when running qgroundcontrol: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version 'GLIBCXX_3.4.20' not found. You need to either update to the latest gcc, or install the latest libstdc++.6 using: sudo apt-get install libstdc++6.
75

Don Gagne's avatar
Don Gagne committed
76
## Additional functionality
Hamish Willee's avatar
Hamish Willee committed
77
QGroundControl has functionality that is dependent on the operating system and libraries installed by the user. The following sections describe these features, their dependencies, and how to disable/alter them during the build process. These features can be forcibly enabled/disabled by specifying additional values to qmake. 
Don Gagne's avatar
Don Gagne committed
78 79

### Opal-RT's RT-LAB simulator
Don Gagne's avatar
Don Gagne committed
80
Integration with Opal-RT's RT-LAB simulator can be enabled on Windows by installing RT-LAB 7.2.4. This allows vehicles to be simulated in RT-LAB and communicate directly with QGC on the same computer as if the UAS was actually deployed. This support is enabled by default once the requisite RT-LAB software is installed. Disabling this can be done by adding `DEFINES+=DISABLE_RTLAB` to qmake.
Don Gagne's avatar
Don Gagne committed
81 82 83 84

### XBee support
QGroundControl can talk to XBee wireless devices using their proprietary protocol directly on Windows and Linux platforms. This support is not necessary if you're not using XBee devices or aren't using their proprietary protocol. On Windows, the necessary dependencies are included in this repository and no additional steps are required. For Linux, change to the `libs/thirdParty/libxbee` folder and run `make;sudo make install` to install libxbee on your system (uninstalling can be done with a `sudo make uninstall`). `qmake` will automatically detect the library on Linux, so no other work is necessary.

Don Gagne's avatar
Don Gagne committed
85
To disable XBee support you may add `DEFINES+=DISABLE_XBEE` to qmake.
Gus Grubba's avatar
Gus Grubba committed
86 87 88

### Video Streaming
Check the [Video Streaming](https://github.com/mavlink/qgroundcontrol/tree/master/src/VideoStreaming) directory for further instructions.