├── .ackrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── android_32_release.yml │ ├── android_64_release.yml │ ├── linux_debug.yml │ ├── linux_release.yml │ ├── macos_release.yml │ └── windows_release.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── .vagrantconfig.yml ├── .ycm_extra_conf.py ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COPYING.md ├── CentOS.md ├── ChangeLog.md ├── CodingStyle.cc ├── CodingStyle.h ├── CodingStyle.qml ├── Custom-Info.plist ├── ISSUE_TEMPLATE.md ├── Makefile ├── PULL_REQUEST_TEMPLATE.md ├── QGCCommon.pri ├── QGCExternalLibs.pri ├── QGCPostLinkCommon.pri ├── QGCPostLinkInstaller.pri ├── README.md ├── UnitTest.qrc ├── Vagrantfile ├── VideoReceiverApp ├── CMakeLists.txt ├── Info.plist ├── README.md ├── android │ ├── AndroidManifest.xml │ ├── AndroidManifest.xml.in │ ├── GooglePlayDailyIcon.png │ ├── GooglePlayFeatureGraphic.png │ ├── GooglePlayScreenShot1.jpg │ ├── GooglePlayScreenShot2.jpg │ ├── Google_Play_Android_Developer-4432a3c4f5d1.json.enc │ ├── android_release.keystore │ ├── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ ├── drawable-xxxhdpi │ │ │ └── icon.png │ │ └── values │ │ │ └── libs.xml │ └── src │ │ ├── labs │ │ └── mavlink │ │ │ └── VideoReceiverApp │ │ │ └── QGLSinkActivity.java │ │ └── org │ │ └── freedesktop │ │ └── gstreamer │ │ └── androidmedia │ │ ├── GstAhcCallback.java │ │ ├── GstAhsCallback.java │ │ └── GstAmcOnFrameAvailableListener.java ├── main.cpp ├── main.qml └── qml.qrc ├── android.pri ├── android ├── AndroidManifest.xml ├── GooglePlayDailyIcon.png ├── GooglePlayFeatureGraphic.png ├── GooglePlayScreenShot1.jpg ├── GooglePlayScreenShot2.jpg ├── Google_Play_Android_Developer-4432a3c4f5d1.json.enc ├── android_release.keystore ├── libs │ └── d2xx.jar ├── res │ ├── drawable-hdpi │ │ └── icon.png │ ├── drawable-ldpi │ │ └── icon.png │ ├── drawable-mdpi │ │ └── icon.png │ ├── drawable-xhdpi │ │ └── icon.png │ ├── drawable-xxhdpi │ │ └── icon.png │ ├── drawable-xxxhdpi │ │ └── icon.png │ ├── values │ │ └── libs.xml │ └── xml │ │ └── device_filter.xml └── src │ ├── com │ └── hoho │ │ └── android │ │ └── usbserial │ │ └── driver │ │ ├── CdcAcmSerialDriver.java │ │ ├── CommonUsbSerialDriver.java │ │ ├── Cp2102SerialDriver.java │ │ ├── FtdiSerialDriver.java │ │ ├── ProlificSerialDriver.java │ │ ├── UsbId.java │ │ ├── UsbSerialDriver.java │ │ ├── UsbSerialProber.java │ │ └── UsbSerialRuntimeException.java │ └── org │ ├── freedesktop │ └── gstreamer │ │ └── androidmedia │ │ ├── GstAhcCallback.java │ │ ├── GstAhsCallback.java │ │ └── GstAmcOnFrameAvailableListener.java │ └── mavlink │ └── qgroundcontrol │ ├── QGCActivity.java │ ├── TaiSync.java │ └── UsbIoManager.java ├── android_environment.sh ├── backup-Jenkinsfile ├── cmake ├── AddQtAndroidApk.cmake ├── CompileOptions.cmake ├── Git.cmake ├── MacOSXBundleInfo.plist.in ├── QGCDeploy.cmake ├── Qt5QGCConfiguration.cmake ├── Windeployqt.cmake ├── android.toolchain.cmake ├── qtdeploy.json.in └── windows_metafile.rc.in ├── crowdin.yml ├── custom-example ├── InstrumentValueIcons.qrc ├── README.jpg ├── README.md ├── android │ └── res │ │ ├── drawable-hdpi │ │ └── icon.png │ │ ├── drawable-ldpi │ │ └── icon.png │ │ ├── drawable-mdpi │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ └── icon.png │ │ └── drawable-xxxhdpi │ │ └── icon.png ├── custom.pri ├── custom.qrc ├── custom_deploy.pri ├── deploy │ ├── qgroundcontrol-start.sh │ └── qgroundcontrol.desktop ├── qgcresources.exclusion ├── qgcresources.qrc ├── qgroundcontrol.exclusion ├── qgroundcontrol.qrc ├── res │ ├── Custom │ │ ├── Camera │ │ │ ├── ZoomControl.qml │ │ │ └── qmldir │ │ └── Widgets │ │ │ ├── CustomArtificialHorizon.qml │ │ │ ├── CustomAttitudeWidget.qml │ │ │ ├── CustomIconButton.qml │ │ │ ├── CustomOnOffSwitch.qml │ │ │ ├── CustomQuickButton.qml │ │ │ ├── CustomSignalStrength.qml │ │ │ ├── CustomToolBarButton.qml │ │ │ ├── CustomVehicleButton.qml │ │ │ └── qmldir │ ├── CustomFlyViewOverlay.qml │ └── Images │ │ ├── CustomAppIcon.png │ │ ├── CustomVehicleIcon.svg │ │ ├── altitude.svg │ │ ├── attitude_crosshair.svg │ │ ├── attitude_dial.svg │ │ ├── attitude_pointer.svg │ │ ├── chronometer.svg │ │ ├── compass_needle.svg │ │ ├── compass_pointer.svg │ │ ├── distance.svg │ │ ├── horizontal_speed.svg │ │ ├── microSD.svg │ │ ├── odometer.svg │ │ ├── vertical_speed.svg │ │ └── void.png ├── src │ ├── AutoPilotPlugin │ │ ├── CustomAutoPilotPlugin.cc │ │ └── CustomAutoPilotPlugin.h │ ├── CustomPlugin.cc │ ├── CustomPlugin.h │ └── FirmwarePlugin │ │ ├── CustomFirmwarePlugin.cc │ │ ├── CustomFirmwarePlugin.h │ │ ├── CustomFirmwarePluginFactory.cc │ │ └── CustomFirmwarePluginFactory.h ├── updateinstrumentqrc.py └── updateqrc.py ├── debian ├── compat ├── control ├── copyright ├── menu ├── qgroundcontrol.install ├── rules ├── source │ ├── format │ └── options └── watch ├── deploy ├── .gitignore ├── GooglePlayUpload.py ├── MacCertificates.p12.enc ├── MacImportCert.sh ├── MakeQtTravisTarball.sh ├── create_linux_appimage.sh ├── docker │ ├── Dockerfile-build-linux │ └── install-qt-linux.sh ├── driver-msi-README.md ├── genPDBsrcsrv.py ├── linux-fixup-rpaths.bash ├── lowercaseify_symbolstore.ps1 ├── org.mavlink.qgroundcontrol.desktop ├── org.mavlink.qgroundcontrol.metainfo.xml ├── qgroundcontrol-start.sh ├── qgroundcontrol.desktop ├── qt.conf ├── ubuntu_ppa └── windows │ ├── QGroundControl.rc │ ├── WindowsQGC.ico │ ├── driver.msi │ ├── installheader.bmp │ ├── nullsoft_installer.nsi │ └── resource.h ├── doc ├── .gitignore ├── Doxyfile ├── README ├── dot ├── graphs.graffle ├── header.html ├── links.md ├── links.svg ├── qgcmain.svg ├── qgroundcontrol.md ├── qgroundcontrol.png ├── vehicleMgmt.md └── vehicleMgmt.svg ├── ios ├── AppStoreIcon_1024x1024.png ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── AppIcon29x29.png │ │ ├── AppIcon29x29@2x.png │ │ ├── AppIcon40x40@2x.png │ │ ├── AppIcon40x40~ipad.png │ │ ├── AppIcon60x60@2x.png │ │ ├── AppIcon76x76@2x~ipad.png │ │ ├── AppIcon76x76~ipad.png │ │ ├── Contents.json │ │ ├── Icon-1024.png │ │ ├── Icon-120.png │ │ ├── Icon-167.png │ │ ├── Icon-180.png │ │ ├── Icon-20.png │ │ ├── Icon-40.png │ │ ├── Icon-41.png │ │ ├── Icon-60.png │ │ └── Icon-87.png │ └── Contents.json ├── QGCLaunchScreen.xib ├── iOS-Info.plist ├── iOSForAppStore-Info-Source.plist ├── qgroundcontrol.xcconfig └── qgroundcontrol_appstore.xcconfig ├── libs ├── CMakeLists.txt ├── Frameworks │ └── SDL2.framework │ │ ├── Headers │ │ ├── Resources │ │ ├── SDL2 │ │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ ├── SDL.h │ │ │ ├── SDL_assert.h │ │ │ ├── SDL_atomic.h │ │ │ ├── SDL_audio.h │ │ │ ├── SDL_bits.h │ │ │ ├── SDL_blendmode.h │ │ │ ├── SDL_clipboard.h │ │ │ ├── SDL_config.h │ │ │ ├── SDL_config_macosx.h │ │ │ ├── SDL_copying.h │ │ │ ├── SDL_cpuinfo.h │ │ │ ├── SDL_endian.h │ │ │ ├── SDL_error.h │ │ │ ├── SDL_events.h │ │ │ ├── SDL_filesystem.h │ │ │ ├── SDL_gamecontroller.h │ │ │ ├── SDL_gesture.h │ │ │ ├── SDL_haptic.h │ │ │ ├── SDL_hints.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keycode.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_log.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_messagebox.h │ │ │ ├── SDL_mouse.h │ │ │ ├── SDL_mutex.h │ │ │ ├── SDL_name.h │ │ │ ├── SDL_opengl.h │ │ │ ├── SDL_opengl_glext.h │ │ │ ├── SDL_opengles.h │ │ │ ├── SDL_opengles2.h │ │ │ ├── SDL_opengles2_gl2.h │ │ │ ├── SDL_opengles2_gl2ext.h │ │ │ ├── SDL_opengles2_gl2platform.h │ │ │ ├── SDL_opengles2_khrplatform.h │ │ │ ├── SDL_pixels.h │ │ │ ├── SDL_platform.h │ │ │ ├── SDL_power.h │ │ │ ├── SDL_quit.h │ │ │ ├── SDL_rect.h │ │ │ ├── SDL_render.h │ │ │ ├── SDL_revision.h │ │ │ ├── SDL_rwops.h │ │ │ ├── SDL_scancode.h │ │ │ ├── SDL_sensor.h │ │ │ ├── SDL_shape.h │ │ │ ├── SDL_stdinc.h │ │ │ ├── SDL_surface.h │ │ │ ├── SDL_system.h │ │ │ ├── SDL_syswm.h │ │ │ ├── SDL_thread.h │ │ │ ├── SDL_timer.h │ │ │ ├── SDL_touch.h │ │ │ ├── SDL_types.h │ │ │ ├── SDL_version.h │ │ │ ├── SDL_video.h │ │ │ ├── SDL_vulkan.h │ │ │ ├── begin_code.h │ │ │ └── close_code.h │ │ ├── Resources │ │ │ └── Info.plist │ │ └── SDL2 │ │ └── Current ├── Microsoft │ └── windows │ │ ├── msvcp140.dll │ │ └── vcruntime140.dll ├── OpenSSL │ └── windows │ │ ├── libcrypto-1_1-x64.dll │ │ └── libssl-1_1-x64.dll ├── README.md ├── libevents │ ├── CMakeLists.txt │ ├── definitions.cpp │ └── libevents_definitions.h ├── msinttypes │ ├── inttypes.h │ └── stdint.h ├── qmdnsengine_export.h ├── qmlglsink │ ├── CMakeLists.txt │ └── windows │ │ └── GL │ │ └── glext.h ├── qtandroidserialport │ ├── CMakeLists.txt │ └── src │ │ ├── qserialport.cpp │ │ ├── qserialport.h │ │ ├── qserialport_android.cpp │ │ ├── qserialport_android_p.h │ │ ├── qserialport_p.h │ │ ├── qserialportinfo.cpp │ │ ├── qserialportinfo.h │ │ ├── qserialportinfo_android.cpp │ │ ├── qserialportinfo_p.h │ │ └── qtandroidserialport.pri ├── sdl2 │ ├── CMakeLists.txt │ └── msvc │ │ ├── BUGS.txt │ │ ├── COPYING.txt │ │ ├── README-SDL.txt │ │ ├── README.txt │ │ ├── WhatsNew.txt │ │ ├── docs │ │ ├── README-android.md │ │ ├── README-cmake.md │ │ ├── README-directfb.md │ │ ├── README-dynapi.md │ │ ├── README-emscripten.md │ │ ├── README-gesture.md │ │ ├── README-hg.md │ │ ├── README-ios.md │ │ ├── README-linux.md │ │ ├── README-macosx.md │ │ ├── README-nacl.md │ │ ├── README-pandora.md │ │ ├── README-platforms.md │ │ ├── README-porting.md │ │ ├── README-psp.md │ │ ├── README-raspberrypi.md │ │ ├── README-touch.md │ │ ├── README-wince.md │ │ ├── README-windows.md │ │ ├── README-winrt.md │ │ ├── README.md │ │ └── doxyfile │ │ ├── include │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_config.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_egl.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_filesystem.h │ │ ├── SDL_gamecontroller.h │ │ ├── SDL_gesture.h │ │ ├── SDL_haptic.h │ │ ├── SDL_hints.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keycode.h │ │ ├── SDL_loadso.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_opengl_glext.h │ │ ├── SDL_opengles.h │ │ ├── SDL_opengles2.h │ │ ├── SDL_opengles2_gl2.h │ │ ├── SDL_opengles2_gl2ext.h │ │ ├── SDL_opengles2_gl2platform.h │ │ ├── SDL_opengles2_khrplatform.h │ │ ├── SDL_pixels.h │ │ ├── SDL_platform.h │ │ ├── SDL_power.h │ │ ├── SDL_quit.h │ │ ├── SDL_rect.h │ │ ├── SDL_render.h │ │ ├── SDL_revision.h │ │ ├── SDL_rwops.h │ │ ├── SDL_scancode.h │ │ ├── SDL_shape.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_surface.h │ │ ├── SDL_system.h │ │ ├── SDL_syswm.h │ │ ├── SDL_test.h │ │ ├── SDL_test_assert.h │ │ ├── SDL_test_common.h │ │ ├── SDL_test_compare.h │ │ ├── SDL_test_crc32.h │ │ ├── SDL_test_font.h │ │ ├── SDL_test_fuzzer.h │ │ ├── SDL_test_harness.h │ │ ├── SDL_test_images.h │ │ ├── SDL_test_log.h │ │ ├── SDL_test_md5.h │ │ ├── SDL_test_random.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_touch.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── begin_code.h │ │ └── close_code.h │ │ └── lib │ │ ├── x64 │ │ ├── SDL2.dll │ │ ├── SDL2.lib │ │ ├── SDL2main.lib │ │ └── SDL2test.lib │ │ └── x86 │ │ ├── SDL2.dll │ │ ├── SDL2.lib │ │ ├── SDL2main.lib │ │ └── SDL2test.lib ├── shapelib │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── README.CMake │ ├── README.tree │ ├── aclocal.m4 │ ├── ar-lib │ ├── autogen.sh │ ├── compile │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── contrib │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── ShapeFileII.pas │ │ ├── Shape_PointInPoly.cpp │ │ ├── dbfcat.c │ │ ├── dbfinfo.c │ │ ├── doc │ │ │ ├── Shape_PointInPoly_README.txt │ │ │ ├── shpproj.txt │ │ │ └── shpsort.txt │ │ ├── makefile.vc │ │ ├── shpcat.c │ │ ├── shpcentrd.c │ │ ├── shpdata.c │ │ ├── shpdxf.c │ │ ├── shpfix.c │ │ ├── shpgeo.c │ │ ├── shpgeo.h │ │ ├── shpinfo.c │ │ ├── shpproj.c │ │ ├── shpsort.c │ │ ├── shpwkb.c │ │ └── tests │ │ │ └── shpproj.sh │ ├── dbfadd.c │ ├── dbfcreate.c │ ├── dbfdump.c │ ├── dbfopen.c │ ├── depcomp │ ├── install-sh │ ├── ltmain.sh │ ├── m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ ├── makefile.vc │ ├── missing │ ├── safileio.c │ ├── sbnsearch.c │ ├── shapefil.h │ ├── shapelib.pc.in │ ├── shpadd.c │ ├── shpcreate.c │ ├── shpdump.c │ ├── shpopen.c │ ├── shprewind.c │ ├── shptest.c │ ├── shptree.c │ ├── shptreedump.c │ ├── shputils.c │ ├── test-driver │ ├── tests │ │ ├── stream1.out │ │ ├── test1.sh │ │ ├── test2.sh │ │ └── test3.sh │ └── web │ │ ├── codepage.html │ │ ├── dbf_api.html │ │ ├── index.html │ │ ├── license.html │ │ ├── manifest.html │ │ ├── maptools.css │ │ ├── release.html │ │ ├── shapelib-tools.html │ │ └── shp_api.html ├── thirdParty │ └── fetchUpstream └── zlib │ ├── CMakeLists.txt │ └── windows │ ├── include │ ├── zconf.h │ └── zlib.h │ └── lib │ ├── README │ └── zlibstat.lib ├── qgcimages.qrc ├── qgcresources.qrc ├── qgroundcontrol.pro ├── qgroundcontrol.qrc ├── qmlglsink.pri ├── qt5.natvis ├── resources ├── Antenna_RC.svg ├── Antenna_T.svg ├── ArrowDown.svg ├── ArrowRight.svg ├── BingNoTileBytes.dat ├── CogWheels.png ├── DropArrow.svg ├── InstrumentValueIcons │ ├── InstrumentValueIcons.qrc │ ├── UpdateResourceFile.py │ ├── add-outline.svg │ ├── add-solid.svg │ ├── adjust.svg │ ├── airplane.svg │ ├── album.svg │ ├── align-center.svg │ ├── align-justified.svg │ ├── align-left.svg │ ├── align-right.svg │ ├── anchor.svg │ ├── announcement.svg │ ├── apparel.svg │ ├── arrow-base-down.svg │ ├── arrow-base-up.svg │ ├── arrow-outline-down.svg │ ├── arrow-outline-left.svg │ ├── arrow-outline-right.svg │ ├── arrow-outline-up.svg │ ├── arrow-simple-down.svg │ ├── arrow-simple-left.svg │ ├── arrow-simple-right.svg │ ├── arrow-simple-up.svg │ ├── arrow-thick-down.svg │ ├── arrow-thick-left.svg │ ├── arrow-thick-right.svg │ ├── arrow-thick-up.svg │ ├── arrow-thin-down.svg │ ├── arrow-thin-left.svg │ ├── arrow-thin-right.svg │ ├── arrow-thin-up.svg │ ├── artist.svg │ ├── at-symbol.svg │ ├── attachment.svg │ ├── backspace.svg │ ├── backward-step.svg │ ├── backward.svg │ ├── badge.svg │ ├── battery-full.svg │ ├── battery-half.svg │ ├── battery-low.svg │ ├── beverage.svg │ ├── block.svg │ ├── bluetooth.svg │ ├── bolt.svg │ ├── book-reference.svg │ ├── bookmark copy 2.svg │ ├── bookmark copy 3.svg │ ├── bookmark-outline-add.svg │ ├── bookmark-outline.svg │ ├── bookmark.svg │ ├── border-all.svg │ ├── border-bottom.svg │ ├── border-horizontal.svg │ ├── border-inner.svg │ ├── border-left.svg │ ├── border-none.svg │ ├── border-outer.svg │ ├── border-right.svg │ ├── border-top.svg │ ├── border-vertical.svg │ ├── box.svg │ ├── brightness-down.svg │ ├── brightness-up.svg │ ├── browser-window-new.svg │ ├── browser-window-open.svg │ ├── browser-window.svg │ ├── bug.svg │ ├── buoy.svg │ ├── calculator.svg │ ├── calendar.svg │ ├── camera.svg │ ├── chart-bar.svg │ ├── chart-pie.svg │ ├── chart.svg │ ├── chat-bubble-dots.svg │ ├── checkmark-outline.svg │ ├── checkmark.svg │ ├── cheveron-down.svg │ ├── cheveron-left.svg │ ├── cheveron-outline-down.svg │ ├── cheveron-outline-left.svg │ ├── cheveron-outline-right.svg │ ├── cheveron-outline-up.svg │ ├── cheveron-right.svg │ ├── cheveron-up.svg │ ├── clipboard.svg │ ├── close-outline.svg │ ├── close-solid.svg │ ├── close.svg │ ├── cloud-upload.svg │ ├── cloud.svg │ ├── code.svg │ ├── coffee.svg │ ├── cog.svg │ ├── color-palette.svg │ ├── compose.svg │ ├── computer-desktop.svg │ ├── computer-laptop.svg │ ├── conversation.svg │ ├── copy.svg │ ├── credit-card.svg │ ├── currency-dollar.svg │ ├── dashboard.svg │ ├── date-add.svg │ ├── dial-pad.svg │ ├── directions.svg │ ├── document-add.svg │ ├── document.svg │ ├── dots-horizontal-double.svg │ ├── dots-horizontal-triple.svg │ ├── duplicate.svg │ ├── edit-copy.svg │ ├── edit-crop.svg │ ├── edit-cut.svg │ ├── edit-pencil.svg │ ├── education.svg │ ├── envelope.svg │ ├── exclamation-outline.svg │ ├── exclamation-solid.svg │ ├── explore.svg │ ├── factory.svg │ ├── fast-forward.svg │ ├── fast-rewind.svg │ ├── film.svg │ ├── filter.svg │ ├── flag.svg │ ├── flashlight.svg │ ├── folder-outline-add.svg │ ├── folder-outline.svg │ ├── folder.svg │ ├── format-bold.svg │ ├── format-font-size.svg │ ├── format-italic.svg │ ├── format-text-size.svg │ ├── format-underline.svg │ ├── forward-step.svg │ ├── forward.svg │ ├── gift.svg │ ├── globe.svg │ ├── hand-stop.svg │ ├── hard-drive.svg │ ├── headphones.svg │ ├── heart.svg │ ├── home.svg │ ├── hot.svg │ ├── hour-glass.svg │ ├── inbox-check.svg │ ├── inbox-download.svg │ ├── inbox-full.svg │ ├── inbox.svg │ ├── indent-decrease.svg │ ├── indent-increase.svg │ ├── information-outline.svg │ ├── information-solid.svg │ ├── key.svg │ ├── keyboard.svg │ ├── layers.svg │ ├── library.svg │ ├── light-bulb.svg │ ├── link.svg │ ├── list-add.svg │ ├── list-bullet.svg │ ├── list.svg │ ├── load-balancer.svg │ ├── location-current.svg │ ├── location-food.svg │ ├── location-gas-station.svg │ ├── location-hotel.svg │ ├── location-marina.svg │ ├── location-park.svg │ ├── location-restroom.svg │ ├── location-shopping.svg │ ├── location.svg │ ├── lock-closed.svg │ ├── lock-open.svg │ ├── map.svg │ ├── menu.svg │ ├── mic.svg │ ├── minus-outline.svg │ ├── minus-solid.svg │ ├── mobile-devices.svg │ ├── mood-happy-outline.svg │ ├── mood-happy-solid.svg │ ├── mood-neutral-outline.svg │ ├── mood-neutral-solid.svg │ ├── mood-sad-outline.svg │ ├── mood-sad-solid.svg │ ├── mouse.svg │ ├── music-album.svg │ ├── music-artist.svg │ ├── music-notes.svg │ ├── music-playlist.svg │ ├── navigation-more.svg │ ├── network.svg │ ├── news-paper.svg │ ├── notification.svg │ ├── notifications-outline.svg │ ├── notifications.svg │ ├── paste.svg │ ├── pause-outline.svg │ ├── pause-solid.svg │ ├── pause.svg │ ├── pen-tool.svg │ ├── phone.svg │ ├── photo.svg │ ├── php-elephant.svg │ ├── pin.svg │ ├── play-outline.svg │ ├── play.svg │ ├── playlist.svg │ ├── plugin.svg │ ├── portfolio.svg │ ├── printer.svg │ ├── pylon.svg │ ├── question.svg │ ├── queue.svg │ ├── radar copy 2.svg │ ├── radar.svg │ ├── radio.svg │ ├── refresh.svg │ ├── reload.svg │ ├── reply-all.svg │ ├── reply.svg │ ├── repost.svg │ ├── save-disk.svg │ ├── screen-full.svg │ ├── search.svg │ ├── send.svg │ ├── servers.svg │ ├── share-01.svg │ ├── share-alt.svg │ ├── share.svg │ ├── shield.svg │ ├── shopping-cart.svg │ ├── show-sidebar.svg │ ├── shuffle.svg │ ├── stand-by.svg │ ├── star-full.svg │ ├── station.svg │ ├── step-backward.svg │ ├── step-forward.svg │ ├── stethoscope.svg │ ├── store-front.svg │ ├── stroke-width.svg │ ├── subdirectory-left.svg │ ├── subdirectory-right.svg │ ├── swap.svg │ ├── tablet.svg │ ├── tag.svg │ ├── target.svg │ ├── text-box.svg │ ├── text-decoration.svg │ ├── thermometer.svg │ ├── thumbs-down.svg │ ├── thumbs-up.svg │ ├── ticket.svg │ ├── time.svg │ ├── timer.svg │ ├── tools copy.svg │ ├── translate.svg │ ├── trash.svg │ ├── travel-bus.svg │ ├── travel-car.svg │ ├── travel-case.svg │ ├── travel-taxi-cab.svg │ ├── travel-train.svg │ ├── travel-walk.svg │ ├── travel.svg │ ├── trophy.svg │ ├── tuning.svg │ ├── usb.svg │ ├── user-add.svg │ ├── user-group.svg │ ├── user-solid-circle.svg │ ├── user-solid-square.svg │ ├── user.svg │ ├── vector.svg │ ├── video-camera.svg │ ├── view-carousel.svg │ ├── view-column.svg │ ├── view-hide.svg │ ├── view-list.svg │ ├── view-show.svg │ ├── view-tile.svg │ ├── volume-down.svg │ ├── volume-mute.svg │ ├── volume-off.svg │ ├── volume-up.svg │ ├── wallet.svg │ ├── watch.svg │ ├── window-new.svg │ ├── window-open.svg │ ├── window.svg │ ├── wrench.svg │ ├── yin-yang.svg │ ├── zoom-in.svg │ └── zoom-out.svg ├── JoystickBezel.png ├── JoystickBezelLight.png ├── LockClosed.svg ├── LockOpen.svg ├── PatternCamera.png ├── PatternGrid.png ├── PatternPresets.png ├── PatternTerrain.png ├── Pause.svg ├── Play.svg ├── PowerButton.svg ├── QGCLogoArrow.svg ├── QGCLogoBlack.svg ├── QGCLogoFull.svg ├── QGCLogoWhite.svg ├── QGroundControlConnect.svg ├── SDL_GameControllerDB │ ├── LICENSE │ ├── README.md │ ├── gamecontrollerdb.txt │ └── version.txt ├── SplashScreen.png ├── Stop.svg ├── TrashDelete.svg ├── XDelete.svg ├── XDeleteBlack.svg ├── action.svg ├── audio │ └── alert.wav ├── buttonLeft.svg ├── buttonRight.svg ├── calibration │ ├── 3dr_gps │ │ ├── gps_00.png │ │ ├── gps_01.png │ │ ├── gps_02.png │ │ ├── gps_03.png │ │ ├── gps_04.png │ │ ├── gps_06.png │ │ ├── gps_07.png │ │ ├── gps_12.png │ │ ├── gps_13.png │ │ ├── gps_14.png │ │ ├── gps_15.png │ │ ├── gps_16.png │ │ ├── gps_17.png │ │ ├── gps_18.png │ │ ├── gps_19.png │ │ └── gps_24.png │ ├── accel_back.png │ ├── accel_down.png │ ├── accel_front.png │ ├── accel_left.png │ ├── accel_right.png │ ├── accel_up.png │ ├── mag_calibration_figure8.png │ ├── mode1 │ │ ├── radioCenter.png │ │ ├── radioHome.png │ │ ├── radioPitchDown.png │ │ ├── radioPitchUp.png │ │ ├── radioRollLeft.png │ │ ├── radioRollRight.png │ │ ├── radioSwitchMinMax.png │ │ ├── radioThrottleDown.png │ │ ├── radioThrottleUp.png │ │ ├── radioYawLeft.png │ │ └── radioYawRight.png │ └── mode2 │ │ ├── radioCenter.png │ │ ├── radioHome.png │ │ ├── radioPitchDown.png │ │ ├── radioPitchUp.png │ │ ├── radioRollLeft.png │ │ ├── radioRollRight.png │ │ ├── radioSwitchMinMax.png │ │ ├── radioThrottleDown.png │ │ ├── radioThrottleUp.png │ │ ├── radioYawLeft.png │ │ └── radioYawRight.png ├── camera.svg ├── cancel.svg ├── check.svg ├── chevron-down.svg ├── chevron-up.svg ├── clockwise-arrow.svg ├── counter-clockwise-arrow.svg ├── firmware │ ├── 3drradio.png │ ├── apm.png │ └── px4.png ├── fonts │ ├── NanumGothic-Bold.ttf │ ├── NanumGothic-Regular.ttf │ ├── OpenSans-Regular.ttf │ └── OpenSans-Semibold.ttf ├── gear-black.svg ├── gear-white.svg ├── helicoptericon.svg ├── icons │ ├── android_512x512.png │ ├── android_dev_512x512.png │ ├── macx.icns │ ├── qgroundcontrol.ico │ └── qgroundcontrol.png ├── land.svg ├── layout-bottom.svg ├── layout-right.svg ├── notile.png ├── opengl │ └── buglist.json ├── pause-mission.svg ├── pencil.svg ├── rtl.svg ├── takeoff.svg ├── waves.svg ├── waypoint.svg ├── wind-guru.svg ├── wind-rose-arrow.svg ├── wind-rose.svg └── wind-roseBlack.svg ├── snap └── snapcraft.yaml ├── src ├── ADSB │ ├── ADSBVehicle.cc │ ├── ADSBVehicle.h │ ├── ADSBVehicleManager.cc │ ├── ADSBVehicleManager.h │ └── CMakeLists.txt ├── Airmap │ ├── AirMap.SettingsGroup.json │ ├── AirMapAdvisoryManager.cc │ ├── AirMapAdvisoryManager.h │ ├── AirMapFlightManager.cc │ ├── AirMapFlightManager.h │ ├── AirMapFlightPlanManager.cc │ ├── AirMapFlightPlanManager.h │ ├── AirMapManager.cc │ ├── AirMapManager.h │ ├── AirMapRestrictionManager.cc │ ├── AirMapRestrictionManager.h │ ├── AirMapRulesetsManager.cc │ ├── AirMapRulesetsManager.h │ ├── AirMapSettings.cc │ ├── AirMapSettings.h │ ├── AirMapSharedState.cc │ ├── AirMapSharedState.h │ ├── AirMapTelemetry.cc │ ├── AirMapTelemetry.h │ ├── AirMapTrafficMonitor.cc │ ├── AirMapTrafficMonitor.h │ ├── AirMapVehicleManager.cc │ ├── AirMapVehicleManager.h │ ├── AirMapWeatherInfoManager.cc │ ├── AirMapWeatherInfoManager.h │ ├── AirmapSettings.qml │ ├── AirspaceControl.qml │ ├── AirspaceRegulation.qml │ ├── AirspaceWeather.qml │ ├── CMakeLists.txt │ ├── ComplianceRules.qml │ ├── FlightBrief.qml │ ├── FlightDetails.qml │ ├── FlightFeature.qml │ ├── LifetimeChecker.h │ ├── QJsonWebToken │ │ ├── README.md │ │ └── src │ │ │ ├── qjsonwebtoken.cpp │ │ │ ├── qjsonwebtoken.h │ │ │ └── qjsonwebtoken.pri │ ├── README.md │ ├── RuleSelector.qml │ ├── airmap.qrc │ ├── dummy │ │ ├── AirspaceControl.qml │ │ ├── AirspaceManager.cc │ │ ├── AirspaceManager.h │ │ ├── AirspaceRegulation.qml │ │ ├── AirspaceWeather.qml │ │ ├── ComplianceRules.qml │ │ ├── FlightBrief.qml │ │ ├── FlightDetails.qml │ │ ├── FlightFeature.qml │ │ ├── QGroundControl.Airmap.qmldir │ │ ├── RuleSelector.qml │ │ └── airmap_dummy.qrc │ ├── images │ │ ├── advisory-icon.svg │ │ ├── colapse.svg │ │ ├── expand.svg │ │ ├── pencil.svg │ │ ├── right-arrow.svg │ │ ├── unavailable.svg │ │ └── weather-icons │ │ │ ├── clear.svg │ │ │ ├── cloudy.svg │ │ │ ├── cloudy_wind.svg │ │ │ ├── drizzle.svg │ │ │ ├── drizzle_day.svg │ │ │ ├── drizzle_night.svg │ │ │ ├── foggy.svg │ │ │ ├── frigid.svg │ │ │ ├── hail.svg │ │ │ ├── heavy_rain.svg │ │ │ ├── hurricane.svg │ │ │ ├── isolated_thunderstorms.svg │ │ │ ├── mostly_clear.svg │ │ │ ├── mostly_cloudy_day.svg │ │ │ ├── mostly_cloudy_night.svg │ │ │ ├── mostly_sunny.svg │ │ │ ├── partly_cloudy_day.svg │ │ │ ├── partly_cloudy_night.svg │ │ │ ├── rain.svg │ │ │ ├── rain_snow.svg │ │ │ ├── scattered_snow_showers_day.svg │ │ │ ├── scattered_snow_showers_night.svg │ │ │ ├── scattered_thunderstorms_day.svg │ │ │ ├── scattered_thunderstorms_night.svg │ │ │ ├── snow.svg │ │ │ ├── snow_storm.svg │ │ │ ├── sunny.svg │ │ │ ├── thunderstorm.svg │ │ │ ├── tornado.svg │ │ │ ├── unknown.svg │ │ │ └── windy.svg │ └── services │ │ ├── advisory.cpp │ │ ├── advisory.h │ │ ├── aircrafts.cpp │ │ ├── aircrafts.h │ │ ├── airspaces.cpp │ │ ├── airspaces.h │ │ ├── authenticator.cpp │ │ ├── authenticator.h │ │ ├── client.cpp │ │ ├── client.h │ │ ├── dispatcher.cpp │ │ ├── dispatcher.h │ │ ├── flight_plans.cpp │ │ ├── flight_plans.h │ │ ├── flights.cpp │ │ ├── flights.h │ │ ├── logger.cpp │ │ ├── logger.h │ │ ├── pilots.cpp │ │ ├── pilots.h │ │ ├── rulesets.cpp │ │ ├── rulesets.h │ │ ├── status.cpp │ │ ├── status.h │ │ ├── telemetry.cpp │ │ ├── telemetry.h │ │ ├── traffic.cpp │ │ ├── traffic.h │ │ ├── types.cpp │ │ └── types.h ├── AirspaceManagement │ ├── AirspaceAdvisoryProvider.cc │ ├── AirspaceAdvisoryProvider.h │ ├── AirspaceFlightPlanProvider.cc │ ├── AirspaceFlightPlanProvider.h │ ├── AirspaceManager.cc │ ├── AirspaceManager.h │ ├── AirspaceRestriction.cc │ ├── AirspaceRestriction.h │ ├── AirspaceRestrictionProvider.cc │ ├── AirspaceRestrictionProvider.h │ ├── AirspaceRulesetsProvider.cc │ ├── AirspaceRulesetsProvider.h │ ├── AirspaceVehicleManager.cc │ ├── AirspaceVehicleManager.h │ ├── AirspaceWeatherInfoProvider.cc │ ├── AirspaceWeatherInfoProvider.h │ └── CMakeLists.txt ├── AnalyzeView │ ├── AnalyzePage.qml │ ├── AnalyzeView.qml │ ├── CMakeLists.txt │ ├── ExifParser.cc │ ├── ExifParser.h │ ├── FloatingWindow.svg │ ├── GeoTagController.cc │ ├── GeoTagController.h │ ├── GeoTagIcon.svg │ ├── GeoTagPage.qml │ ├── LogDownloadController.cc │ ├── LogDownloadController.h │ ├── LogDownloadIcon.svg │ ├── LogDownloadPage.qml │ ├── LogDownloadTest.cc │ ├── LogDownloadTest.h │ ├── MAVLinkInspector.svg │ ├── MAVLinkInspectorController.cc │ ├── MAVLinkInspectorController.h │ ├── MAVLinkInspectorPage.qml │ ├── MavlinkConsoleController.cc │ ├── MavlinkConsoleController.h │ ├── MavlinkConsoleIcon.svg │ ├── MavlinkConsolePage.qml │ ├── PX4LogParser.cc │ ├── PX4LogParser.h │ ├── ULogParser.cc │ ├── ULogParser.h │ ├── VibrationPage.qml │ └── VibrationPageIcon.png ├── Audio │ ├── AudioOutput.cc │ ├── AudioOutput.h │ ├── AudioOutputTest.cc │ ├── AudioOutputTest.h │ └── CMakeLists.txt ├── AutoPilotPlugins │ ├── APM │ │ ├── APMAirframeComponent.cc │ │ ├── APMAirframeComponent.h │ │ ├── APMAirframeComponent.qml │ │ ├── APMAirframeComponentController.cc │ │ ├── APMAirframeComponentController.h │ │ ├── APMAirframeComponentSummary.qml │ │ ├── APMAutoPilotPlugin.cc │ │ ├── APMAutoPilotPlugin.h │ │ ├── APMCameraComponent.cc │ │ ├── APMCameraComponent.h │ │ ├── APMCameraComponent.qml │ │ ├── APMCameraComponentSummary.qml │ │ ├── APMCameraSubComponent.qml │ │ ├── APMCompassCal.cc │ │ ├── APMCompassCal.h │ │ ├── APMFlightModesComponent.cc │ │ ├── APMFlightModesComponent.h │ │ ├── APMFlightModesComponent.qml │ │ ├── APMFlightModesComponentController.cc │ │ ├── APMFlightModesComponentController.h │ │ ├── APMFlightModesComponentSummary.qml │ │ ├── APMFollowComponent.FactMetaData.json │ │ ├── APMFollowComponent.cc │ │ ├── APMFollowComponent.h │ │ ├── APMFollowComponent.qml │ │ ├── APMFollowComponentController.cc │ │ ├── APMFollowComponentController.h │ │ ├── APMFollowComponentSummary.qml │ │ ├── APMHeliComponent.cc │ │ ├── APMHeliComponent.h │ │ ├── APMHeliComponent.qml │ │ ├── APMLightsComponent.cc │ │ ├── APMLightsComponent.h │ │ ├── APMLightsComponent.qml │ │ ├── APMLightsComponentSummary.qml │ │ ├── APMMotorComponent.cc │ │ ├── APMMotorComponent.h │ │ ├── APMMotorComponent.qml │ │ ├── APMNotSupported.qml │ │ ├── APMPowerComponent.cc │ │ ├── APMPowerComponent.h │ │ ├── APMPowerComponent.qml │ │ ├── APMPowerComponentSummary.qml │ │ ├── APMRadioComponent.cc │ │ ├── APMRadioComponent.h │ │ ├── APMRadioComponentSummary.qml │ │ ├── APMSafetyComponent.cc │ │ ├── APMSafetyComponent.h │ │ ├── APMSafetyComponent.qml │ │ ├── APMSafetyComponentCopter.qml │ │ ├── APMSafetyComponentPlane.qml │ │ ├── APMSafetyComponentRover.qml │ │ ├── APMSafetyComponentSub.qml │ │ ├── APMSafetyComponentSummary.qml │ │ ├── APMSafetyComponentSummaryCopter.qml │ │ ├── APMSafetyComponentSummaryPlane.qml │ │ ├── APMSafetyComponentSummaryRover.qml │ │ ├── APMSafetyComponentSummarySub.qml │ │ ├── APMSensorsComponent.cc │ │ ├── APMSensorsComponent.h │ │ ├── APMSensorsComponent.qml │ │ ├── APMSensorsComponentController.cc │ │ ├── APMSensorsComponentController.h │ │ ├── APMSensorsComponentSummary.qml │ │ ├── APMSubFrameComponent.cc │ │ ├── APMSubFrameComponent.h │ │ ├── APMSubFrameComponent.qml │ │ ├── APMSubFrameComponentSummary.qml │ │ ├── APMSubMotorComponent.qml │ │ ├── APMSubMotorComponentController.cc │ │ ├── APMSubMotorComponentController.h │ │ ├── APMTuningComponent.cc │ │ ├── APMTuningComponent.h │ │ ├── APMTuningComponentCopter.qml │ │ ├── APMTuningComponentSub.qml │ │ ├── CMakeLists.txt │ │ └── Images │ │ │ ├── LightsComponentIcon.png │ │ │ ├── SubFrameComponentIcon.png │ │ │ ├── bluerov-frame.png │ │ │ ├── simple3-frame.png │ │ │ ├── simple4-frame.png │ │ │ ├── simple5-frame.png │ │ │ ├── vectored-frame.png │ │ │ └── vectored6dof-frame.png │ ├── AutoPilotPlugin.cc │ ├── AutoPilotPlugin.h │ ├── CMakeLists.txt │ ├── Common │ │ ├── CMakeLists.txt │ │ ├── ESP8266Component.cc │ │ ├── ESP8266Component.h │ │ ├── ESP8266Component.qml │ │ ├── ESP8266ComponentController.cc │ │ ├── ESP8266ComponentController.h │ │ ├── ESP8266ComponentSummary.qml │ │ ├── Images │ │ │ ├── APMode.svg │ │ │ ├── AirframeComponentIcon.png │ │ │ ├── AirframeSimulation.svg │ │ │ ├── AirframeUnknown.svg │ │ │ ├── Airship.svg │ │ │ ├── ArrowCCW.svg │ │ │ ├── ArrowCW.svg │ │ │ ├── ArrowDirection.svg │ │ │ ├── Autogyro.svg │ │ │ ├── Boat.svg │ │ │ ├── CameraComponentIcon.png │ │ │ ├── FlightModesComponentIcon.png │ │ │ ├── FlyingWing.svg │ │ │ ├── Helicopter.svg │ │ │ ├── HelicopterCoaxial.svg │ │ │ ├── HexaRotorPlus.svg │ │ │ ├── HexaRotorX.svg │ │ │ ├── MotorComponentIcon.svg │ │ │ ├── OctoRotorPlus.svg │ │ │ ├── OctoRotorPlusCoaxial.svg │ │ │ ├── OctoRotorX.svg │ │ │ ├── OctoRotorXCoaxial.svg │ │ │ ├── Plane.svg │ │ │ ├── PlaneATail.svg │ │ │ ├── PlaneVTail.svg │ │ │ ├── PowerComponentIcon.png │ │ │ ├── QuadRotorATail.svg │ │ │ ├── QuadRotorH.svg │ │ │ ├── QuadRotorPlus.svg │ │ │ ├── QuadRotorVTail.svg │ │ │ ├── QuadRotorWide.svg │ │ │ ├── QuadRotorX.svg │ │ │ ├── RadioComponentIcon.png │ │ │ ├── Rover.svg │ │ │ ├── SafetyComponentIcon.png │ │ │ ├── SensorsComponentIcon.png │ │ │ ├── StationMode.svg │ │ │ ├── TuningComponentIcon.png │ │ │ ├── VTOLDuoRotorTailSitter.svg │ │ │ ├── VTOLPlane.svg │ │ │ ├── VTOLPlaneOcto.svg │ │ │ ├── VTOLQuadRotorTailSitter.svg │ │ │ ├── VTOLTiltRotor.svg │ │ │ ├── Vectored6DofUUV.svg │ │ │ ├── Y6A.svg │ │ │ ├── Y6B.svg │ │ │ ├── YMinus.svg │ │ │ ├── YPlus.svg │ │ │ └── wifi.svg │ │ ├── MotorComponent.cc │ │ ├── MotorComponent.h │ │ ├── MotorComponent.qml │ │ ├── RadioComponent.qml │ │ ├── RadioComponentController.cc │ │ ├── RadioComponentController.h │ │ ├── SetupPage.qml │ │ ├── SyslinkComponent.cc │ │ ├── SyslinkComponent.h │ │ ├── SyslinkComponent.qml │ │ ├── SyslinkComponentController.cc │ │ └── SyslinkComponentController.h │ ├── Generic │ │ ├── GenericAutoPilotPlugin.cc │ │ └── GenericAutoPilotPlugin.h │ └── PX4 │ │ ├── ActuatorComponent.cc │ │ ├── ActuatorComponent.h │ │ ├── ActuatorComponent.qml │ │ ├── ActuatorFact.qml │ │ ├── ActuatorSlider.qml │ │ ├── AirframeComponent.cc │ │ ├── AirframeComponent.h │ │ ├── AirframeComponent.qml │ │ ├── AirframeComponentAirframes.cc │ │ ├── AirframeComponentAirframes.h │ │ ├── AirframeComponentController.cc │ │ ├── AirframeComponentController.h │ │ ├── AirframeComponentSummary.qml │ │ ├── AirframeFactMetaData.xml │ │ ├── BatteryParams.qml │ │ ├── CMakeLists.txt │ │ ├── CameraComponent.cc │ │ ├── CameraComponent.h │ │ ├── CameraComponent.qml │ │ ├── CameraComponentSummary.qml │ │ ├── FlightModesComponent.cc │ │ ├── FlightModesComponent.h │ │ ├── FlightModesComponentSummary.qml │ │ ├── Images │ │ ├── CameraTrigger.svg │ │ ├── DatalinkLoss.svg │ │ ├── DatalinkLossLight.svg │ │ ├── GeoFence.svg │ │ ├── GeoFenceLight.svg │ │ ├── HITL.svg │ │ ├── LandMode.svg │ │ ├── LandModeCopter.svg │ │ ├── LowBattery.svg │ │ ├── LowBatteryLight.svg │ │ ├── ObjectAvoidance.svg │ │ ├── PowerComponentBattery_01cell.svg │ │ ├── PowerComponentBattery_02cell.svg │ │ ├── PowerComponentBattery_03cell.svg │ │ ├── PowerComponentBattery_04cell.svg │ │ ├── PowerComponentBattery_05cell.svg │ │ ├── PowerComponentBattery_06cell.svg │ │ ├── RCLoss.svg │ │ ├── RCLossLight.svg │ │ ├── ReturnToHomeAltitude.svg │ │ ├── ReturnToHomeAltitudeCopter.svg │ │ ├── Rotate.png │ │ ├── RotateBack.png │ │ ├── RotateFront.png │ │ ├── VehicleDown.png │ │ ├── VehicleDownRotate.png │ │ ├── VehicleLeft.png │ │ ├── VehicleLeftRotate.png │ │ ├── VehicleNoseDown.png │ │ ├── VehicleNoseDownRotate.png │ │ ├── VehicleRight.png │ │ ├── VehicleRightRotate.png │ │ ├── VehicleTailDown.png │ │ ├── VehicleTailDownRotate.png │ │ ├── VehicleUpsideDown.png │ │ ├── VehicleUpsideDownRotate.png │ │ ├── no-logging-light.svg │ │ └── no-logging.svg │ │ ├── PX4AdvancedFlightModes.qml │ │ ├── PX4AdvancedFlightModesController.cc │ │ ├── PX4AdvancedFlightModesController.h │ │ ├── PX4AirframeLoader.cc │ │ ├── PX4AirframeLoader.h │ │ ├── PX4AutoPilotPlugin.cc │ │ ├── PX4AutoPilotPlugin.h │ │ ├── PX4FlightBehavior.cc │ │ ├── PX4FlightBehavior.h │ │ ├── PX4FlightBehaviorCopter.qml │ │ ├── PX4FlightModes.qml │ │ ├── PX4RadioComponent.cc │ │ ├── PX4RadioComponent.h │ │ ├── PX4RadioComponentSummary.qml │ │ ├── PX4SimpleFlightModes.qml │ │ ├── PX4SimpleFlightModesController.cc │ │ ├── PX4SimpleFlightModesController.h │ │ ├── PX4TuningComponent.cc │ │ ├── PX4TuningComponent.h │ │ ├── PX4TuningComponentCopter.qml │ │ ├── PX4TuningComponentCopterAll.qml │ │ ├── PX4TuningComponentCopterAttitude.qml │ │ ├── PX4TuningComponentCopterPosition.qml │ │ ├── PX4TuningComponentCopterRate.qml │ │ ├── PX4TuningComponentCopterVelocity.qml │ │ ├── PX4TuningComponentPlane.qml │ │ ├── PX4TuningComponentPlaneAll.qml │ │ ├── PX4TuningComponentPlaneTECS.qml │ │ ├── PX4TuningComponentVTOL.qml │ │ ├── PowerComponent.cc │ │ ├── PowerComponent.h │ │ ├── PowerComponent.qml │ │ ├── PowerComponentController.cc │ │ ├── PowerComponentController.h │ │ ├── PowerComponentSummary.qml │ │ ├── SafetyComponent.cc │ │ ├── SafetyComponent.h │ │ ├── SafetyComponent.qml │ │ ├── SafetyComponentSummary.qml │ │ ├── SensorsComponent.cc │ │ ├── SensorsComponent.h │ │ ├── SensorsComponent.qml │ │ ├── SensorsComponentController.cc │ │ ├── SensorsComponentController.h │ │ ├── SensorsComponentSummary.qml │ │ ├── SensorsComponentSummaryFixedWing.qml │ │ └── SensorsSetup.qml ├── CMakeLists.txt ├── Camera │ ├── CMakeLists.txt │ ├── QGCCameraControl.cc │ ├── QGCCameraControl.h │ ├── QGCCameraIO.cc │ ├── QGCCameraIO.h │ ├── QGCCameraManager.cc │ ├── QGCCameraManager.h │ ├── camera_definition_example.xml │ └── images │ │ ├── camera_photo.svg │ │ └── camera_video.svg ├── CmdLineOptParser.cc ├── CmdLineOptParser.h ├── Compression │ ├── CMakeLists.txt │ ├── QGCLZMA.cc │ ├── QGCLZMA.h │ ├── QGCZlib.cc │ └── QGCZlib.h ├── FactSystem │ ├── CMakeLists.txt │ ├── Fact.cc │ ├── Fact.h │ ├── FactControls │ │ ├── AltitudeFactTextField.qml │ │ ├── CMakeLists.txt │ │ ├── FactBitmask.qml │ │ ├── FactCheckBox.qml │ │ ├── FactComboBox.qml │ │ ├── FactLabel.qml │ │ ├── FactPanelController.cc │ │ ├── FactPanelController.h │ │ ├── FactTextField.qml │ │ ├── FactTextFieldGrid.qml │ │ ├── FactTextFieldRow.qml │ │ ├── FactTextFieldSlider.qml │ │ └── FactValueSlider.qml │ ├── FactGroup.cc │ ├── FactGroup.h │ ├── FactMetaData.cc │ ├── FactMetaData.h │ ├── FactSystem.cc │ ├── FactSystem.h │ ├── FactSystemTest.qml │ ├── FactSystemTestBase.cc │ ├── FactSystemTestBase.h │ ├── FactSystemTestGeneric.cc │ ├── FactSystemTestGeneric.h │ ├── FactSystemTestPX4.cc │ ├── FactSystemTestPX4.h │ ├── FactValueSliderListModel.cc │ ├── FactValueSliderListModel.h │ ├── ParameterManager.cc │ ├── ParameterManager.h │ ├── ParameterManagerTest.cc │ ├── ParameterManagerTest.h │ ├── SettingsFact.cc │ └── SettingsFact.h ├── FirmwarePlugin │ ├── APM │ │ ├── APM-MavCmdInfoCommon.json │ │ ├── APM-MavCmdInfoFixedWing.json │ │ ├── APM-MavCmdInfoMultiRotor.json │ │ ├── APM-MavCmdInfoRover.json │ │ ├── APM-MavCmdInfoSub.json │ │ ├── APM-MavCmdInfoVTOL.json │ │ ├── APMBrandImage.png │ │ ├── APMBrandImageSub.png │ │ ├── APMFirmwarePlugin.cc │ │ ├── APMFirmwarePlugin.h │ │ ├── APMFirmwarePluginFactory.cc │ │ ├── APMFirmwarePluginFactory.h │ │ ├── APMParameterFactMetaData.Copter.3.5.xml │ │ ├── APMParameterFactMetaData.Copter.3.6.xml │ │ ├── APMParameterFactMetaData.Copter.3.7.xml │ │ ├── APMParameterFactMetaData.Copter.4.0.xml │ │ ├── APMParameterFactMetaData.Copter.4.1.xml │ │ ├── APMParameterFactMetaData.Plane.3.10.xml │ │ ├── APMParameterFactMetaData.Plane.3.8.xml │ │ ├── APMParameterFactMetaData.Plane.3.9.xml │ │ ├── APMParameterFactMetaData.Plane.4.0.xml │ │ ├── APMParameterFactMetaData.Plane.4.1.xml │ │ ├── APMParameterFactMetaData.Rover.3.4.xml │ │ ├── APMParameterFactMetaData.Rover.3.5.xml │ │ ├── APMParameterFactMetaData.Rover.3.6.xml │ │ ├── APMParameterFactMetaData.Rover.4.0.xml │ │ ├── APMParameterFactMetaData.Rover.4.1.xml │ │ ├── APMParameterFactMetaData.Sub.3.4.xml │ │ ├── APMParameterFactMetaData.Sub.3.5.xml │ │ ├── APMParameterFactMetaData.Sub.3.6.xml │ │ ├── APMParameterFactMetaData.Sub.4.0.xml │ │ ├── APMParameterFactMetaData.Sub.4.1.xml │ │ ├── APMParameterMetaData.cc │ │ ├── APMParameterMetaData.h │ │ ├── APMResources.qrc │ │ ├── APMSensorParams.qml │ │ ├── ArduCopterFirmwarePlugin.cc │ │ ├── ArduCopterFirmwarePlugin.h │ │ ├── ArduPlaneFirmwarePlugin.cc │ │ ├── ArduPlaneFirmwarePlugin.h │ │ ├── ArduRoverFirmwarePlugin.cc │ │ ├── ArduRoverFirmwarePlugin.h │ │ ├── ArduSubFirmwarePlugin.cc │ │ ├── ArduSubFirmwarePlugin.h │ │ ├── BuildParamMetaData.sh │ │ ├── CMakeLists.txt │ │ ├── Copter3.6.OfflineEditing.params │ │ ├── Plane3.9.OfflineEditing.params │ │ ├── QGroundControl.ArduPilot.qmldir │ │ └── Rover3.5.OfflineEditing.params │ ├── CMakeLists.txt │ ├── CameraMetaData.cc │ ├── CameraMetaData.h │ ├── FirmwarePlugin.cc │ ├── FirmwarePlugin.h │ ├── FirmwarePluginManager.cc │ ├── FirmwarePluginManager.h │ └── PX4 │ │ ├── PX4-MavCmdInfoCommon.json │ │ ├── PX4-MavCmdInfoFixedWing.json │ │ ├── PX4-MavCmdInfoMultiRotor.json │ │ ├── PX4-MavCmdInfoRover.json │ │ ├── PX4-MavCmdInfoSub.json │ │ ├── PX4-MavCmdInfoVTOL.json │ │ ├── PX4BrandImage.png │ │ ├── PX4FirmwarePlugin.cc │ │ ├── PX4FirmwarePlugin.h │ │ ├── PX4FirmwarePluginFactory.cc │ │ ├── PX4FirmwarePluginFactory.h │ │ ├── PX4ParameterFactMetaData.xml │ │ ├── PX4ParameterMetaData.cc │ │ ├── PX4ParameterMetaData.h │ │ ├── PX4Resources.qrc │ │ ├── V1.4.OfflineEditing.params │ │ └── px4_custom_mode.h ├── FirstRunPromptDialogs │ ├── FirstRunPrompt.qml │ ├── OfflineVehicleFirstRunPrompt.qml │ └── UnitsFirstRunPrompt.qml ├── FlightDisplay │ ├── CMakeLists.txt │ ├── DefaultChecklist.qml │ ├── FixedWingChecklist.qml │ ├── FlightDisplayViewDummy.qml │ ├── FlightDisplayViewUVC.qml │ ├── FlightDisplayViewVideo.qml │ ├── FlightDisplayViewWidgets.qml │ ├── FlyView.qml │ ├── FlyViewAirspaceIndicator.qml │ ├── FlyViewCustomLayer.qml │ ├── FlyViewInstrumentPanel.qml │ ├── FlyViewMap.qml │ ├── FlyViewMissionCompleteDialog.qml │ ├── FlyViewPreFlightChecklistPopup.qml │ ├── FlyViewToolStrip.qml │ ├── FlyViewToolStripActionList.qml │ ├── FlyViewVideo.qml │ ├── FlyViewWidgetLayer.qml │ ├── GuidedActionActionList.qml │ ├── GuidedActionConfirm.qml │ ├── GuidedActionLand.qml │ ├── GuidedActionList.qml │ ├── GuidedActionPause.qml │ ├── GuidedActionRTL.qml │ ├── GuidedActionTakeoff.qml │ ├── GuidedActionsController.qml │ ├── GuidedAltitudeSlider.qml │ ├── GuidedToolStripAction.qml │ ├── MultiRotorChecklist.qml │ ├── MultiVehicleList.qml │ ├── ObstacleDistanceOverlay.qml │ ├── ObstacleDistanceOverlayMap.qml │ ├── ObstacleDistanceOverlayVideo.qml │ ├── PreFlightBatteryCheck.qml │ ├── PreFlightCheckList.qml │ ├── PreFlightCheckListShowAction.qml │ ├── PreFlightGPSCheck.qml │ ├── PreFlightRCCheck.qml │ ├── PreFlightSensorsHealthCheck.qml │ ├── PreFlightSoundCheck.qml │ ├── ProximityRadarValues.qml │ ├── ProximityRadarVideoView.qml │ ├── RoverChecklist.qml │ ├── SubChecklist.qml │ ├── TelemetryValuesBar.qml │ ├── TerrainProgress.qml │ ├── VTOLChecklist.qml │ ├── VehicleWarnings.qml │ └── VirtualJoystick.qml ├── FlightMap │ ├── CMakeLists.txt │ ├── FlightMap.qml │ ├── Images │ │ ├── AlertAircraft.svg │ │ ├── AwarenessAircraft.svg │ │ ├── Help.svg │ │ ├── HelpBlack.svg │ │ ├── Home.svg │ │ ├── MapAddMission.svg │ │ ├── MapAddMissionBlack.svg │ │ ├── MapCenter.svg │ │ ├── MapCenterBlack.svg │ │ ├── MapDrawShape.svg │ │ ├── MapHome.svg │ │ ├── MapHomeBlack.svg │ │ ├── MapSync.svg │ │ ├── MapSyncBlack.svg │ │ ├── MapSyncChanged.svg │ │ ├── MapType.svg │ │ ├── MapTypeBlack.svg │ │ ├── PiP.svg │ │ ├── ZoomMinus.svg │ │ ├── ZoomPlus.svg │ │ ├── adsbVehicle.svg │ │ ├── attitudeDial.svg │ │ ├── attitudeInstrument.svg │ │ ├── attitudePointer.svg │ │ ├── cOGPointer.svg │ │ ├── compassDottedLine.svg │ │ ├── compassInstrumentArrow.svg │ │ ├── compassInstrumentDial.svg │ │ ├── crossHair.svg │ │ ├── pipHide.svg │ │ ├── pipResize.svg │ │ ├── rollDialWhite.svg │ │ ├── rollPointerWhite.svg │ │ ├── scale.png │ │ ├── scaleLight.png │ │ ├── scale_end.png │ │ ├── scale_endLight.png │ │ ├── sub.png │ │ ├── vehicleArrowOpaque.svg │ │ └── vehicleArrowOutline.svg │ ├── MapItems │ │ ├── CMakeLists.txt │ │ ├── CameraTriggerIndicator.qml │ │ ├── CustomMapItems.qml │ │ ├── MissionItemIndicator.qml │ │ ├── MissionItemIndicatorDrag.qml │ │ ├── MissionItemView.qml │ │ ├── MissionLineView.qml │ │ ├── PlanMapItems.qml │ │ ├── PolygonEditor.qml │ │ ├── ProximityRadarMapView.qml │ │ ├── SplitIndicator.qml │ │ └── VehicleMapItem.qml │ ├── MapScale.qml │ ├── QGCVideoBackground.qml │ └── Widgets │ │ ├── CMakeLists.txt │ │ ├── CenterMapDropButton.qml │ │ ├── CenterMapDropPanel.qml │ │ ├── CompassRing.qml │ │ ├── MapFitFunctions.qml │ │ ├── PhotoVideoControl.qml │ │ ├── QGCArtificialHorizon.qml │ │ ├── QGCAttitudeHUD.qml │ │ ├── QGCAttitudeWidget.qml │ │ ├── QGCCompassWidget.qml │ │ ├── QGCInstrumentWidget.qml │ │ ├── QGCInstrumentWidgetAlternate.qml │ │ ├── QGCMapToolButton.qml │ │ ├── QGCPitchIndicator.qml │ │ └── QGCWaypointEditor.qml ├── FollowMe │ ├── CMakeLists.txt │ ├── FollowMe.cc │ └── FollowMe.h ├── GPS │ ├── CMakeLists.txt │ ├── GPSManager.cc │ ├── GPSManager.h │ ├── GPSPositionMessage.h │ ├── GPSProvider.cc │ ├── GPSProvider.h │ ├── RTCM │ │ ├── RTCMMavlink.cc │ │ └── RTCMMavlink.h │ ├── definitions.h │ ├── satellite_info.h │ └── vehicle_gps_position.h ├── Geo │ ├── CMakeLists.txt │ ├── Constants.hpp │ ├── MGRS.cpp │ ├── MGRS.hpp │ ├── Math.cpp │ ├── Math.hpp │ ├── PolarStereographic.cpp │ ├── PolarStereographic.hpp │ ├── QGCGeo.cc │ ├── QGCGeo.h │ ├── TransverseMercator.cpp │ ├── TransverseMercator.hpp │ ├── UTMUPS.cpp │ ├── UTMUPS.hpp │ ├── Utility.cpp │ ├── Utility.h │ └── Utility.hpp ├── Joystick │ ├── CMakeLists.txt │ ├── Joystick.cc │ ├── Joystick.h │ ├── JoystickAndroid.cc │ ├── JoystickAndroid.h │ ├── JoystickManager.cc │ ├── JoystickManager.h │ ├── JoystickMavCommand.cc │ ├── JoystickMavCommand.h │ ├── JoystickMavCommands.json │ ├── JoystickSDL.cc │ └── JoystickSDL.h ├── JsonHelper.cc ├── JsonHelper.h ├── KMLDomDocument.cc ├── KMLDomDocument.h ├── KMLHelper.cc ├── KMLHelper.h ├── LogCompressor.cc ├── LogCompressor.h ├── Microhard │ ├── CMakeLists.txt │ ├── MicrohardHandler.cc │ ├── MicrohardHandler.h │ ├── MicrohardManager.cc │ ├── MicrohardManager.h │ ├── MicrohardSettings.cc │ ├── MicrohardSettings.h │ └── MicrohardSettings.qml ├── MissionManager │ ├── BlankPlanCreator.cc │ ├── BlankPlanCreator.h │ ├── BlankPlanCreator.png │ ├── BreachReturn.FactMetaData.json │ ├── CMakeLists.txt │ ├── CameraCalc.FactMetaData.json │ ├── CameraCalc.cc │ ├── CameraCalc.h │ ├── CameraCalcTest.cc │ ├── CameraCalcTest.h │ ├── CameraSection.FactMetaData.json │ ├── CameraSection.cc │ ├── CameraSection.h │ ├── CameraSectionTest.cc │ ├── CameraSectionTest.h │ ├── CameraSpec.FactMetaData.json │ ├── CameraSpec.cc │ ├── CameraSpec.h │ ├── CogWheel.svg │ ├── ComplexMissionItem.cc │ ├── ComplexMissionItem.h │ ├── CorridorScan.SettingsGroup.json │ ├── CorridorScanComplexItem.cc │ ├── CorridorScanComplexItem.h │ ├── CorridorScanComplexItemTest.cc │ ├── CorridorScanComplexItemTest.h │ ├── CorridorScanPlanCreator.cc │ ├── CorridorScanPlanCreator.h │ ├── CorridorScanPlanCreator.png │ ├── FWLandingPattern.FactMetaData.json │ ├── FWLandingPatternTest.cc │ ├── FWLandingPatternTest.h │ ├── FixedWingLandingComplexItem.cc │ ├── FixedWingLandingComplexItem.h │ ├── GeoFenceController.cc │ ├── GeoFenceController.h │ ├── GeoFenceManager.cc │ ├── GeoFenceManager.h │ ├── KMLPlanDomDocument.cc │ ├── KMLPlanDomDocument.h │ ├── LandingComplexItem.cc │ ├── LandingComplexItem.h │ ├── LandingComplexItemTest.cc │ ├── LandingComplexItemTest.h │ ├── MapLineArrow.qml │ ├── MavCmdInfoCommon.json │ ├── MavCmdInfoFixedWing.json │ ├── MavCmdInfoMultiRotor.json │ ├── MavCmdInfoRover.json │ ├── MavCmdInfoSub.json │ ├── MavCmdInfoVTOL.json │ ├── MissionCommandList.cc │ ├── MissionCommandList.h │ ├── MissionCommandTree.cc │ ├── MissionCommandTree.h │ ├── MissionCommandTreeEditorTest.cc │ ├── MissionCommandTreeEditorTest.h │ ├── MissionCommandTreeEditorTestWindow.qml │ ├── MissionCommandTreeTest.cc │ ├── MissionCommandTreeTest.h │ ├── MissionCommandUIInfo.cc │ ├── MissionCommandUIInfo.h │ ├── MissionController.cc │ ├── MissionController.h │ ├── MissionControllerManagerTest.cc │ ├── MissionControllerManagerTest.h │ ├── MissionControllerTest.cc │ ├── MissionControllerTest.h │ ├── MissionItem.cc │ ├── MissionItem.h │ ├── MissionItemTest.cc │ ├── MissionItemTest.h │ ├── MissionManager.cc │ ├── MissionManager.h │ ├── MissionManagerTest.cc │ ├── MissionManagerTest.h │ ├── MissionSettings.FactMetaData.json │ ├── MissionSettingsItem.cc │ ├── MissionSettingsItem.h │ ├── MissionSettingsTest.cc │ ├── MissionSettingsTest.h │ ├── PlanCreator.cc │ ├── PlanCreator.h │ ├── PlanElementController.cc │ ├── PlanElementController.h │ ├── PlanManager.cc │ ├── PlanManager.h │ ├── PlanMasterController.cc │ ├── PlanMasterController.h │ ├── PlanMasterControllerTest.cc │ ├── PlanMasterControllerTest.h │ ├── QGCFenceCircle.cc │ ├── QGCFenceCircle.h │ ├── QGCFencePolygon.cc │ ├── QGCFencePolygon.h │ ├── QGCMapCircle.Facts.json │ ├── QGCMapCircle.cc │ ├── QGCMapCircle.h │ ├── QGCMapCircleVisuals.qml │ ├── QGCMapPolygon.cc │ ├── QGCMapPolygon.h │ ├── QGCMapPolygonTest.cc │ ├── QGCMapPolygonTest.h │ ├── QGCMapPolygonVisuals.qml │ ├── QGCMapPolyline.cc │ ├── QGCMapPolyline.h │ ├── QGCMapPolylineTest.cc │ ├── QGCMapPolylineTest.h │ ├── QGCMapPolylineVisuals.qml │ ├── RallyPoint.FactMetaData.json │ ├── RallyPoint.cc │ ├── RallyPoint.h │ ├── RallyPointController.cc │ ├── RallyPointController.h │ ├── RallyPointManager.cc │ ├── RallyPointManager.h │ ├── Section.h │ ├── SectionTest.cc │ ├── SectionTest.h │ ├── SimpleMissionItem.cc │ ├── SimpleMissionItem.h │ ├── SimpleMissionItemTest.cc │ ├── SimpleMissionItemTest.h │ ├── SpeedSection.FactMetaData.json │ ├── SpeedSection.cc │ ├── SpeedSection.h │ ├── SpeedSectionTest.cc │ ├── SpeedSectionTest.h │ ├── StructureScan.SettingsGroup.json │ ├── StructureScanComplexItem.cc │ ├── StructureScanComplexItem.h │ ├── StructureScanComplexItemTest.cc │ ├── StructureScanComplexItemTest.h │ ├── StructureScanPlanCreator.cc │ ├── StructureScanPlanCreator.h │ ├── StructureScanPlanCreator.png │ ├── Survey.SettingsGroup.json │ ├── SurveyComplexItem.cc │ ├── SurveyComplexItem.h │ ├── SurveyComplexItemTest.cc │ ├── SurveyComplexItemTest.h │ ├── SurveyPlanCreator.cc │ ├── SurveyPlanCreator.h │ ├── SurveyPlanCreator.png │ ├── TakeoffMissionItem.cc │ ├── TakeoffMissionItem.h │ ├── TransectStyle.SettingsGroup.json │ ├── TransectStyleComplexItem.cc │ ├── TransectStyleComplexItem.h │ ├── TransectStyleComplexItemTest.cc │ ├── TransectStyleComplexItemTest.h │ ├── TransectStyleComplexItemTestBase.cc │ ├── TransectStyleComplexItemTestBase.h │ ├── UnitTest │ │ ├── MP 19.prj │ │ ├── MP 19.shp │ │ ├── MP 19.shx │ │ ├── MP Bonus.prj │ │ ├── MP Bonus.shp │ │ ├── MP Bonus.shx │ │ ├── MissionPlanner.waypoints │ │ ├── OldFileFormat.mission │ │ ├── PolygonAreaTest.kml │ │ ├── PolygonBadCoordinatesNode.kml │ │ ├── PolygonBadXml.kml │ │ ├── PolygonGood.kml │ │ ├── PolygonMissingNode.kml │ │ ├── Sarah's Farm.prj │ │ ├── Sarah's Farm.shp │ │ ├── Sarah's Farm.shx │ │ ├── SectionTest.plan │ │ ├── UT-MavCmdInfoCommon.json │ │ ├── UT-MavCmdInfoFixedWing.json │ │ ├── UT-MavCmdInfoMultiRotor.json │ │ ├── UT-MavCmdInfoRover.json │ │ ├── UT-MavCmdInfoSub.json │ │ └── UT-MavCmdInfoVTOL.json │ ├── VTOLLandingComplexItem.cc │ ├── VTOLLandingComplexItem.h │ ├── VTOLLandingPattern.FactMetaData.json │ ├── VisualMissionItem.cc │ ├── VisualMissionItem.h │ ├── VisualMissionItemTest.cc │ └── VisualMissionItemTest.h ├── MobileScreenMgr.cc ├── MobileScreenMgr.h ├── MobileScreenMgr.mm ├── PairingManager │ ├── PairingManager.cc │ ├── PairingManager.h │ ├── QtNFC.cc │ ├── QtNFC.h │ ├── aes.cpp │ └── aes.h ├── PlanView │ ├── CMakeLists.txt │ ├── CameraCalcCamera.qml │ ├── CameraCalcGrid.qml │ ├── CameraSection.qml │ ├── CorridorScanEditor.qml │ ├── CorridorScanMapVisual.qml │ ├── FWLandingPatternEditor.qml │ ├── FWLandingPatternMapVisual.qml │ ├── GeoFenceEditor.qml │ ├── GeoFenceMapVisuals.qml │ ├── MissionItemEditor.qml │ ├── MissionItemMapVisual.qml │ ├── MissionItemStatus.qml │ ├── MissionSettingsEditor.qml │ ├── PlanEditToolbar.qml │ ├── PlanToolBar.qml │ ├── PlanToolBarIndicators.qml │ ├── PlanView.qml │ ├── RallyPointEditorHeader.qml │ ├── RallyPointItemEditor.qml │ ├── RallyPointMapVisuals.qml │ ├── SimpleItemEditor.qml │ ├── SimpleItemMapVisual.qml │ ├── StructureScanEditor.qml │ ├── StructureScanMapVisual.qml │ ├── SurveyItemEditor.qml │ ├── SurveyMapVisual.qml │ ├── TakeoffItemMapVisual.qml │ ├── TerrainStatus.qml │ ├── TransectStyleComplexItemEditor.qml │ ├── TransectStyleComplexItemStats.qml │ ├── TransectStyleComplexItemTabBar.qml │ ├── TransectStyleComplexItemTerrainFollow.qml │ ├── TransectStyleMapVisuals.qml │ ├── VTOLLandingPatternEditor.qml │ └── VTOLLandingPatternMapVisual.qml ├── PositionManager │ ├── CMakeLists.txt │ ├── PositionManager.cpp │ ├── PositionManager.h │ ├── SimulatedPosition.cc │ └── SimulatedPosition.h ├── QGC.cc ├── QGC.h ├── QGCApplication.cc ├── QGCApplication.h ├── QGCComboBox.cc ├── QGCComboBox.h ├── QGCConfig.h ├── QGCFileDownload.cc ├── QGCFileDownload.h ├── QGCLoggingCategory.cc ├── QGCLoggingCategory.h ├── QGCMapPalette.cc ├── QGCMapPalette.h ├── QGCPalette.cc ├── QGCPalette.h ├── QGCQGeoCoordinate.cc ├── QGCQGeoCoordinate.h ├── QGCTemporaryFile.cc ├── QGCTemporaryFile.h ├── QGCToolbox.cc ├── QGCToolbox.h ├── QmlControls │ ├── APMSubMotorDisplay.qml │ ├── AltModeDialog.qml │ ├── AppMessages.cc │ ├── AppMessages.h │ ├── AppMessages.qml │ ├── AutotuneUI.qml │ ├── AxisMonitor.qml │ ├── CMakeLists.txt │ ├── ClickableColor.qml │ ├── DeadMouseArea.qml │ ├── DropButton.qml │ ├── DropPanel.qml │ ├── EditPositionDialog.FactMetaData.json │ ├── EditPositionDialog.qml │ ├── EditPositionDialogController.cc │ ├── EditPositionDialogController.h │ ├── ExclusiveGroupItem.qml │ ├── FactSliderPanel.qml │ ├── FactValueGrid.cc │ ├── FactValueGrid.h │ ├── FileButton.qml │ ├── FlightModeDropdown.qml │ ├── FlightModeMenu.qml │ ├── FlightPathSegment.cc │ ├── FlightPathSegment.h │ ├── HackAndroidFileDialog.qml │ ├── HeightIndicator.qml │ ├── HorizontalFactValueGrid.cc │ ├── HorizontalFactValueGrid.h │ ├── HorizontalFactValueGrid.qml │ ├── IndicatorButton.qml │ ├── InstrumentValueArea.qml │ ├── InstrumentValueData.cc │ ├── InstrumentValueData.h │ ├── InstrumentValueEditDialog.qml │ ├── InstrumentValueLabel.qml │ ├── InstrumentValueValue.qml │ ├── JoystickThumbPad.qml │ ├── KMLOrSHPFileDialog.qml │ ├── LogReplayStatusBar.qml │ ├── MAVLinkChart.qml │ ├── MAVLinkMessageButton.qml │ ├── MainWindowSavedState.qml │ ├── MissionCommandDialog.qml │ ├── MissionItemIndexLabel.qml │ ├── ModeSwitchDisplay.qml │ ├── MultiRotorMotorDisplay.qml │ ├── OfflineMapButton.qml │ ├── PIDTuning.qml │ ├── ParameterDiffDialog.qml │ ├── ParameterEditor.qml │ ├── ParameterEditorController.cc │ ├── ParameterEditorController.h │ ├── ParameterEditorDialog.qml │ ├── PreFlightCheckButton.qml │ ├── PreFlightCheckGroup.qml │ ├── PreFlightCheckList.qml │ ├── PreFlightCheckModel.qml │ ├── QGCButton.qml │ ├── QGCCheckBox.qml │ ├── QGCColoredImage.qml │ ├── QGCComboBox.qml │ ├── QGCControlDebug.qml │ ├── QGCDynamicObjectManager.qml │ ├── QGCFileDialog.qml │ ├── QGCFileDialogController.cc │ ├── QGCFileDialogController.h │ ├── QGCFlickable.qml │ ├── QGCFlickableHorizontalIndicator.qml │ ├── QGCFlickableVerticalIndicator.qml │ ├── QGCGeoBoundingCube.cc │ ├── QGCGeoBoundingCube.h │ ├── QGCGroupBox.qml │ ├── QGCImageProvider.cc │ ├── QGCImageProvider.h │ ├── QGCLabel.qml │ ├── QGCListView.qml │ ├── QGCMapLabel.qml │ ├── QGCMenu.qml │ ├── QGCMenuItem.qml │ ├── QGCMenuSeparator.qml │ ├── QGCMouseArea.qml │ ├── QGCMovableItem.qml │ ├── QGCOptionsComboBox.qml │ ├── QGCPipOverlay.qml │ ├── QGCPipState.qml │ ├── QGCPopupDialog.qml │ ├── QGCRadioButton.qml │ ├── QGCSimpleMessageDialog.qml │ ├── QGCSlider.qml │ ├── QGCSwitch.qml │ ├── QGCTabBar.qml │ ├── QGCTabButton.qml │ ├── QGCTextField.qml │ ├── QGCToolBarButton.qml │ ├── QGCToolInsets.qml │ ├── QGCViewDialog.qml │ ├── QGCViewDialogContainer.qml │ ├── QGCViewMessage.qml │ ├── QGroundControl │ │ ├── Airmap │ │ │ └── qmldir │ │ ├── Controls │ │ │ └── qmldir │ │ ├── FactControls │ │ │ └── qmldir │ │ ├── FactSystem │ │ │ └── qmldir │ │ ├── FlightDisplay │ │ │ └── qmldir │ │ ├── FlightMap │ │ │ └── qmldir │ │ ├── PX4 │ │ │ └── qmldir │ │ ├── ScreenTools │ │ │ └── qmldir │ │ └── Vehicle │ │ │ └── qmldir │ ├── QGroundControlQmlGlobal.cc │ ├── QGroundControlQmlGlobal.h │ ├── QmlObjectListModel.cc │ ├── QmlObjectListModel.h │ ├── QmlTest.qml │ ├── QmlUnitsConversion.h │ ├── RCChannelMonitor.qml │ ├── RCChannelMonitorController.cc │ ├── RCChannelMonitorController.h │ ├── RCToParamDialog.FactMetaData.json │ ├── RCToParamDialog.qml │ ├── RCToParamDialogController.cc │ ├── RCToParamDialogController.h │ ├── RoundButton.qml │ ├── ScreenTools.qml │ ├── ScreenToolsController.cc │ ├── ScreenToolsController.h │ ├── SectionHeader.qml │ ├── SliderSwitch.qml │ ├── SubMenuButton.qml │ ├── TerrainProfile.cc │ ├── TerrainProfile.h │ ├── ToolStrip.qml │ ├── ToolStripAction.cc │ ├── ToolStripAction.h │ ├── ToolStripActionList.cc │ ├── ToolStripActionList.h │ ├── ToolStripHoverButton.qml │ ├── VehicleRotationCal.qml │ ├── VehicleSummaryRow.qml │ ├── arrow-down.png │ └── checkbox-check.svg ├── QtLocationPlugin │ ├── BingMapProvider.cpp │ ├── BingMapProvider.h │ ├── CMakeLists.txt │ ├── ElevationMapProvider.cpp │ ├── ElevationMapProvider.h │ ├── EsriMapProvider.cpp │ ├── EsriMapProvider.h │ ├── GenericMapProvider.cpp │ ├── GenericMapProvider.h │ ├── GoogleMapProvider.cpp │ ├── GoogleMapProvider.h │ ├── MapProvider.cpp │ ├── MapProvider.h │ ├── MapboxMapProvider.cpp │ ├── MapboxMapProvider.h │ ├── QGCLocationPlugin.pri │ ├── QGCMapEngine.cpp │ ├── QGCMapEngine.h │ ├── QGCMapEngineData.h │ ├── QGCMapTileSet.cpp │ ├── QGCMapTileSet.h │ ├── QGCMapUrlEngine.cpp │ ├── QGCMapUrlEngine.h │ ├── QGCTileCacheWorker.cpp │ ├── QGCTileCacheWorker.h │ ├── QGCTileSet.h │ ├── QGeoCodeReplyQGC.cpp │ ├── QGeoCodeReplyQGC.h │ ├── QGeoCodingManagerEngineQGC.cpp │ ├── QGeoCodingManagerEngineQGC.h │ ├── QGeoMapReplyQGC.cpp │ ├── QGeoMapReplyQGC.h │ ├── QGeoServiceProviderPluginQGC.cpp │ ├── QGeoServiceProviderPluginQGC.h │ ├── QGeoTileFetcherQGC.cpp │ ├── QGeoTileFetcherQGC.h │ ├── QGeoTiledMappingManagerEngineQGC.cpp │ ├── QGeoTiledMappingManagerEngineQGC.h │ ├── QMLControl │ │ ├── OfflineMap.qml │ │ ├── QGCMapEngineManager.cc │ │ └── QGCMapEngineManager.h │ ├── qgc_maps_plugin.json │ └── qtlocation │ │ ├── README.md │ │ ├── include │ │ ├── QtLocation │ │ │ ├── 5.5.1 │ │ │ │ └── QtLocation │ │ │ │ │ └── private │ │ │ │ │ ├── qcache3q_p.h │ │ │ │ │ ├── qgeocameracapabilities_p.h │ │ │ │ │ ├── qgeocameradata_p.h │ │ │ │ │ ├── qgeocameratiles_p.h │ │ │ │ │ ├── qgeocodereply_p.h │ │ │ │ │ ├── qgeocodingmanager_p.h │ │ │ │ │ ├── qgeocodingmanagerengine_p.h │ │ │ │ │ ├── qgeomaneuver_p.h │ │ │ │ │ ├── qgeomap_p.h │ │ │ │ │ ├── qgeomap_p_p.h │ │ │ │ │ ├── qgeomapcontroller_p.h │ │ │ │ │ ├── qgeomappingmanager_p.h │ │ │ │ │ ├── qgeomappingmanager_p_p.h │ │ │ │ │ ├── qgeomappingmanagerengine_p.h │ │ │ │ │ ├── qgeomappingmanagerengine_p_p.h │ │ │ │ │ ├── qgeomapscene_p.h │ │ │ │ │ ├── qgeomaptype_p.h │ │ │ │ │ ├── qgeomaptype_p_p.h │ │ │ │ │ ├── qgeoroute_p.h │ │ │ │ │ ├── qgeoroutereply_p.h │ │ │ │ │ ├── qgeorouterequest_p.h │ │ │ │ │ ├── qgeoroutesegment_p.h │ │ │ │ │ ├── qgeoroutingmanager_p.h │ │ │ │ │ ├── qgeoroutingmanagerengine_p.h │ │ │ │ │ ├── qgeoserviceprovider_p.h │ │ │ │ │ ├── qgeotilecache_p.h │ │ │ │ │ ├── qgeotiledmap_p.h │ │ │ │ │ ├── qgeotiledmap_p_p.h │ │ │ │ │ ├── qgeotiledmappingmanagerengine_p.h │ │ │ │ │ ├── qgeotiledmappingmanagerengine_p_p.h │ │ │ │ │ ├── qgeotiledmapreply_p.h │ │ │ │ │ ├── qgeotiledmapreply_p_p.h │ │ │ │ │ ├── qgeotilefetcher_p.h │ │ │ │ │ ├── qgeotilefetcher_p_p.h │ │ │ │ │ ├── qgeotilerequestmanager_p.h │ │ │ │ │ ├── qgeotilespec_p.h │ │ │ │ │ ├── qgeotilespec_p_p.h │ │ │ │ │ ├── qplace_p.h │ │ │ │ │ ├── qplaceattribute_p.h │ │ │ │ │ ├── qplacecategory_p.h │ │ │ │ │ ├── qplacecontactdetail_p.h │ │ │ │ │ ├── qplacecontent_p.h │ │ │ │ │ ├── qplacecontentrequest_p.h │ │ │ │ │ ├── qplaceeditorial_p.h │ │ │ │ │ ├── qplaceicon_p.h │ │ │ │ │ ├── qplaceimage_p.h │ │ │ │ │ ├── qplacemanagerengine_p.h │ │ │ │ │ ├── qplaceproposedsearchresult_p.h │ │ │ │ │ ├── qplaceratings_p.h │ │ │ │ │ ├── qplacereply_p.h │ │ │ │ │ ├── qplaceresult_p.h │ │ │ │ │ ├── qplacereview_p.h │ │ │ │ │ ├── qplacesearchresult_p.h │ │ │ │ │ ├── qplacesupplier_p.h │ │ │ │ │ ├── qplaceuser_p.h │ │ │ │ │ └── unsupportedreplies_p.h │ │ │ ├── QGeoCodeReply │ │ │ ├── QGeoCodingManager │ │ │ ├── QGeoCodingManagerEngine │ │ │ ├── QGeoManeuver │ │ │ ├── QGeoRoute │ │ │ ├── QGeoRouteReply │ │ │ ├── QGeoRouteRequest │ │ │ ├── QGeoRouteSegment │ │ │ ├── QGeoRoutingManager │ │ │ ├── QGeoRoutingManagerEngine │ │ │ ├── QGeoServiceProvider │ │ │ ├── QGeoServiceProviderFactory │ │ │ ├── QLocation │ │ │ ├── QPlace │ │ │ ├── QPlaceAttribute │ │ │ ├── QPlaceCategory │ │ │ ├── QPlaceContactDetail │ │ │ ├── QPlaceContent │ │ │ ├── QPlaceContentReply │ │ │ ├── QPlaceContentRequest │ │ │ ├── QPlaceDetailsReply │ │ │ ├── QPlaceEditorial │ │ │ ├── QPlaceIcon │ │ │ ├── QPlaceIdReply │ │ │ ├── QPlaceImage │ │ │ ├── QPlaceManager │ │ │ ├── QPlaceManagerEngine │ │ │ ├── QPlaceMatchReply │ │ │ ├── QPlaceMatchRequest │ │ │ ├── QPlaceProposedSearchResult │ │ │ ├── QPlaceRatings │ │ │ ├── QPlaceReply │ │ │ ├── QPlaceResult │ │ │ ├── QPlaceReview │ │ │ ├── QPlaceSearchReply │ │ │ ├── QPlaceSearchRequest │ │ │ ├── QPlaceSearchResult │ │ │ ├── QPlaceSearchSuggestionReply │ │ │ ├── QPlaceSupplier │ │ │ ├── QPlaceUser │ │ │ ├── QtLocation │ │ │ ├── QtLocationVersion │ │ │ ├── placemacro.h │ │ │ ├── qgeocodereply.h │ │ │ ├── qgeocodingmanager.h │ │ │ ├── qgeocodingmanagerengine.h │ │ │ ├── qgeomaneuver.h │ │ │ ├── qgeoroute.h │ │ │ ├── qgeoroutereply.h │ │ │ ├── qgeorouterequest.h │ │ │ ├── qgeoroutesegment.h │ │ │ ├── qgeoroutingmanager.h │ │ │ ├── qgeoroutingmanagerengine.h │ │ │ ├── qgeoserviceprovider.h │ │ │ ├── qgeoserviceproviderfactory.h │ │ │ ├── qlocation.h │ │ │ ├── qlocationglobal.h │ │ │ ├── qplace.h │ │ │ ├── qplaceattribute.h │ │ │ ├── qplacecategory.h │ │ │ ├── qplacecontactdetail.h │ │ │ ├── qplacecontent.h │ │ │ ├── qplacecontentreply.h │ │ │ ├── qplacecontentrequest.h │ │ │ ├── qplacedetailsreply.h │ │ │ ├── qplaceeditorial.h │ │ │ ├── qplaceicon.h │ │ │ ├── qplaceidreply.h │ │ │ ├── qplaceimage.h │ │ │ ├── qplacemanager.h │ │ │ ├── qplacemanagerengine.h │ │ │ ├── qplacematchreply.h │ │ │ ├── qplacematchrequest.h │ │ │ ├── qplaceproposedsearchresult.h │ │ │ ├── qplaceratings.h │ │ │ ├── qplacereply.h │ │ │ ├── qplaceresult.h │ │ │ ├── qplacereview.h │ │ │ ├── qplacesearchreply.h │ │ │ ├── qplacesearchrequest.h │ │ │ ├── qplacesearchresult.h │ │ │ ├── qplacesearchsuggestionreply.h │ │ │ ├── qplacesupplier.h │ │ │ ├── qplaceuser.h │ │ │ └── qtlocationversion.h │ │ └── QtPositioning │ │ │ ├── 5.5.1 │ │ │ └── QtPositioning │ │ │ │ └── private │ │ │ │ ├── qdeclarativegeoaddress_p.h │ │ │ │ ├── qdeclarativegeolocation_p.h │ │ │ │ ├── qdoublevector2d_p.h │ │ │ │ ├── qdoublevector3d_p.h │ │ │ │ ├── qgeoaddress_p.h │ │ │ │ ├── qgeocircle_p.h │ │ │ │ ├── qgeocoordinate_p.h │ │ │ │ ├── qgeolocation_p.h │ │ │ │ ├── qgeopositioninfosource_p.h │ │ │ │ ├── qgeoprojection_p.h │ │ │ │ ├── qgeorectangle_p.h │ │ │ │ ├── qgeoshape_p.h │ │ │ │ ├── qlocationutils_p.h │ │ │ │ └── qnmeapositioninfosource_p.h │ │ │ ├── QGeoAddress │ │ │ ├── QGeoAreaMonitorInfo │ │ │ ├── QGeoAreaMonitorSource │ │ │ ├── QGeoCircle │ │ │ ├── QGeoCoordinate │ │ │ ├── QGeoLocation │ │ │ ├── QGeoPositionInfo │ │ │ ├── QGeoPositionInfoSource │ │ │ ├── QGeoPositionInfoSourceFactory │ │ │ ├── QGeoRectangle │ │ │ ├── QGeoSatelliteInfo │ │ │ ├── QGeoSatelliteInfoSource │ │ │ ├── QGeoShape │ │ │ ├── QNmeaPositionInfoSource │ │ │ ├── QtPositioning │ │ │ ├── QtPositioningVersion │ │ │ ├── qgeoaddress.h │ │ │ ├── qgeoareamonitorinfo.h │ │ │ ├── qgeoareamonitorsource.h │ │ │ ├── qgeocircle.h │ │ │ ├── qgeocoordinate.h │ │ │ ├── qgeolocation.h │ │ │ ├── qgeopositioninfo.h │ │ │ ├── qgeopositioninfosource.h │ │ │ ├── qgeopositioninfosourcefactory.h │ │ │ ├── qgeorectangle.h │ │ │ ├── qgeosatelliteinfo.h │ │ │ ├── qgeosatelliteinfosource.h │ │ │ ├── qgeoshape.h │ │ │ ├── qnmeapositioninfosource.h │ │ │ ├── qpositioningglobal.h │ │ │ └── qtpositioningversion.h │ │ └── src │ │ ├── location │ │ ├── maps │ │ │ ├── maps.pri │ │ │ ├── qcache3q_p.h │ │ │ ├── qgeocameracapabilities_p.h │ │ │ ├── qgeocameradata_p.h │ │ │ ├── qgeocameratiles_p.h │ │ │ ├── qgeocodereply.h │ │ │ ├── qgeocodereply_p.h │ │ │ ├── qgeocodingmanager.h │ │ │ ├── qgeocodingmanager_p.h │ │ │ ├── qgeocodingmanagerengine.h │ │ │ ├── qgeocodingmanagerengine_p.h │ │ │ ├── qgeomaneuver.h │ │ │ ├── qgeomaneuver_p.h │ │ │ ├── qgeomap_p.h │ │ │ ├── qgeomap_p_p.h │ │ │ ├── qgeomapcontroller_p.h │ │ │ ├── qgeomappingmanager_p.h │ │ │ ├── qgeomappingmanager_p_p.h │ │ │ ├── qgeomappingmanagerengine_p.h │ │ │ ├── qgeomappingmanagerengine_p_p.h │ │ │ ├── qgeomapscene_p.h │ │ │ ├── qgeomaptype_p.h │ │ │ ├── qgeomaptype_p_p.h │ │ │ ├── qgeoroute.h │ │ │ ├── qgeoroute_p.h │ │ │ ├── qgeoroutereply.h │ │ │ ├── qgeoroutereply_p.h │ │ │ ├── qgeorouterequest.h │ │ │ ├── qgeorouterequest_p.h │ │ │ ├── qgeoroutesegment.h │ │ │ ├── qgeoroutesegment_p.h │ │ │ ├── qgeoroutingmanager.h │ │ │ ├── qgeoroutingmanager_p.h │ │ │ ├── qgeoroutingmanagerengine.h │ │ │ ├── qgeoroutingmanagerengine_p.h │ │ │ ├── qgeoserviceprovider.h │ │ │ ├── qgeoserviceprovider_p.h │ │ │ ├── qgeoserviceproviderfactory.h │ │ │ ├── qgeotilecache_p.h │ │ │ ├── qgeotiledmap_p.h │ │ │ ├── qgeotiledmap_p_p.h │ │ │ ├── qgeotiledmappingmanagerengine_p.h │ │ │ ├── qgeotiledmappingmanagerengine_p_p.h │ │ │ ├── qgeotiledmapreply_p.h │ │ │ ├── qgeotiledmapreply_p_p.h │ │ │ ├── qgeotilefetcher_p.h │ │ │ ├── qgeotilefetcher_p_p.h │ │ │ ├── qgeotilerequestmanager_p.h │ │ │ ├── qgeotilespec_p.h │ │ │ └── qgeotilespec_p_p.h │ │ ├── qlocation.h │ │ └── qlocationglobal.h │ │ └── positioning │ │ ├── qdeclarativegeoaddress_p.h │ │ ├── qdeclarativegeolocation_p.h │ │ ├── qdoublevector2d_p.h │ │ ├── qdoublevector3d_p.h │ │ ├── qgeoaddress.h │ │ ├── qgeoaddress_p.h │ │ ├── qgeoareamonitorinfo.h │ │ ├── qgeoareamonitorsource.h │ │ ├── qgeocircle.h │ │ ├── qgeocircle_p.h │ │ ├── qgeocoordinate.h │ │ ├── qgeocoordinate_p.h │ │ ├── qgeolocation.h │ │ ├── qgeolocation_p.h │ │ ├── qgeopositioninfo.h │ │ ├── qgeopositioninfosource.h │ │ ├── qgeopositioninfosource_p.h │ │ ├── qgeopositioninfosourcefactory.h │ │ ├── qgeoprojection_p.h │ │ ├── qgeorectangle.h │ │ ├── qgeorectangle_p.h │ │ ├── qgeosatelliteinfo.h │ │ ├── qgeosatelliteinfosource.h │ │ ├── qgeoshape.h │ │ ├── qgeoshape_p.h │ │ ├── qlocationutils_p.h │ │ ├── qnmeapositioninfosource.h │ │ ├── qnmeapositioninfosource_p.h │ │ └── qpositioningglobal.h ├── RunGuard.cc ├── RunGuard.h ├── SHPFileHelper.cc ├── SHPFileHelper.h ├── Settings │ ├── ADSBVehicleManager.SettingsGroup.json │ ├── ADSBVehicleManagerSettings.cc │ ├── ADSBVehicleManagerSettings.h │ ├── APMMavlinkStreamRate.SettingsGroup.json │ ├── APMMavlinkStreamRateSettings.cc │ ├── APMMavlinkStreamRateSettings.h │ ├── App.SettingsGroup.json │ ├── AppSettings.cc │ ├── AppSettings.h │ ├── AutoConnect.SettingsGroup.json │ ├── AutoConnectSettings.cc │ ├── AutoConnectSettings.h │ ├── BrandImage.SettingsGroup.json │ ├── BrandImageSettings.cc │ ├── BrandImageSettings.h │ ├── CMakeLists.txt │ ├── FirmwareUpgrade.SettingsGroup.json │ ├── FirmwareUpgradeSettings.cc │ ├── FirmwareUpgradeSettings.h │ ├── FlightMap.SettingsGroup.json │ ├── FlightMapSettings.cc │ ├── FlightMapSettings.h │ ├── FlyView.SettingsGroup.json │ ├── FlyViewSettings.cc │ ├── FlyViewSettings.h │ ├── OfflineMaps.SettingsGroup.json │ ├── OfflineMapsSettings.cc │ ├── OfflineMapsSettings.h │ ├── PlanView.SettingsGroup.json │ ├── PlanViewSettings.cc │ ├── PlanViewSettings.h │ ├── RTK.SettingsGroup.json │ ├── RTKSettings.cc │ ├── RTKSettings.h │ ├── SettingsGroup.cc │ ├── SettingsGroup.h │ ├── SettingsManager.cc │ ├── SettingsManager.h │ ├── Units.SettingsGroup.json │ ├── UnitsSettings.cc │ ├── UnitsSettings.h │ ├── Video.SettingsGroup.json │ ├── VideoSettings.cc │ └── VideoSettings.h ├── ShapeFileHelper.cc ├── ShapeFileHelper.h ├── Taisync │ ├── CMakeLists.txt │ ├── TaisyncHandler.cc │ ├── TaisyncHandler.h │ ├── TaisyncManager.cc │ ├── TaisyncManager.h │ ├── TaisyncSettings.cc │ ├── TaisyncSettings.h │ ├── TaisyncSettings.qml │ ├── TaisyncTelemetry.cc │ ├── TaisyncTelemetry.h │ ├── TaisyncVideoReceiver.cc │ └── TaisyncVideoReceiver.h ├── Terrain │ ├── CMakeLists.txt │ ├── TerrainQuery.cc │ └── TerrainQuery.h ├── TerrainTile.cc ├── TerrainTile.h ├── Vehicle │ ├── Actuators │ │ ├── ActuatorActions.cc │ │ ├── ActuatorActions.h │ │ ├── ActuatorOutputs.cc │ │ ├── ActuatorOutputs.h │ │ ├── ActuatorTesting.cc │ │ ├── ActuatorTesting.h │ │ ├── Actuators.cc │ │ ├── Actuators.h │ │ ├── CMakeLists.txt │ │ ├── Common.cc │ │ ├── Common.h │ │ ├── GeometryImage.cc │ │ ├── GeometryImage.h │ │ ├── Mixer.cc │ │ ├── Mixer.h │ │ ├── MotorAssignment.cc │ │ └── MotorAssignment.h │ ├── Autotune.cpp │ ├── Autotune.h │ ├── BatteryFact.json │ ├── CMakeLists.txt │ ├── ClockFact.json │ ├── CompInfo.cc │ ├── CompInfo.h │ ├── CompInfoActuators.cc │ ├── CompInfoActuators.h │ ├── CompInfoEvents.cc │ ├── CompInfoEvents.h │ ├── CompInfoGeneral.cc │ ├── CompInfoGeneral.h │ ├── CompInfoParam.cc │ ├── CompInfoParam.h │ ├── ComponentInformationCache.cc │ ├── ComponentInformationCache.h │ ├── ComponentInformationManager.cc │ ├── ComponentInformationManager.h │ ├── DistanceSensorFact.json │ ├── EscStatusFactGroup.json │ ├── EstimatorStatusFactGroup.json │ ├── EventHandler.cc │ ├── EventHandler.h │ ├── FTPManager.cc │ ├── FTPManager.h │ ├── FTPManagerTest.cc │ ├── FTPManagerTest.h │ ├── GPSFact.json │ ├── GPSRTKFact.json │ ├── GPSRTKFactGroup.cc │ ├── GPSRTKFactGroup.h │ ├── HealthAndArmingChecks.cc │ ├── HealthAndArmingChecks.h │ ├── HygrometerFact.json │ ├── ImageProtocolManager.cc │ ├── ImageProtocolManager.h │ ├── InitialConnectStateMachine.cc │ ├── InitialConnectStateMachine.h │ ├── InitialConnectTest.cc │ ├── InitialConnectTest.h │ ├── LocalPositionFact.json │ ├── MAVLinkLogManager.cc │ ├── MAVLinkLogManager.h │ ├── MAVLinkStreamConfig.cc │ ├── MAVLinkStreamConfig.h │ ├── MultiVehicleManager.cc │ ├── MultiVehicleManager.h │ ├── RequestMessageTest.cc │ ├── RequestMessageTest.h │ ├── SendMavCommandWithHandlerTest.cc │ ├── SendMavCommandWithHandlerTest.h │ ├── SendMavCommandWithSignallingTest.cc │ ├── SendMavCommandWithSignallingTest.h │ ├── SetpointFact.json │ ├── StateMachine.cc │ ├── StateMachine.h │ ├── SubmarineFact.json │ ├── SysStatusSensorInfo.cc │ ├── SysStatusSensorInfo.h │ ├── TemperatureFact.json │ ├── TerrainFactGroup.cc │ ├── TerrainFactGroup.h │ ├── TerrainFactGroup.json │ ├── TerrainProtocolHandler.cc │ ├── TerrainProtocolHandler.h │ ├── TrajectoryPoints.cc │ ├── TrajectoryPoints.h │ ├── Vehicle.cc │ ├── Vehicle.h │ ├── VehicleBatteryFactGroup.cc │ ├── VehicleBatteryFactGroup.h │ ├── VehicleClockFactGroup.cc │ ├── VehicleClockFactGroup.h │ ├── VehicleDistanceSensorFactGroup.cc │ ├── VehicleDistanceSensorFactGroup.h │ ├── VehicleEscStatusFactGroup.cc │ ├── VehicleEscStatusFactGroup.h │ ├── VehicleEstimatorStatusFactGroup.cc │ ├── VehicleEstimatorStatusFactGroup.h │ ├── VehicleFact.json │ ├── VehicleGPS2FactGroup.cc │ ├── VehicleGPS2FactGroup.h │ ├── VehicleGPSFactGroup.cc │ ├── VehicleGPSFactGroup.h │ ├── VehicleHygrometerFactGroup.cc │ ├── VehicleHygrometerFactGroup.h │ ├── VehicleLinkManager.cc │ ├── VehicleLinkManager.h │ ├── VehicleLinkManagerTest.cc │ ├── VehicleLinkManagerTest.h │ ├── VehicleLocalPositionFactGroup.cc │ ├── VehicleLocalPositionFactGroup.h │ ├── VehicleLocalPositionSetpointFactGroup.cc │ ├── VehicleLocalPositionSetpointFactGroup.h │ ├── VehicleObjectAvoidance.cc │ ├── VehicleObjectAvoidance.h │ ├── VehicleSetpointFactGroup.cc │ ├── VehicleSetpointFactGroup.h │ ├── VehicleTemperatureFactGroup.cc │ ├── VehicleTemperatureFactGroup.h │ ├── VehicleVibrationFactGroup.cc │ ├── VehicleVibrationFactGroup.h │ ├── VehicleWindFactGroup.cc │ ├── VehicleWindFactGroup.h │ ├── VibrationFact.json │ └── WindFact.json ├── VehicleSetup │ ├── Bootloader.cc │ ├── Bootloader.h │ ├── CMakeLists.txt │ ├── FirmwareImage.cc │ ├── FirmwareImage.h │ ├── FirmwareUpgrade.qml │ ├── FirmwareUpgradeController.cc │ ├── FirmwareUpgradeController.h │ ├── FirmwareUpgradeIcon.png │ ├── JoystickConfig.qml │ ├── JoystickConfigAdvanced.qml │ ├── JoystickConfigButtons.qml │ ├── JoystickConfigCalibration.qml │ ├── JoystickConfigController.cc │ ├── JoystickConfigController.h │ ├── JoystickConfigGeneral.qml │ ├── PX4FirmwareUpgradeThread.cc │ ├── PX4FirmwareUpgradeThread.h │ ├── PX4FlowSensor.qml │ ├── SetupParameterEditor.qml │ ├── SetupView.qml │ ├── VehicleComponent.cc │ ├── VehicleComponent.h │ ├── VehicleSummary.qml │ └── VehicleSummaryIcon.png ├── VideoManager │ ├── CMakeLists.txt │ ├── GLVideoItemStub.cc │ ├── GLVideoItemStub.h │ ├── SubtitleWriter.cc │ ├── SubtitleWriter.h │ ├── VideoManager.cc │ └── VideoManager.h ├── VideoReceiver │ ├── CMakeLists.txt │ ├── GStreamer.cc │ ├── GStreamer.h │ ├── GstVideoReceiver.cc │ ├── GstVideoReceiver.h │ ├── README.md │ ├── VideoReceiver.h │ ├── VideoReceiver.pri │ ├── gst_ios_init.h │ ├── gst_ios_init.m │ ├── gstqgc.c │ └── gstqgcvideosinkbin.c ├── api │ ├── CMakeLists.txt │ ├── QGCCorePlugin.cc │ ├── QGCCorePlugin.h │ ├── QGCOptions.cc │ ├── QGCOptions.h │ ├── QGCSettings.cc │ ├── QGCSettings.h │ ├── QmlComponentInfo.cc │ └── QmlComponentInfo.h ├── comm │ ├── APMArduSubMockLink.params │ ├── BluetoothLink.cc │ ├── BluetoothLink.h │ ├── CMakeLists.txt │ ├── LinkConfiguration.cc │ ├── LinkConfiguration.h │ ├── LinkInterface.cc │ ├── LinkInterface.h │ ├── LinkManager.cc │ ├── LinkManager.h │ ├── LogReplayLink.cc │ ├── LogReplayLink.h │ ├── MAVLinkProtocol.cc │ ├── MAVLinkProtocol.h │ ├── MavlinkMessagesTimer.cc │ ├── MavlinkMessagesTimer.h │ ├── MockLink.General.MetaData.json │ ├── MockLink.General.MetaData.json.xz │ ├── MockLink.Parameter.MetaData.json │ ├── MockLink.Parameter.MetaData.json.xz │ ├── MockLink.cc │ ├── MockLink.h │ ├── MockLinkFTP.cc │ ├── MockLinkFTP.h │ ├── MockLinkMissionItemHandler.cc │ ├── MockLinkMissionItemHandler.h │ ├── MockLinkOptionsDlg.qml │ ├── PX4MockLink.params │ ├── QGCMAVLink.cc │ ├── QGCMAVLink.h │ ├── QGCSerialPortInfo.cc │ ├── QGCSerialPortInfo.h │ ├── SerialLink.cc │ ├── SerialLink.h │ ├── TCPLink.cc │ ├── TCPLink.h │ ├── UDPLink.cc │ ├── UDPLink.h │ ├── USBBoardInfo.json │ ├── UdpIODevice.cc │ └── UdpIODevice.h ├── documentation.dox ├── main.cc ├── qgcunittest │ ├── CMakeLists.txt │ ├── ComponentInformationCacheTest.cc │ ├── ComponentInformationCacheTest.h │ ├── FileDialogTest.cc │ ├── FileDialogTest.h │ ├── FileManagerTest.cc │ ├── FileManagerTest.h │ ├── GeoTest.cc │ ├── GeoTest.h │ ├── MainWindowTest.cc │ ├── MainWindowTest.h │ ├── MavlinkLogTest.cc │ ├── MavlinkLogTest.h │ ├── MessageBoxTest.cc │ ├── MessageBoxTest.h │ ├── MultiSignalSpy.cc │ ├── MultiSignalSpy.h │ ├── MultiSignalSpyV2.cc │ ├── MultiSignalSpyV2.h │ ├── RadioConfigTest.cc │ ├── RadioConfigTest.h │ ├── UnitTest.cc │ ├── UnitTest.h │ └── UnitTestList.cc ├── stable_headers.h ├── test.qml ├── uas │ ├── CMakeLists.txt │ ├── UAS.cc │ ├── UAS.h │ ├── UASInterface.h │ ├── UASMessageHandler.cc │ └── UASMessageHandler.h └── ui │ ├── AppSettings.qml │ ├── CMakeLists.txt │ ├── ExitWithErrorWindow.qml │ ├── MainRootWindow.qml │ ├── QGCPluginHost.cc │ ├── QGCPluginHost.h │ ├── QGCPluginHost.ui │ ├── QMap3D.ui │ ├── preferences │ ├── BluetoothSettings.qml │ ├── CMakeLists.txt │ ├── DebugWindow.qml │ ├── GeneralSettings.qml │ ├── HelpSettings.qml │ ├── LinkSettings.qml │ ├── LogReplaySettings.qml │ ├── MavlinkSettings.qml │ ├── MockLink.qml │ ├── MockLinkSettings.qml │ ├── SerialSettings.qml │ ├── TcpSettings.qml │ └── UdpSettings.qml │ └── toolbar │ ├── ArmedIndicator.qml │ ├── BatteryIndicator.qml │ ├── CMakeLists.txt │ ├── GPSIndicator.qml │ ├── GPSRTKIndicator.qml │ ├── Images │ ├── AirplaneIcon.svg │ ├── Analyze.svg │ ├── Armed.svg │ ├── Battery.svg │ ├── CameraIcon.svg │ ├── Connect.svg │ ├── Disarmed.svg │ ├── Disconnect.svg │ ├── Gears.svg │ ├── Gps.svg │ ├── Hamburger.svg │ ├── Joystick.png │ ├── Megaphone.svg │ ├── PaperPlane.svg │ ├── Plan.svg │ ├── Quad.svg │ ├── RC.svg │ ├── RTK.svg │ ├── Signal0.svg │ ├── Signal100.svg │ ├── Signal20.svg │ ├── Signal40.svg │ ├── Signal60.svg │ ├── Signal80.svg │ ├── TelemRSSI.svg │ ├── Yield.svg │ └── roi.svg │ ├── JoystickIndicator.qml │ ├── LinkIndicator.qml │ ├── MainStatusIndicator.qml │ ├── MainToolBar.qml │ ├── MainToolBarIndicators.qml │ ├── MessageIndicator.qml │ ├── ModeIndicator.qml │ ├── MultiVehicleSelector.qml │ ├── RCRSSIIndicator.qml │ ├── ROIIndicator.qml │ ├── SignalStrength.qml │ ├── TelemetryRSSIIndicator.qml │ └── VTOLModeIndicator.qml ├── test ├── 100Waypoints.mission ├── 100Waypoints.waypoints copy.txt ├── 800Waypoints.mission ├── 800Waypoints.waypoints.txt ├── MissionPlanner.waypoints.txt └── qtlogging.ini ├── tools ├── RandomNumberVerification │ ├── gaussian_noise.cpp │ ├── generate_noise_csv │ ├── generated_noise.csv │ ├── noise_characteristics.m │ └── verify_noise_characteristics.m ├── StripAndTarQtForAndroidMin.sh ├── StripAndTarQtForLinuxMin.sh ├── StripAndTarQtForOSXMin.sh ├── StripAndTarQtForiOSMin.sh ├── get_xcode_version.sh ├── google_play_upload.py ├── iosccachecc.sh ├── iosccachecxx.sh ├── osxrelocator.py ├── patch_qt_for_xcode8.sh ├── prepare_gstreamer_framework.sh ├── qt_ios_xcode8.patch ├── qt_macos_xcode8.patch ├── update_android_manifest_package.sh ├── update_android_version.sh └── update_ios_version.sh └── translations ├── README.md ├── qgc-json.ts ├── qgc-lupdate-json.py ├── qgc-lupdate.sh ├── qgc.ts ├── qgc_az_AZ.ts ├── qgc_json_az_AZ.ts ├── qgc_json_bg_BG.ts ├── qgc_json_de_DE.ts ├── qgc_json_el_GR.ts ├── qgc_json_es_ES.ts ├── qgc_json_fi_FI.ts ├── qgc_json_fr_FR.ts ├── qgc_json_he_IL.ts ├── qgc_json_it_IT.ts ├── qgc_json_ja_JP.ts ├── qgc_json_ko_KR.ts ├── qgc_json_nl_NL.ts ├── qgc_json_no_NO.ts ├── qgc_json_pl_PL.ts ├── qgc_json_pt_PT.ts ├── qgc_json_ru_RU.ts ├── qgc_json_sv_SE.ts ├── qgc_json_tr_TR.ts ├── qgc_json_zh_CN.ts ├── qgc_source_az_AZ.ts ├── qgc_source_bg_BG.ts ├── qgc_source_de_DE.ts ├── qgc_source_el_GR.ts ├── qgc_source_es_ES.ts ├── qgc_source_fi_FI.ts ├── qgc_source_fr_FR.ts ├── qgc_source_he_IL.ts ├── qgc_source_it_IT.ts ├── qgc_source_ja_JP.ts ├── qgc_source_ko_KR.ts ├── qgc_source_nl_NL.ts ├── qgc_source_no_NO.ts ├── qgc_source_pl_PL.ts ├── qgc_source_pt_PT.ts ├── qgc_source_ru_RU.ts ├── qgc_source_sv_SE.ts ├── qgc_source_tr_TR.ts └── qgc_source_zh_CN.ts /.ackrc: -------------------------------------------------------------------------------- 1 | --ignore-dir=doc 2 | -------------------------------------------------------------------------------- /.github/workflows/linux_debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/.github/workflows/linux_debug.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vagrantconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/.vagrantconfig.yml -------------------------------------------------------------------------------- /.ycm_extra_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/.ycm_extra_conf.py -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/COPYING.md -------------------------------------------------------------------------------- /CentOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/CentOS.md -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /CodingStyle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/CodingStyle.cc -------------------------------------------------------------------------------- /CodingStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/CodingStyle.h -------------------------------------------------------------------------------- /CodingStyle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/CodingStyle.qml -------------------------------------------------------------------------------- /Custom-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/Custom-Info.plist -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/Makefile -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /QGCCommon.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/QGCCommon.pri -------------------------------------------------------------------------------- /QGCExternalLibs.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/QGCExternalLibs.pri -------------------------------------------------------------------------------- /QGCPostLinkCommon.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/QGCPostLinkCommon.pri -------------------------------------------------------------------------------- /QGCPostLinkInstaller.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/QGCPostLinkInstaller.pri -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/README.md -------------------------------------------------------------------------------- /UnitTest.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/UnitTest.qrc -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/Vagrantfile -------------------------------------------------------------------------------- /VideoReceiverApp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/VideoReceiverApp/CMakeLists.txt -------------------------------------------------------------------------------- /VideoReceiverApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/VideoReceiverApp/Info.plist -------------------------------------------------------------------------------- /VideoReceiverApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/VideoReceiverApp/README.md -------------------------------------------------------------------------------- /VideoReceiverApp/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/VideoReceiverApp/android/gradlew -------------------------------------------------------------------------------- /VideoReceiverApp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/VideoReceiverApp/main.cpp -------------------------------------------------------------------------------- /VideoReceiverApp/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/VideoReceiverApp/main.qml -------------------------------------------------------------------------------- /VideoReceiverApp/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/VideoReceiverApp/qml.qrc -------------------------------------------------------------------------------- /android.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/android.pri -------------------------------------------------------------------------------- /android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/android/AndroidManifest.xml -------------------------------------------------------------------------------- /android/GooglePlayDailyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/android/GooglePlayDailyIcon.png -------------------------------------------------------------------------------- /android/GooglePlayScreenShot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/android/GooglePlayScreenShot1.jpg -------------------------------------------------------------------------------- /android/GooglePlayScreenShot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/android/GooglePlayScreenShot2.jpg -------------------------------------------------------------------------------- /android/android_release.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/android/android_release.keystore -------------------------------------------------------------------------------- /android/libs/d2xx.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/android/libs/d2xx.jar -------------------------------------------------------------------------------- /android/res/values/libs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/android/res/values/libs.xml -------------------------------------------------------------------------------- /android/res/xml/device_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/android/res/xml/device_filter.xml -------------------------------------------------------------------------------- /android_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/android_environment.sh -------------------------------------------------------------------------------- /backup-Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/backup-Jenkinsfile -------------------------------------------------------------------------------- /cmake/AddQtAndroidApk.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/cmake/AddQtAndroidApk.cmake -------------------------------------------------------------------------------- /cmake/CompileOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/cmake/CompileOptions.cmake -------------------------------------------------------------------------------- /cmake/Git.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/cmake/Git.cmake -------------------------------------------------------------------------------- /cmake/MacOSXBundleInfo.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/cmake/MacOSXBundleInfo.plist.in -------------------------------------------------------------------------------- /cmake/QGCDeploy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/cmake/QGCDeploy.cmake -------------------------------------------------------------------------------- /cmake/Qt5QGCConfiguration.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/cmake/Qt5QGCConfiguration.cmake -------------------------------------------------------------------------------- /cmake/Windeployqt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/cmake/Windeployqt.cmake -------------------------------------------------------------------------------- /cmake/android.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/cmake/android.toolchain.cmake -------------------------------------------------------------------------------- /cmake/qtdeploy.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/cmake/qtdeploy.json.in -------------------------------------------------------------------------------- /cmake/windows_metafile.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/cmake/windows_metafile.rc.in -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/crowdin.yml -------------------------------------------------------------------------------- /custom-example/README.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/custom-example/README.jpg -------------------------------------------------------------------------------- /custom-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/custom-example/README.md -------------------------------------------------------------------------------- /custom-example/custom.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/custom-example/custom.pri -------------------------------------------------------------------------------- /custom-example/custom.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/custom-example/custom.qrc -------------------------------------------------------------------------------- /custom-example/custom_deploy.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/custom-example/custom_deploy.pri -------------------------------------------------------------------------------- /custom-example/qgcresources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/custom-example/qgcresources.qrc -------------------------------------------------------------------------------- /custom-example/qgroundcontrol.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/custom-example/qgroundcontrol.qrc -------------------------------------------------------------------------------- /custom-example/src/CustomPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/custom-example/src/CustomPlugin.h -------------------------------------------------------------------------------- /custom-example/updateqrc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/custom-example/updateqrc.py -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/debian/menu -------------------------------------------------------------------------------- /debian/qgroundcontrol.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/debian/qgroundcontrol.install -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/source/options: -------------------------------------------------------------------------------- 1 | tar-ignore = ".git/*" 2 | -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/debian/watch -------------------------------------------------------------------------------- /deploy/.gitignore: -------------------------------------------------------------------------------- 1 | SDL.framework 2 | -------------------------------------------------------------------------------- /deploy/GooglePlayUpload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/deploy/GooglePlayUpload.py -------------------------------------------------------------------------------- /deploy/MacCertificates.p12.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/deploy/MacCertificates.p12.enc -------------------------------------------------------------------------------- /deploy/MacImportCert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/deploy/MacImportCert.sh -------------------------------------------------------------------------------- /deploy/MakeQtTravisTarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/deploy/MakeQtTravisTarball.sh -------------------------------------------------------------------------------- /deploy/create_linux_appimage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/deploy/create_linux_appimage.sh -------------------------------------------------------------------------------- /deploy/docker/install-qt-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/deploy/docker/install-qt-linux.sh -------------------------------------------------------------------------------- /deploy/driver-msi-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/deploy/driver-msi-README.md -------------------------------------------------------------------------------- /deploy/genPDBsrcsrv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/deploy/genPDBsrcsrv.py -------------------------------------------------------------------------------- /deploy/linux-fixup-rpaths.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/deploy/linux-fixup-rpaths.bash -------------------------------------------------------------------------------- /deploy/qgroundcontrol-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/deploy/qgroundcontrol-start.sh -------------------------------------------------------------------------------- /deploy/qgroundcontrol.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/deploy/qgroundcontrol.desktop -------------------------------------------------------------------------------- /deploy/qt.conf: -------------------------------------------------------------------------------- 1 | [Paths] 2 | Prefix=./Qt 3 | Libraries=libs 4 | -------------------------------------------------------------------------------- /deploy/ubuntu_ppa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/deploy/ubuntu_ppa -------------------------------------------------------------------------------- /deploy/windows/QGroundControl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/deploy/windows/QGroundControl.rc -------------------------------------------------------------------------------- /deploy/windows/WindowsQGC.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/deploy/windows/WindowsQGC.ico -------------------------------------------------------------------------------- /deploy/windows/driver.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/deploy/windows/driver.msi -------------------------------------------------------------------------------- /deploy/windows/installheader.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/deploy/windows/installheader.bmp -------------------------------------------------------------------------------- /deploy/windows/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/deploy/windows/resource.h -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | html 2 | latex 3 | *.tmp 4 | -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/doc/README -------------------------------------------------------------------------------- /doc/dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/doc/dot -------------------------------------------------------------------------------- /doc/graphs.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/doc/graphs.graffle -------------------------------------------------------------------------------- /doc/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/doc/header.html -------------------------------------------------------------------------------- /doc/links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/doc/links.md -------------------------------------------------------------------------------- /doc/links.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/doc/links.svg -------------------------------------------------------------------------------- /doc/qgcmain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/doc/qgcmain.svg -------------------------------------------------------------------------------- /doc/qgroundcontrol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/doc/qgroundcontrol.md -------------------------------------------------------------------------------- /doc/qgroundcontrol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/doc/qgroundcontrol.png -------------------------------------------------------------------------------- /doc/vehicleMgmt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/doc/vehicleMgmt.md -------------------------------------------------------------------------------- /doc/vehicleMgmt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/doc/vehicleMgmt.svg -------------------------------------------------------------------------------- /ios/AppStoreIcon_1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/ios/AppStoreIcon_1024x1024.png -------------------------------------------------------------------------------- /ios/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/ios/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/QGCLaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/ios/QGCLaunchScreen.xib -------------------------------------------------------------------------------- /ios/iOS-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/ios/iOS-Info.plist -------------------------------------------------------------------------------- /ios/qgroundcontrol.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/ios/qgroundcontrol.xcconfig -------------------------------------------------------------------------------- /libs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/CMakeLists.txt -------------------------------------------------------------------------------- /libs/Frameworks/SDL2.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /libs/Frameworks/SDL2.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /libs/Frameworks/SDL2.framework/SDL2: -------------------------------------------------------------------------------- 1 | Versions/Current/SDL2 -------------------------------------------------------------------------------- /libs/Frameworks/SDL2.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /libs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/README.md -------------------------------------------------------------------------------- /libs/libevents/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/libevents/CMakeLists.txt -------------------------------------------------------------------------------- /libs/libevents/definitions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/libevents/definitions.cpp -------------------------------------------------------------------------------- /libs/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/msinttypes/inttypes.h -------------------------------------------------------------------------------- /libs/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/msinttypes/stdint.h -------------------------------------------------------------------------------- /libs/qmdnsengine_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/qmdnsengine_export.h -------------------------------------------------------------------------------- /libs/qmlglsink/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/qmlglsink/CMakeLists.txt -------------------------------------------------------------------------------- /libs/qmlglsink/windows/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/qmlglsink/windows/GL/glext.h -------------------------------------------------------------------------------- /libs/sdl2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/sdl2/CMakeLists.txt -------------------------------------------------------------------------------- /libs/sdl2/msvc/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/sdl2/msvc/BUGS.txt -------------------------------------------------------------------------------- /libs/sdl2/msvc/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/sdl2/msvc/COPYING.txt -------------------------------------------------------------------------------- /libs/sdl2/msvc/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/sdl2/msvc/README-SDL.txt -------------------------------------------------------------------------------- /libs/sdl2/msvc/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/sdl2/msvc/README.txt -------------------------------------------------------------------------------- /libs/sdl2/msvc/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/sdl2/msvc/WhatsNew.txt -------------------------------------------------------------------------------- /libs/sdl2/msvc/docs/README-hg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/sdl2/msvc/docs/README-hg.md -------------------------------------------------------------------------------- /libs/sdl2/msvc/docs/README-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/sdl2/msvc/docs/README-ios.md -------------------------------------------------------------------------------- /libs/sdl2/msvc/docs/README-psp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/sdl2/msvc/docs/README-psp.md -------------------------------------------------------------------------------- /libs/sdl2/msvc/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/sdl2/msvc/docs/README.md -------------------------------------------------------------------------------- /libs/sdl2/msvc/docs/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/sdl2/msvc/docs/doxyfile -------------------------------------------------------------------------------- /libs/sdl2/msvc/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/sdl2/msvc/include/SDL.h -------------------------------------------------------------------------------- /libs/sdl2/msvc/include/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/sdl2/msvc/include/SDL_bits.h -------------------------------------------------------------------------------- /libs/sdl2/msvc/include/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/sdl2/msvc/include/SDL_egl.h -------------------------------------------------------------------------------- /libs/sdl2/msvc/include/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/sdl2/msvc/include/SDL_log.h -------------------------------------------------------------------------------- /libs/sdl2/msvc/include/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/sdl2/msvc/include/SDL_main.h -------------------------------------------------------------------------------- /libs/sdl2/msvc/include/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/sdl2/msvc/include/SDL_name.h -------------------------------------------------------------------------------- /libs/sdl2/msvc/include/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/sdl2/msvc/include/SDL_quit.h -------------------------------------------------------------------------------- /libs/sdl2/msvc/include/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/sdl2/msvc/include/SDL_rect.h -------------------------------------------------------------------------------- /libs/sdl2/msvc/include/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/sdl2/msvc/include/SDL_test.h -------------------------------------------------------------------------------- /libs/sdl2/msvc/lib/x64/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/sdl2/msvc/lib/x64/SDL2.dll -------------------------------------------------------------------------------- /libs/sdl2/msvc/lib/x64/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/sdl2/msvc/lib/x64/SDL2.lib -------------------------------------------------------------------------------- /libs/sdl2/msvc/lib/x86/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/sdl2/msvc/lib/x86/SDL2.dll -------------------------------------------------------------------------------- /libs/sdl2/msvc/lib/x86/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/sdl2/msvc/lib/x86/SDL2.lib -------------------------------------------------------------------------------- /libs/shapelib/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/AUTHORS -------------------------------------------------------------------------------- /libs/shapelib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/CMakeLists.txt -------------------------------------------------------------------------------- /libs/shapelib/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/COPYING -------------------------------------------------------------------------------- /libs/shapelib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/ChangeLog -------------------------------------------------------------------------------- /libs/shapelib/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/INSTALL -------------------------------------------------------------------------------- /libs/shapelib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/Makefile.am -------------------------------------------------------------------------------- /libs/shapelib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/Makefile.in -------------------------------------------------------------------------------- /libs/shapelib/NEWS: -------------------------------------------------------------------------------- 1 | See ChangeLog 2 | 3 | -------------------------------------------------------------------------------- /libs/shapelib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/README -------------------------------------------------------------------------------- /libs/shapelib/README.CMake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/README.CMake -------------------------------------------------------------------------------- /libs/shapelib/README.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/README.tree -------------------------------------------------------------------------------- /libs/shapelib/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/aclocal.m4 -------------------------------------------------------------------------------- /libs/shapelib/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/ar-lib -------------------------------------------------------------------------------- /libs/shapelib/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/autogen.sh -------------------------------------------------------------------------------- /libs/shapelib/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/compile -------------------------------------------------------------------------------- /libs/shapelib/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/config.guess -------------------------------------------------------------------------------- /libs/shapelib/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/config.sub -------------------------------------------------------------------------------- /libs/shapelib/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/configure -------------------------------------------------------------------------------- /libs/shapelib/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/configure.ac -------------------------------------------------------------------------------- /libs/shapelib/contrib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/contrib/Makefile.am -------------------------------------------------------------------------------- /libs/shapelib/contrib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/contrib/Makefile.in -------------------------------------------------------------------------------- /libs/shapelib/contrib/dbfcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/contrib/dbfcat.c -------------------------------------------------------------------------------- /libs/shapelib/contrib/dbfinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/contrib/dbfinfo.c -------------------------------------------------------------------------------- /libs/shapelib/contrib/makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/contrib/makefile.vc -------------------------------------------------------------------------------- /libs/shapelib/contrib/shpcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/contrib/shpcat.c -------------------------------------------------------------------------------- /libs/shapelib/contrib/shpcentrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/contrib/shpcentrd.c -------------------------------------------------------------------------------- /libs/shapelib/contrib/shpdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/contrib/shpdata.c -------------------------------------------------------------------------------- /libs/shapelib/contrib/shpdxf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/contrib/shpdxf.c -------------------------------------------------------------------------------- /libs/shapelib/contrib/shpfix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/contrib/shpfix.c -------------------------------------------------------------------------------- /libs/shapelib/contrib/shpgeo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/contrib/shpgeo.c -------------------------------------------------------------------------------- /libs/shapelib/contrib/shpgeo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/contrib/shpgeo.h -------------------------------------------------------------------------------- /libs/shapelib/contrib/shpinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/contrib/shpinfo.c -------------------------------------------------------------------------------- /libs/shapelib/contrib/shpproj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/contrib/shpproj.c -------------------------------------------------------------------------------- /libs/shapelib/contrib/shpsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/contrib/shpsort.c -------------------------------------------------------------------------------- /libs/shapelib/contrib/shpwkb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/contrib/shpwkb.c -------------------------------------------------------------------------------- /libs/shapelib/dbfadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/dbfadd.c -------------------------------------------------------------------------------- /libs/shapelib/dbfcreate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/dbfcreate.c -------------------------------------------------------------------------------- /libs/shapelib/dbfdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/dbfdump.c -------------------------------------------------------------------------------- /libs/shapelib/dbfopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/dbfopen.c -------------------------------------------------------------------------------- /libs/shapelib/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/depcomp -------------------------------------------------------------------------------- /libs/shapelib/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/install-sh -------------------------------------------------------------------------------- /libs/shapelib/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/ltmain.sh -------------------------------------------------------------------------------- /libs/shapelib/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/m4/libtool.m4 -------------------------------------------------------------------------------- /libs/shapelib/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/m4/ltoptions.m4 -------------------------------------------------------------------------------- /libs/shapelib/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/m4/ltsugar.m4 -------------------------------------------------------------------------------- /libs/shapelib/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/m4/ltversion.m4 -------------------------------------------------------------------------------- /libs/shapelib/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /libs/shapelib/makefile.vc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/makefile.vc -------------------------------------------------------------------------------- /libs/shapelib/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/missing -------------------------------------------------------------------------------- /libs/shapelib/safileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/safileio.c -------------------------------------------------------------------------------- /libs/shapelib/sbnsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/sbnsearch.c -------------------------------------------------------------------------------- /libs/shapelib/shapefil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/shapefil.h -------------------------------------------------------------------------------- /libs/shapelib/shapelib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/shapelib.pc.in -------------------------------------------------------------------------------- /libs/shapelib/shpadd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/shpadd.c -------------------------------------------------------------------------------- /libs/shapelib/shpcreate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/shpcreate.c -------------------------------------------------------------------------------- /libs/shapelib/shpdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/shpdump.c -------------------------------------------------------------------------------- /libs/shapelib/shpopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/shpopen.c -------------------------------------------------------------------------------- /libs/shapelib/shprewind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/shprewind.c -------------------------------------------------------------------------------- /libs/shapelib/shptest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/shptest.c -------------------------------------------------------------------------------- /libs/shapelib/shptree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/shptree.c -------------------------------------------------------------------------------- /libs/shapelib/shptreedump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/shptreedump.c -------------------------------------------------------------------------------- /libs/shapelib/shputils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/shputils.c -------------------------------------------------------------------------------- /libs/shapelib/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/test-driver -------------------------------------------------------------------------------- /libs/shapelib/tests/stream1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/tests/stream1.out -------------------------------------------------------------------------------- /libs/shapelib/tests/test1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/tests/test1.sh -------------------------------------------------------------------------------- /libs/shapelib/tests/test2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/tests/test2.sh -------------------------------------------------------------------------------- /libs/shapelib/tests/test3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/tests/test3.sh -------------------------------------------------------------------------------- /libs/shapelib/web/codepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/web/codepage.html -------------------------------------------------------------------------------- /libs/shapelib/web/dbf_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/web/dbf_api.html -------------------------------------------------------------------------------- /libs/shapelib/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/web/index.html -------------------------------------------------------------------------------- /libs/shapelib/web/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/web/license.html -------------------------------------------------------------------------------- /libs/shapelib/web/manifest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/web/manifest.html -------------------------------------------------------------------------------- /libs/shapelib/web/maptools.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/web/maptools.css -------------------------------------------------------------------------------- /libs/shapelib/web/release.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/web/release.html -------------------------------------------------------------------------------- /libs/shapelib/web/shp_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/shapelib/web/shp_api.html -------------------------------------------------------------------------------- /libs/thirdParty/fetchUpstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/thirdParty/fetchUpstream -------------------------------------------------------------------------------- /libs/zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /libs/zlib/windows/include/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/zlib/windows/include/zconf.h -------------------------------------------------------------------------------- /libs/zlib/windows/include/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/libs/zlib/windows/include/zlib.h -------------------------------------------------------------------------------- /libs/zlib/windows/lib/README: -------------------------------------------------------------------------------- 1 | Prebuilt version comes from here: http://www.winimage.com/zLibDll/ -------------------------------------------------------------------------------- /qgcimages.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/qgcimages.qrc -------------------------------------------------------------------------------- /qgcresources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/qgcresources.qrc -------------------------------------------------------------------------------- /qgroundcontrol.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/qgroundcontrol.pro -------------------------------------------------------------------------------- /qgroundcontrol.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/qgroundcontrol.qrc -------------------------------------------------------------------------------- /qmlglsink.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/qmlglsink.pri -------------------------------------------------------------------------------- /qt5.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/qt5.natvis -------------------------------------------------------------------------------- /resources/Antenna_RC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/Antenna_RC.svg -------------------------------------------------------------------------------- /resources/Antenna_T.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/Antenna_T.svg -------------------------------------------------------------------------------- /resources/ArrowDown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/ArrowDown.svg -------------------------------------------------------------------------------- /resources/ArrowRight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/ArrowRight.svg -------------------------------------------------------------------------------- /resources/BingNoTileBytes.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/BingNoTileBytes.dat -------------------------------------------------------------------------------- /resources/CogWheels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/CogWheels.png -------------------------------------------------------------------------------- /resources/DropArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/DropArrow.svg -------------------------------------------------------------------------------- /resources/JoystickBezel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/JoystickBezel.png -------------------------------------------------------------------------------- /resources/JoystickBezelLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/JoystickBezelLight.png -------------------------------------------------------------------------------- /resources/LockClosed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/LockClosed.svg -------------------------------------------------------------------------------- /resources/LockOpen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/LockOpen.svg -------------------------------------------------------------------------------- /resources/PatternCamera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/PatternCamera.png -------------------------------------------------------------------------------- /resources/PatternGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/PatternGrid.png -------------------------------------------------------------------------------- /resources/PatternPresets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/PatternPresets.png -------------------------------------------------------------------------------- /resources/PatternTerrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/PatternTerrain.png -------------------------------------------------------------------------------- /resources/Pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/Pause.svg -------------------------------------------------------------------------------- /resources/Play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/Play.svg -------------------------------------------------------------------------------- /resources/PowerButton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/PowerButton.svg -------------------------------------------------------------------------------- /resources/QGCLogoArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/QGCLogoArrow.svg -------------------------------------------------------------------------------- /resources/QGCLogoBlack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/QGCLogoBlack.svg -------------------------------------------------------------------------------- /resources/QGCLogoFull.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/QGCLogoFull.svg -------------------------------------------------------------------------------- /resources/QGCLogoWhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/QGCLogoWhite.svg -------------------------------------------------------------------------------- /resources/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/SplashScreen.png -------------------------------------------------------------------------------- /resources/Stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/Stop.svg -------------------------------------------------------------------------------- /resources/TrashDelete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/TrashDelete.svg -------------------------------------------------------------------------------- /resources/XDelete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/XDelete.svg -------------------------------------------------------------------------------- /resources/XDeleteBlack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/XDeleteBlack.svg -------------------------------------------------------------------------------- /resources/action.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/action.svg -------------------------------------------------------------------------------- /resources/audio/alert.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/audio/alert.wav -------------------------------------------------------------------------------- /resources/buttonLeft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/buttonLeft.svg -------------------------------------------------------------------------------- /resources/buttonRight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/buttonRight.svg -------------------------------------------------------------------------------- /resources/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/camera.svg -------------------------------------------------------------------------------- /resources/cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/cancel.svg -------------------------------------------------------------------------------- /resources/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/check.svg -------------------------------------------------------------------------------- /resources/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/chevron-down.svg -------------------------------------------------------------------------------- /resources/chevron-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/chevron-up.svg -------------------------------------------------------------------------------- /resources/clockwise-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/clockwise-arrow.svg -------------------------------------------------------------------------------- /resources/firmware/3drradio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/firmware/3drradio.png -------------------------------------------------------------------------------- /resources/firmware/apm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/firmware/apm.png -------------------------------------------------------------------------------- /resources/firmware/px4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/firmware/px4.png -------------------------------------------------------------------------------- /resources/gear-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/gear-black.svg -------------------------------------------------------------------------------- /resources/gear-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/gear-white.svg -------------------------------------------------------------------------------- /resources/helicoptericon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/helicoptericon.svg -------------------------------------------------------------------------------- /resources/icons/macx.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/icons/macx.icns -------------------------------------------------------------------------------- /resources/land.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/land.svg -------------------------------------------------------------------------------- /resources/layout-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/layout-bottom.svg -------------------------------------------------------------------------------- /resources/layout-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/layout-right.svg -------------------------------------------------------------------------------- /resources/notile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/notile.png -------------------------------------------------------------------------------- /resources/opengl/buglist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/opengl/buglist.json -------------------------------------------------------------------------------- /resources/pause-mission.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/pause-mission.svg -------------------------------------------------------------------------------- /resources/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/pencil.svg -------------------------------------------------------------------------------- /resources/rtl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/rtl.svg -------------------------------------------------------------------------------- /resources/takeoff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/takeoff.svg -------------------------------------------------------------------------------- /resources/waves.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/waves.svg -------------------------------------------------------------------------------- /resources/waypoint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/waypoint.svg -------------------------------------------------------------------------------- /resources/wind-guru.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/wind-guru.svg -------------------------------------------------------------------------------- /resources/wind-rose-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/wind-rose-arrow.svg -------------------------------------------------------------------------------- /resources/wind-rose.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/wind-rose.svg -------------------------------------------------------------------------------- /resources/wind-roseBlack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/resources/wind-roseBlack.svg -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /src/ADSB/ADSBVehicle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ADSB/ADSBVehicle.cc -------------------------------------------------------------------------------- /src/ADSB/ADSBVehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ADSB/ADSBVehicle.h -------------------------------------------------------------------------------- /src/ADSB/ADSBVehicleManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ADSB/ADSBVehicleManager.cc -------------------------------------------------------------------------------- /src/ADSB/ADSBVehicleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ADSB/ADSBVehicleManager.h -------------------------------------------------------------------------------- /src/ADSB/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ADSB/CMakeLists.txt -------------------------------------------------------------------------------- /src/Airmap/AirMapFlightManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/AirMapFlightManager.cc -------------------------------------------------------------------------------- /src/Airmap/AirMapFlightManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/AirMapFlightManager.h -------------------------------------------------------------------------------- /src/Airmap/AirMapManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/AirMapManager.cc -------------------------------------------------------------------------------- /src/Airmap/AirMapManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/AirMapManager.h -------------------------------------------------------------------------------- /src/Airmap/AirMapSettings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/AirMapSettings.cc -------------------------------------------------------------------------------- /src/Airmap/AirMapSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/AirMapSettings.h -------------------------------------------------------------------------------- /src/Airmap/AirMapSharedState.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/AirMapSharedState.cc -------------------------------------------------------------------------------- /src/Airmap/AirMapSharedState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/AirMapSharedState.h -------------------------------------------------------------------------------- /src/Airmap/AirMapTelemetry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/AirMapTelemetry.cc -------------------------------------------------------------------------------- /src/Airmap/AirMapTelemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/AirMapTelemetry.h -------------------------------------------------------------------------------- /src/Airmap/AirMapTrafficMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/AirMapTrafficMonitor.h -------------------------------------------------------------------------------- /src/Airmap/AirMapVehicleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/AirMapVehicleManager.h -------------------------------------------------------------------------------- /src/Airmap/AirmapSettings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/AirmapSettings.qml -------------------------------------------------------------------------------- /src/Airmap/AirspaceControl.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/AirspaceControl.qml -------------------------------------------------------------------------------- /src/Airmap/AirspaceRegulation.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/AirspaceRegulation.qml -------------------------------------------------------------------------------- /src/Airmap/AirspaceWeather.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/AirspaceWeather.qml -------------------------------------------------------------------------------- /src/Airmap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/CMakeLists.txt -------------------------------------------------------------------------------- /src/Airmap/ComplianceRules.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/ComplianceRules.qml -------------------------------------------------------------------------------- /src/Airmap/FlightBrief.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/FlightBrief.qml -------------------------------------------------------------------------------- /src/Airmap/FlightDetails.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/FlightDetails.qml -------------------------------------------------------------------------------- /src/Airmap/FlightFeature.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/FlightFeature.qml -------------------------------------------------------------------------------- /src/Airmap/LifetimeChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/LifetimeChecker.h -------------------------------------------------------------------------------- /src/Airmap/README.md: -------------------------------------------------------------------------------- 1 | ## Work in Progress 2 | 3 | -------------------------------------------------------------------------------- /src/Airmap/RuleSelector.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/RuleSelector.qml -------------------------------------------------------------------------------- /src/Airmap/airmap.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/airmap.qrc -------------------------------------------------------------------------------- /src/Airmap/dummy/AirspaceRegulation.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2.3 2 | Item { 3 | } 4 | -------------------------------------------------------------------------------- /src/Airmap/dummy/AirspaceWeather.qml: -------------------------------------------------------------------------------- 1 | import QtQuick 2.3 2 | Item { 3 | property var iconHeight: 0 4 | } 5 | -------------------------------------------------------------------------------- /src/Airmap/dummy/FlightBrief.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/dummy/FlightBrief.qml -------------------------------------------------------------------------------- /src/Airmap/dummy/RuleSelector.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/dummy/RuleSelector.qml -------------------------------------------------------------------------------- /src/Airmap/dummy/airmap_dummy.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/dummy/airmap_dummy.qrc -------------------------------------------------------------------------------- /src/Airmap/images/colapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/images/colapse.svg -------------------------------------------------------------------------------- /src/Airmap/images/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/images/expand.svg -------------------------------------------------------------------------------- /src/Airmap/images/pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/images/pencil.svg -------------------------------------------------------------------------------- /src/Airmap/images/right-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/images/right-arrow.svg -------------------------------------------------------------------------------- /src/Airmap/images/unavailable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/images/unavailable.svg -------------------------------------------------------------------------------- /src/Airmap/services/advisory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/services/advisory.cpp -------------------------------------------------------------------------------- /src/Airmap/services/advisory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/services/advisory.h -------------------------------------------------------------------------------- /src/Airmap/services/aircrafts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/services/aircrafts.cpp -------------------------------------------------------------------------------- /src/Airmap/services/aircrafts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/services/aircrafts.h -------------------------------------------------------------------------------- /src/Airmap/services/airspaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/services/airspaces.cpp -------------------------------------------------------------------------------- /src/Airmap/services/airspaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/services/airspaces.h -------------------------------------------------------------------------------- /src/Airmap/services/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/services/client.cpp -------------------------------------------------------------------------------- /src/Airmap/services/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/services/client.h -------------------------------------------------------------------------------- /src/Airmap/services/dispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/services/dispatcher.h -------------------------------------------------------------------------------- /src/Airmap/services/flights.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/services/flights.cpp -------------------------------------------------------------------------------- /src/Airmap/services/flights.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/services/flights.h -------------------------------------------------------------------------------- /src/Airmap/services/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/services/logger.cpp -------------------------------------------------------------------------------- /src/Airmap/services/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/services/logger.h -------------------------------------------------------------------------------- /src/Airmap/services/pilots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/services/pilots.cpp -------------------------------------------------------------------------------- /src/Airmap/services/pilots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/services/pilots.h -------------------------------------------------------------------------------- /src/Airmap/services/rulesets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/services/rulesets.cpp -------------------------------------------------------------------------------- /src/Airmap/services/rulesets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/services/rulesets.h -------------------------------------------------------------------------------- /src/Airmap/services/status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/services/status.cpp -------------------------------------------------------------------------------- /src/Airmap/services/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/services/status.h -------------------------------------------------------------------------------- /src/Airmap/services/telemetry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/services/telemetry.cpp -------------------------------------------------------------------------------- /src/Airmap/services/telemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/services/telemetry.h -------------------------------------------------------------------------------- /src/Airmap/services/traffic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/services/traffic.cpp -------------------------------------------------------------------------------- /src/Airmap/services/traffic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/services/traffic.h -------------------------------------------------------------------------------- /src/Airmap/services/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/services/types.cpp -------------------------------------------------------------------------------- /src/Airmap/services/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Airmap/services/types.h -------------------------------------------------------------------------------- /src/AnalyzeView/AnalyzePage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/AnalyzeView/AnalyzePage.qml -------------------------------------------------------------------------------- /src/AnalyzeView/AnalyzeView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/AnalyzeView/AnalyzeView.qml -------------------------------------------------------------------------------- /src/AnalyzeView/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/AnalyzeView/CMakeLists.txt -------------------------------------------------------------------------------- /src/AnalyzeView/ExifParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/AnalyzeView/ExifParser.cc -------------------------------------------------------------------------------- /src/AnalyzeView/ExifParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/AnalyzeView/ExifParser.h -------------------------------------------------------------------------------- /src/AnalyzeView/GeoTagIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/AnalyzeView/GeoTagIcon.svg -------------------------------------------------------------------------------- /src/AnalyzeView/GeoTagPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/AnalyzeView/GeoTagPage.qml -------------------------------------------------------------------------------- /src/AnalyzeView/LogDownloadTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/AnalyzeView/LogDownloadTest.h -------------------------------------------------------------------------------- /src/AnalyzeView/PX4LogParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/AnalyzeView/PX4LogParser.cc -------------------------------------------------------------------------------- /src/AnalyzeView/PX4LogParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/AnalyzeView/PX4LogParser.h -------------------------------------------------------------------------------- /src/AnalyzeView/ULogParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/AnalyzeView/ULogParser.cc -------------------------------------------------------------------------------- /src/AnalyzeView/ULogParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/AnalyzeView/ULogParser.h -------------------------------------------------------------------------------- /src/AnalyzeView/VibrationPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/AnalyzeView/VibrationPage.qml -------------------------------------------------------------------------------- /src/Audio/AudioOutput.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Audio/AudioOutput.cc -------------------------------------------------------------------------------- /src/Audio/AudioOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Audio/AudioOutput.h -------------------------------------------------------------------------------- /src/Audio/AudioOutputTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Audio/AudioOutputTest.cc -------------------------------------------------------------------------------- /src/Audio/AudioOutputTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Audio/AudioOutputTest.h -------------------------------------------------------------------------------- /src/Audio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Audio/CMakeLists.txt -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Camera/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Camera/CMakeLists.txt -------------------------------------------------------------------------------- /src/Camera/QGCCameraControl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Camera/QGCCameraControl.cc -------------------------------------------------------------------------------- /src/Camera/QGCCameraControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Camera/QGCCameraControl.h -------------------------------------------------------------------------------- /src/Camera/QGCCameraIO.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Camera/QGCCameraIO.cc -------------------------------------------------------------------------------- /src/Camera/QGCCameraIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Camera/QGCCameraIO.h -------------------------------------------------------------------------------- /src/Camera/QGCCameraManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Camera/QGCCameraManager.cc -------------------------------------------------------------------------------- /src/Camera/QGCCameraManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Camera/QGCCameraManager.h -------------------------------------------------------------------------------- /src/CmdLineOptParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/CmdLineOptParser.cc -------------------------------------------------------------------------------- /src/CmdLineOptParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/CmdLineOptParser.h -------------------------------------------------------------------------------- /src/Compression/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Compression/CMakeLists.txt -------------------------------------------------------------------------------- /src/Compression/QGCLZMA.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Compression/QGCLZMA.cc -------------------------------------------------------------------------------- /src/Compression/QGCLZMA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Compression/QGCLZMA.h -------------------------------------------------------------------------------- /src/Compression/QGCZlib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Compression/QGCZlib.cc -------------------------------------------------------------------------------- /src/Compression/QGCZlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Compression/QGCZlib.h -------------------------------------------------------------------------------- /src/FactSystem/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FactSystem/CMakeLists.txt -------------------------------------------------------------------------------- /src/FactSystem/Fact.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FactSystem/Fact.cc -------------------------------------------------------------------------------- /src/FactSystem/Fact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FactSystem/Fact.h -------------------------------------------------------------------------------- /src/FactSystem/FactGroup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FactSystem/FactGroup.cc -------------------------------------------------------------------------------- /src/FactSystem/FactGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FactSystem/FactGroup.h -------------------------------------------------------------------------------- /src/FactSystem/FactMetaData.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FactSystem/FactMetaData.cc -------------------------------------------------------------------------------- /src/FactSystem/FactMetaData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FactSystem/FactMetaData.h -------------------------------------------------------------------------------- /src/FactSystem/FactSystem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FactSystem/FactSystem.cc -------------------------------------------------------------------------------- /src/FactSystem/FactSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FactSystem/FactSystem.h -------------------------------------------------------------------------------- /src/FactSystem/FactSystemTest.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FactSystem/FactSystemTest.qml -------------------------------------------------------------------------------- /src/FactSystem/ParameterManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FactSystem/ParameterManager.h -------------------------------------------------------------------------------- /src/FactSystem/SettingsFact.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FactSystem/SettingsFact.cc -------------------------------------------------------------------------------- /src/FactSystem/SettingsFact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FactSystem/SettingsFact.h -------------------------------------------------------------------------------- /src/FirmwarePlugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FirmwarePlugin/CMakeLists.txt -------------------------------------------------------------------------------- /src/FlightDisplay/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FlightDisplay/CMakeLists.txt -------------------------------------------------------------------------------- /src/FlightDisplay/FlyView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FlightDisplay/FlyView.qml -------------------------------------------------------------------------------- /src/FlightDisplay/FlyViewMap.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FlightDisplay/FlyViewMap.qml -------------------------------------------------------------------------------- /src/FlightMap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FlightMap/CMakeLists.txt -------------------------------------------------------------------------------- /src/FlightMap/FlightMap.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FlightMap/FlightMap.qml -------------------------------------------------------------------------------- /src/FlightMap/Images/Help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FlightMap/Images/Help.svg -------------------------------------------------------------------------------- /src/FlightMap/Images/Home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FlightMap/Images/Home.svg -------------------------------------------------------------------------------- /src/FlightMap/Images/MapHome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FlightMap/Images/MapHome.svg -------------------------------------------------------------------------------- /src/FlightMap/Images/MapSync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FlightMap/Images/MapSync.svg -------------------------------------------------------------------------------- /src/FlightMap/Images/MapType.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FlightMap/Images/MapType.svg -------------------------------------------------------------------------------- /src/FlightMap/Images/PiP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FlightMap/Images/PiP.svg -------------------------------------------------------------------------------- /src/FlightMap/Images/ZoomPlus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FlightMap/Images/ZoomPlus.svg -------------------------------------------------------------------------------- /src/FlightMap/Images/pipHide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FlightMap/Images/pipHide.svg -------------------------------------------------------------------------------- /src/FlightMap/Images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FlightMap/Images/scale.png -------------------------------------------------------------------------------- /src/FlightMap/Images/sub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FlightMap/Images/sub.png -------------------------------------------------------------------------------- /src/FlightMap/MapScale.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FlightMap/MapScale.qml -------------------------------------------------------------------------------- /src/FollowMe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FollowMe/CMakeLists.txt -------------------------------------------------------------------------------- /src/FollowMe/FollowMe.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FollowMe/FollowMe.cc -------------------------------------------------------------------------------- /src/FollowMe/FollowMe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/FollowMe/FollowMe.h -------------------------------------------------------------------------------- /src/GPS/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/GPS/CMakeLists.txt -------------------------------------------------------------------------------- /src/GPS/GPSManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/GPS/GPSManager.cc -------------------------------------------------------------------------------- /src/GPS/GPSManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/GPS/GPSManager.h -------------------------------------------------------------------------------- /src/GPS/GPSPositionMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/GPS/GPSPositionMessage.h -------------------------------------------------------------------------------- /src/GPS/GPSProvider.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/GPS/GPSProvider.cc -------------------------------------------------------------------------------- /src/GPS/GPSProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/GPS/GPSProvider.h -------------------------------------------------------------------------------- /src/GPS/RTCM/RTCMMavlink.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/GPS/RTCM/RTCMMavlink.cc -------------------------------------------------------------------------------- /src/GPS/RTCM/RTCMMavlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/GPS/RTCM/RTCMMavlink.h -------------------------------------------------------------------------------- /src/GPS/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/GPS/definitions.h -------------------------------------------------------------------------------- /src/GPS/satellite_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/GPS/satellite_info.h -------------------------------------------------------------------------------- /src/GPS/vehicle_gps_position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/GPS/vehicle_gps_position.h -------------------------------------------------------------------------------- /src/Geo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Geo/CMakeLists.txt -------------------------------------------------------------------------------- /src/Geo/Constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Geo/Constants.hpp -------------------------------------------------------------------------------- /src/Geo/MGRS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Geo/MGRS.cpp -------------------------------------------------------------------------------- /src/Geo/MGRS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Geo/MGRS.hpp -------------------------------------------------------------------------------- /src/Geo/Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Geo/Math.cpp -------------------------------------------------------------------------------- /src/Geo/Math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Geo/Math.hpp -------------------------------------------------------------------------------- /src/Geo/PolarStereographic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Geo/PolarStereographic.cpp -------------------------------------------------------------------------------- /src/Geo/PolarStereographic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Geo/PolarStereographic.hpp -------------------------------------------------------------------------------- /src/Geo/QGCGeo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Geo/QGCGeo.cc -------------------------------------------------------------------------------- /src/Geo/QGCGeo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Geo/QGCGeo.h -------------------------------------------------------------------------------- /src/Geo/TransverseMercator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Geo/TransverseMercator.cpp -------------------------------------------------------------------------------- /src/Geo/TransverseMercator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Geo/TransverseMercator.hpp -------------------------------------------------------------------------------- /src/Geo/UTMUPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Geo/UTMUPS.cpp -------------------------------------------------------------------------------- /src/Geo/UTMUPS.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Geo/UTMUPS.hpp -------------------------------------------------------------------------------- /src/Geo/Utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Geo/Utility.cpp -------------------------------------------------------------------------------- /src/Geo/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Geo/Utility.h -------------------------------------------------------------------------------- /src/Geo/Utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Geo/Utility.hpp -------------------------------------------------------------------------------- /src/Joystick/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Joystick/CMakeLists.txt -------------------------------------------------------------------------------- /src/Joystick/Joystick.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Joystick/Joystick.cc -------------------------------------------------------------------------------- /src/Joystick/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Joystick/Joystick.h -------------------------------------------------------------------------------- /src/Joystick/JoystickAndroid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Joystick/JoystickAndroid.cc -------------------------------------------------------------------------------- /src/Joystick/JoystickAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Joystick/JoystickAndroid.h -------------------------------------------------------------------------------- /src/Joystick/JoystickManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Joystick/JoystickManager.cc -------------------------------------------------------------------------------- /src/Joystick/JoystickManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Joystick/JoystickManager.h -------------------------------------------------------------------------------- /src/Joystick/JoystickMavCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Joystick/JoystickMavCommand.h -------------------------------------------------------------------------------- /src/Joystick/JoystickSDL.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Joystick/JoystickSDL.cc -------------------------------------------------------------------------------- /src/Joystick/JoystickSDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Joystick/JoystickSDL.h -------------------------------------------------------------------------------- /src/JsonHelper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/JsonHelper.cc -------------------------------------------------------------------------------- /src/JsonHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/JsonHelper.h -------------------------------------------------------------------------------- /src/KMLDomDocument.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/KMLDomDocument.cc -------------------------------------------------------------------------------- /src/KMLDomDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/KMLDomDocument.h -------------------------------------------------------------------------------- /src/KMLHelper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/KMLHelper.cc -------------------------------------------------------------------------------- /src/KMLHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/KMLHelper.h -------------------------------------------------------------------------------- /src/LogCompressor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/LogCompressor.cc -------------------------------------------------------------------------------- /src/LogCompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/LogCompressor.h -------------------------------------------------------------------------------- /src/Microhard/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Microhard/CMakeLists.txt -------------------------------------------------------------------------------- /src/Microhard/MicrohardHandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Microhard/MicrohardHandler.cc -------------------------------------------------------------------------------- /src/Microhard/MicrohardHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Microhard/MicrohardHandler.h -------------------------------------------------------------------------------- /src/Microhard/MicrohardManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Microhard/MicrohardManager.cc -------------------------------------------------------------------------------- /src/Microhard/MicrohardManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Microhard/MicrohardManager.h -------------------------------------------------------------------------------- /src/Microhard/MicrohardSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Microhard/MicrohardSettings.h -------------------------------------------------------------------------------- /src/MissionManager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/MissionManager/CMakeLists.txt -------------------------------------------------------------------------------- /src/MissionManager/CameraCalc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/MissionManager/CameraCalc.cc -------------------------------------------------------------------------------- /src/MissionManager/CameraCalc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/MissionManager/CameraCalc.h -------------------------------------------------------------------------------- /src/MissionManager/CameraSpec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/MissionManager/CameraSpec.cc -------------------------------------------------------------------------------- /src/MissionManager/CameraSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/MissionManager/CameraSpec.h -------------------------------------------------------------------------------- /src/MissionManager/CogWheel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/MissionManager/CogWheel.svg -------------------------------------------------------------------------------- /src/MissionManager/MissionItem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/MissionManager/MissionItem.cc -------------------------------------------------------------------------------- /src/MissionManager/MissionItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/MissionManager/MissionItem.h -------------------------------------------------------------------------------- /src/MissionManager/PlanCreator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/MissionManager/PlanCreator.cc -------------------------------------------------------------------------------- /src/MissionManager/PlanCreator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/MissionManager/PlanCreator.h -------------------------------------------------------------------------------- /src/MissionManager/PlanManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/MissionManager/PlanManager.cc -------------------------------------------------------------------------------- /src/MissionManager/PlanManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/MissionManager/PlanManager.h -------------------------------------------------------------------------------- /src/MissionManager/QGCMapCircle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/MissionManager/QGCMapCircle.h -------------------------------------------------------------------------------- /src/MissionManager/RallyPoint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/MissionManager/RallyPoint.cc -------------------------------------------------------------------------------- /src/MissionManager/RallyPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/MissionManager/RallyPoint.h -------------------------------------------------------------------------------- /src/MissionManager/Section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/MissionManager/Section.h -------------------------------------------------------------------------------- /src/MissionManager/SectionTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/MissionManager/SectionTest.cc -------------------------------------------------------------------------------- /src/MissionManager/SectionTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/MissionManager/SectionTest.h -------------------------------------------------------------------------------- /src/MissionManager/SpeedSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/MissionManager/SpeedSection.h -------------------------------------------------------------------------------- /src/MobileScreenMgr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/MobileScreenMgr.cc -------------------------------------------------------------------------------- /src/MobileScreenMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/MobileScreenMgr.h -------------------------------------------------------------------------------- /src/MobileScreenMgr.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/MobileScreenMgr.mm -------------------------------------------------------------------------------- /src/PairingManager/QtNFC.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/PairingManager/QtNFC.cc -------------------------------------------------------------------------------- /src/PairingManager/QtNFC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/PairingManager/QtNFC.h -------------------------------------------------------------------------------- /src/PairingManager/aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/PairingManager/aes.cpp -------------------------------------------------------------------------------- /src/PairingManager/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/PairingManager/aes.h -------------------------------------------------------------------------------- /src/PlanView/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/PlanView/CMakeLists.txt -------------------------------------------------------------------------------- /src/PlanView/CameraCalcCamera.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/PlanView/CameraCalcCamera.qml -------------------------------------------------------------------------------- /src/PlanView/CameraCalcGrid.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/PlanView/CameraCalcGrid.qml -------------------------------------------------------------------------------- /src/PlanView/CameraSection.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/PlanView/CameraSection.qml -------------------------------------------------------------------------------- /src/PlanView/GeoFenceEditor.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/PlanView/GeoFenceEditor.qml -------------------------------------------------------------------------------- /src/PlanView/PlanEditToolbar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/PlanView/PlanEditToolbar.qml -------------------------------------------------------------------------------- /src/PlanView/PlanToolBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/PlanView/PlanToolBar.qml -------------------------------------------------------------------------------- /src/PlanView/PlanView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/PlanView/PlanView.qml -------------------------------------------------------------------------------- /src/PlanView/SimpleItemEditor.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/PlanView/SimpleItemEditor.qml -------------------------------------------------------------------------------- /src/PlanView/SurveyItemEditor.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/PlanView/SurveyItemEditor.qml -------------------------------------------------------------------------------- /src/PlanView/SurveyMapVisual.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/PlanView/SurveyMapVisual.qml -------------------------------------------------------------------------------- /src/PlanView/TerrainStatus.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/PlanView/TerrainStatus.qml -------------------------------------------------------------------------------- /src/QGC.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QGC.cc -------------------------------------------------------------------------------- /src/QGC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QGC.h -------------------------------------------------------------------------------- /src/QGCApplication.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QGCApplication.cc -------------------------------------------------------------------------------- /src/QGCApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QGCApplication.h -------------------------------------------------------------------------------- /src/QGCComboBox.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QGCComboBox.cc -------------------------------------------------------------------------------- /src/QGCComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QGCComboBox.h -------------------------------------------------------------------------------- /src/QGCConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QGCConfig.h -------------------------------------------------------------------------------- /src/QGCFileDownload.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QGCFileDownload.cc -------------------------------------------------------------------------------- /src/QGCFileDownload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QGCFileDownload.h -------------------------------------------------------------------------------- /src/QGCLoggingCategory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QGCLoggingCategory.cc -------------------------------------------------------------------------------- /src/QGCLoggingCategory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QGCLoggingCategory.h -------------------------------------------------------------------------------- /src/QGCMapPalette.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QGCMapPalette.cc -------------------------------------------------------------------------------- /src/QGCMapPalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QGCMapPalette.h -------------------------------------------------------------------------------- /src/QGCPalette.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QGCPalette.cc -------------------------------------------------------------------------------- /src/QGCPalette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QGCPalette.h -------------------------------------------------------------------------------- /src/QGCQGeoCoordinate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QGCQGeoCoordinate.cc -------------------------------------------------------------------------------- /src/QGCQGeoCoordinate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QGCQGeoCoordinate.h -------------------------------------------------------------------------------- /src/QGCTemporaryFile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QGCTemporaryFile.cc -------------------------------------------------------------------------------- /src/QGCTemporaryFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QGCTemporaryFile.h -------------------------------------------------------------------------------- /src/QGCToolbox.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QGCToolbox.cc -------------------------------------------------------------------------------- /src/QGCToolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QGCToolbox.h -------------------------------------------------------------------------------- /src/QmlControls/AltModeDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/AltModeDialog.qml -------------------------------------------------------------------------------- /src/QmlControls/AppMessages.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/AppMessages.cc -------------------------------------------------------------------------------- /src/QmlControls/AppMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/AppMessages.h -------------------------------------------------------------------------------- /src/QmlControls/AppMessages.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/AppMessages.qml -------------------------------------------------------------------------------- /src/QmlControls/AutotuneUI.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/AutotuneUI.qml -------------------------------------------------------------------------------- /src/QmlControls/AxisMonitor.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/AxisMonitor.qml -------------------------------------------------------------------------------- /src/QmlControls/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/CMakeLists.txt -------------------------------------------------------------------------------- /src/QmlControls/DeadMouseArea.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/DeadMouseArea.qml -------------------------------------------------------------------------------- /src/QmlControls/DropButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/DropButton.qml -------------------------------------------------------------------------------- /src/QmlControls/DropPanel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/DropPanel.qml -------------------------------------------------------------------------------- /src/QmlControls/FactValueGrid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/FactValueGrid.cc -------------------------------------------------------------------------------- /src/QmlControls/FactValueGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/FactValueGrid.h -------------------------------------------------------------------------------- /src/QmlControls/FileButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/FileButton.qml -------------------------------------------------------------------------------- /src/QmlControls/MAVLinkChart.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/MAVLinkChart.qml -------------------------------------------------------------------------------- /src/QmlControls/PIDTuning.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/PIDTuning.qml -------------------------------------------------------------------------------- /src/QmlControls/QGCButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/QGCButton.qml -------------------------------------------------------------------------------- /src/QmlControls/QGCCheckBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/QGCCheckBox.qml -------------------------------------------------------------------------------- /src/QmlControls/QGCComboBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/QGCComboBox.qml -------------------------------------------------------------------------------- /src/QmlControls/QGCFileDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/QGCFileDialog.qml -------------------------------------------------------------------------------- /src/QmlControls/QGCFlickable.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/QGCFlickable.qml -------------------------------------------------------------------------------- /src/QmlControls/QGCGroupBox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/QGCGroupBox.qml -------------------------------------------------------------------------------- /src/QmlControls/QGCLabel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/QGCLabel.qml -------------------------------------------------------------------------------- /src/QmlControls/QGCListView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/QGCListView.qml -------------------------------------------------------------------------------- /src/QmlControls/QGCMapLabel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/QGCMapLabel.qml -------------------------------------------------------------------------------- /src/QmlControls/QGCMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/QGCMenu.qml -------------------------------------------------------------------------------- /src/QmlControls/QGCMenuItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/QGCMenuItem.qml -------------------------------------------------------------------------------- /src/QmlControls/QGCMouseArea.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/QGCMouseArea.qml -------------------------------------------------------------------------------- /src/QmlControls/QGCPipOverlay.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/QGCPipOverlay.qml -------------------------------------------------------------------------------- /src/QmlControls/QGCPipState.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/QGCPipState.qml -------------------------------------------------------------------------------- /src/QmlControls/QGCSlider.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/QGCSlider.qml -------------------------------------------------------------------------------- /src/QmlControls/QGCSwitch.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/QGCSwitch.qml -------------------------------------------------------------------------------- /src/QmlControls/QGCTabBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/QGCTabBar.qml -------------------------------------------------------------------------------- /src/QmlControls/QGCTabButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/QGCTabButton.qml -------------------------------------------------------------------------------- /src/QmlControls/QGCTextField.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/QGCTextField.qml -------------------------------------------------------------------------------- /src/QmlControls/QGCToolInsets.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/QGCToolInsets.qml -------------------------------------------------------------------------------- /src/QmlControls/QGCViewDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/QGCViewDialog.qml -------------------------------------------------------------------------------- /src/QmlControls/QGroundControl/FactSystem/qmldir: -------------------------------------------------------------------------------- 1 | Module QGroundControl.FactSystem 2 | -------------------------------------------------------------------------------- /src/QmlControls/QGroundControl/Vehicle/qmldir: -------------------------------------------------------------------------------- 1 | Module QGroundControl.Vehicle 2 | -------------------------------------------------------------------------------- /src/QmlControls/QmlTest.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/QmlTest.qml -------------------------------------------------------------------------------- /src/QmlControls/RoundButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/RoundButton.qml -------------------------------------------------------------------------------- /src/QmlControls/ScreenTools.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/ScreenTools.qml -------------------------------------------------------------------------------- /src/QmlControls/SectionHeader.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/SectionHeader.qml -------------------------------------------------------------------------------- /src/QmlControls/SliderSwitch.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/SliderSwitch.qml -------------------------------------------------------------------------------- /src/QmlControls/SubMenuButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/SubMenuButton.qml -------------------------------------------------------------------------------- /src/QmlControls/TerrainProfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/TerrainProfile.cc -------------------------------------------------------------------------------- /src/QmlControls/TerrainProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/TerrainProfile.h -------------------------------------------------------------------------------- /src/QmlControls/ToolStrip.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/ToolStrip.qml -------------------------------------------------------------------------------- /src/QmlControls/ToolStripAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/ToolStripAction.h -------------------------------------------------------------------------------- /src/QmlControls/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QmlControls/arrow-down.png -------------------------------------------------------------------------------- /src/QtLocationPlugin/QGCTileSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/QtLocationPlugin/QGCTileSet.h -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QGeoCodeReply: -------------------------------------------------------------------------------- 1 | #include "qgeocodereply.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QGeoCodingManager: -------------------------------------------------------------------------------- 1 | #include "qgeocodingmanager.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QGeoCodingManagerEngine: -------------------------------------------------------------------------------- 1 | #include "qgeocodingmanagerengine.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QGeoManeuver: -------------------------------------------------------------------------------- 1 | #include "qgeomaneuver.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QGeoRoute: -------------------------------------------------------------------------------- 1 | #include "qgeoroute.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QGeoRouteReply: -------------------------------------------------------------------------------- 1 | #include "qgeoroutereply.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QGeoRouteRequest: -------------------------------------------------------------------------------- 1 | #include "qgeorouterequest.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QGeoRouteSegment: -------------------------------------------------------------------------------- 1 | #include "qgeoroutesegment.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QGeoRoutingManager: -------------------------------------------------------------------------------- 1 | #include "qgeoroutingmanager.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QGeoRoutingManagerEngine: -------------------------------------------------------------------------------- 1 | #include "qgeoroutingmanagerengine.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QGeoServiceProvider: -------------------------------------------------------------------------------- 1 | #include "qgeoserviceprovider.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QGeoServiceProviderFactory: -------------------------------------------------------------------------------- 1 | #include "qgeoserviceproviderfactory.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QLocation: -------------------------------------------------------------------------------- 1 | #include "qlocation.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QPlace: -------------------------------------------------------------------------------- 1 | #include "qplace.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QPlaceAttribute: -------------------------------------------------------------------------------- 1 | #include "qplaceattribute.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QPlaceCategory: -------------------------------------------------------------------------------- 1 | #include "qplacecategory.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QPlaceContactDetail: -------------------------------------------------------------------------------- 1 | #include "qplacecontactdetail.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QPlaceContent: -------------------------------------------------------------------------------- 1 | #include "qplacecontent.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QPlaceContentReply: -------------------------------------------------------------------------------- 1 | #include "qplacecontentreply.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QPlaceContentRequest: -------------------------------------------------------------------------------- 1 | #include "qplacecontentrequest.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QPlaceDetailsReply: -------------------------------------------------------------------------------- 1 | #include "qplacedetailsreply.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QPlaceEditorial: -------------------------------------------------------------------------------- 1 | #include "qplaceeditorial.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QPlaceIcon: -------------------------------------------------------------------------------- 1 | #include "qplaceicon.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QPlaceIdReply: -------------------------------------------------------------------------------- 1 | #include "qplaceidreply.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QPlaceImage: -------------------------------------------------------------------------------- 1 | #include "qplaceimage.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QPlaceManager: -------------------------------------------------------------------------------- 1 | #include "qplacemanager.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QPlaceManagerEngine: -------------------------------------------------------------------------------- 1 | #include "qplacemanagerengine.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QPlaceMatchReply: -------------------------------------------------------------------------------- 1 | #include "qplacematchreply.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QPlaceMatchRequest: -------------------------------------------------------------------------------- 1 | #include "qplacematchrequest.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QPlaceProposedSearchResult: -------------------------------------------------------------------------------- 1 | #include "qplaceproposedsearchresult.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QPlaceRatings: -------------------------------------------------------------------------------- 1 | #include "qplaceratings.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QPlaceReply: -------------------------------------------------------------------------------- 1 | #include "qplacereply.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QPlaceResult: -------------------------------------------------------------------------------- 1 | #include "qplaceresult.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QPlaceReview: -------------------------------------------------------------------------------- 1 | #include "qplacereview.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QPlaceSearchReply: -------------------------------------------------------------------------------- 1 | #include "qplacesearchreply.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QPlaceSearchRequest: -------------------------------------------------------------------------------- 1 | #include "qplacesearchrequest.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QPlaceSearchResult: -------------------------------------------------------------------------------- 1 | #include "qplacesearchresult.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QPlaceSearchSuggestionReply: -------------------------------------------------------------------------------- 1 | #include "qplacesearchsuggestionreply.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QPlaceSupplier: -------------------------------------------------------------------------------- 1 | #include "qplacesupplier.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QPlaceUser: -------------------------------------------------------------------------------- 1 | #include "qplaceuser.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/QtLocationVersion: -------------------------------------------------------------------------------- 1 | #include "qtlocationversion.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/qgeocodereply.h: -------------------------------------------------------------------------------- 1 | #include "../../src/location/maps/qgeocodereply.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/qgeocodingmanager.h: -------------------------------------------------------------------------------- 1 | #include "../../src/location/maps/qgeocodingmanager.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/qgeomaneuver.h: -------------------------------------------------------------------------------- 1 | #include "../../src/location/maps/qgeomaneuver.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/qgeoroute.h: -------------------------------------------------------------------------------- 1 | #include "../../src/location/maps/qgeoroute.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/qgeoroutereply.h: -------------------------------------------------------------------------------- 1 | #include "../../src/location/maps/qgeoroutereply.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/qgeorouterequest.h: -------------------------------------------------------------------------------- 1 | #include "../../src/location/maps/qgeorouterequest.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtLocation/qgeoroutesegment.h: -------------------------------------------------------------------------------- 1 | #include "../../src/location/maps/qgeoroutesegment.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtPositioning/QGeoAddress: -------------------------------------------------------------------------------- 1 | #include "qgeoaddress.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtPositioning/QGeoAreaMonitorInfo: -------------------------------------------------------------------------------- 1 | #include "qgeoareamonitorinfo.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtPositioning/QGeoAreaMonitorSource: -------------------------------------------------------------------------------- 1 | #include "qgeoareamonitorsource.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtPositioning/QGeoCircle: -------------------------------------------------------------------------------- 1 | #include "qgeocircle.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtPositioning/QGeoCoordinate: -------------------------------------------------------------------------------- 1 | #include "qgeocoordinate.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtPositioning/QGeoLocation: -------------------------------------------------------------------------------- 1 | #include "qgeolocation.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtPositioning/QGeoPositionInfo: -------------------------------------------------------------------------------- 1 | #include "qgeopositioninfo.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtPositioning/QGeoPositionInfoSource: -------------------------------------------------------------------------------- 1 | #include "qgeopositioninfosource.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtPositioning/QGeoRectangle: -------------------------------------------------------------------------------- 1 | #include "qgeorectangle.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtPositioning/QGeoSatelliteInfo: -------------------------------------------------------------------------------- 1 | #include "qgeosatelliteinfo.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtPositioning/QGeoSatelliteInfoSource: -------------------------------------------------------------------------------- 1 | #include "qgeosatelliteinfosource.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtPositioning/QGeoShape: -------------------------------------------------------------------------------- 1 | #include "qgeoshape.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtPositioning/QNmeaPositionInfoSource: -------------------------------------------------------------------------------- 1 | #include "qnmeapositioninfosource.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtPositioning/QtPositioningVersion: -------------------------------------------------------------------------------- 1 | #include "qtpositioningversion.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtPositioning/qgeoaddress.h: -------------------------------------------------------------------------------- 1 | #include "../../src/positioning/qgeoaddress.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtPositioning/qgeocircle.h: -------------------------------------------------------------------------------- 1 | #include "../../src/positioning/qgeocircle.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtPositioning/qgeocoordinate.h: -------------------------------------------------------------------------------- 1 | #include "../../src/positioning/qgeocoordinate.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtPositioning/qgeorectangle.h: -------------------------------------------------------------------------------- 1 | #include "../../src/positioning/qgeorectangle.h" 2 | -------------------------------------------------------------------------------- /src/QtLocationPlugin/qtlocation/include/QtPositioning/qgeoshape.h: -------------------------------------------------------------------------------- 1 | #include "../../src/positioning/qgeoshape.h" 2 | -------------------------------------------------------------------------------- /src/RunGuard.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/RunGuard.cc -------------------------------------------------------------------------------- /src/RunGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/RunGuard.h -------------------------------------------------------------------------------- /src/SHPFileHelper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/SHPFileHelper.cc -------------------------------------------------------------------------------- /src/SHPFileHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/SHPFileHelper.h -------------------------------------------------------------------------------- /src/Settings/AppSettings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Settings/AppSettings.cc -------------------------------------------------------------------------------- /src/Settings/AppSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Settings/AppSettings.h -------------------------------------------------------------------------------- /src/Settings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Settings/CMakeLists.txt -------------------------------------------------------------------------------- /src/Settings/FlyViewSettings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Settings/FlyViewSettings.cc -------------------------------------------------------------------------------- /src/Settings/FlyViewSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Settings/FlyViewSettings.h -------------------------------------------------------------------------------- /src/Settings/PlanViewSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Settings/PlanViewSettings.h -------------------------------------------------------------------------------- /src/Settings/RTKSettings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Settings/RTKSettings.cc -------------------------------------------------------------------------------- /src/Settings/RTKSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Settings/RTKSettings.h -------------------------------------------------------------------------------- /src/Settings/SettingsGroup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Settings/SettingsGroup.cc -------------------------------------------------------------------------------- /src/Settings/SettingsGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Settings/SettingsGroup.h -------------------------------------------------------------------------------- /src/Settings/SettingsManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Settings/SettingsManager.cc -------------------------------------------------------------------------------- /src/Settings/SettingsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Settings/SettingsManager.h -------------------------------------------------------------------------------- /src/Settings/UnitsSettings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Settings/UnitsSettings.cc -------------------------------------------------------------------------------- /src/Settings/UnitsSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Settings/UnitsSettings.h -------------------------------------------------------------------------------- /src/Settings/VideoSettings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Settings/VideoSettings.cc -------------------------------------------------------------------------------- /src/Settings/VideoSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Settings/VideoSettings.h -------------------------------------------------------------------------------- /src/ShapeFileHelper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ShapeFileHelper.cc -------------------------------------------------------------------------------- /src/ShapeFileHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ShapeFileHelper.h -------------------------------------------------------------------------------- /src/Taisync/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Taisync/CMakeLists.txt -------------------------------------------------------------------------------- /src/Taisync/TaisyncHandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Taisync/TaisyncHandler.cc -------------------------------------------------------------------------------- /src/Taisync/TaisyncHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Taisync/TaisyncHandler.h -------------------------------------------------------------------------------- /src/Taisync/TaisyncManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Taisync/TaisyncManager.cc -------------------------------------------------------------------------------- /src/Taisync/TaisyncManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Taisync/TaisyncManager.h -------------------------------------------------------------------------------- /src/Taisync/TaisyncSettings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Taisync/TaisyncSettings.cc -------------------------------------------------------------------------------- /src/Taisync/TaisyncSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Taisync/TaisyncSettings.h -------------------------------------------------------------------------------- /src/Taisync/TaisyncSettings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Taisync/TaisyncSettings.qml -------------------------------------------------------------------------------- /src/Taisync/TaisyncTelemetry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Taisync/TaisyncTelemetry.cc -------------------------------------------------------------------------------- /src/Taisync/TaisyncTelemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Taisync/TaisyncTelemetry.h -------------------------------------------------------------------------------- /src/Terrain/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Terrain/CMakeLists.txt -------------------------------------------------------------------------------- /src/Terrain/TerrainQuery.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Terrain/TerrainQuery.cc -------------------------------------------------------------------------------- /src/Terrain/TerrainQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Terrain/TerrainQuery.h -------------------------------------------------------------------------------- /src/TerrainTile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/TerrainTile.cc -------------------------------------------------------------------------------- /src/TerrainTile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/TerrainTile.h -------------------------------------------------------------------------------- /src/Vehicle/Actuators/Common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/Actuators/Common.cc -------------------------------------------------------------------------------- /src/Vehicle/Actuators/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/Actuators/Common.h -------------------------------------------------------------------------------- /src/Vehicle/Actuators/Mixer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/Actuators/Mixer.cc -------------------------------------------------------------------------------- /src/Vehicle/Actuators/Mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/Actuators/Mixer.h -------------------------------------------------------------------------------- /src/Vehicle/Autotune.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/Autotune.cpp -------------------------------------------------------------------------------- /src/Vehicle/Autotune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/Autotune.h -------------------------------------------------------------------------------- /src/Vehicle/BatteryFact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/BatteryFact.json -------------------------------------------------------------------------------- /src/Vehicle/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/CMakeLists.txt -------------------------------------------------------------------------------- /src/Vehicle/ClockFact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/ClockFact.json -------------------------------------------------------------------------------- /src/Vehicle/CompInfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/CompInfo.cc -------------------------------------------------------------------------------- /src/Vehicle/CompInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/CompInfo.h -------------------------------------------------------------------------------- /src/Vehicle/CompInfoActuators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/CompInfoActuators.h -------------------------------------------------------------------------------- /src/Vehicle/CompInfoEvents.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/CompInfoEvents.cc -------------------------------------------------------------------------------- /src/Vehicle/CompInfoEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/CompInfoEvents.h -------------------------------------------------------------------------------- /src/Vehicle/CompInfoGeneral.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/CompInfoGeneral.cc -------------------------------------------------------------------------------- /src/Vehicle/CompInfoGeneral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/CompInfoGeneral.h -------------------------------------------------------------------------------- /src/Vehicle/CompInfoParam.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/CompInfoParam.cc -------------------------------------------------------------------------------- /src/Vehicle/CompInfoParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/CompInfoParam.h -------------------------------------------------------------------------------- /src/Vehicle/EventHandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/EventHandler.cc -------------------------------------------------------------------------------- /src/Vehicle/EventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/EventHandler.h -------------------------------------------------------------------------------- /src/Vehicle/FTPManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/FTPManager.cc -------------------------------------------------------------------------------- /src/Vehicle/FTPManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/FTPManager.h -------------------------------------------------------------------------------- /src/Vehicle/FTPManagerTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/FTPManagerTest.cc -------------------------------------------------------------------------------- /src/Vehicle/FTPManagerTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/FTPManagerTest.h -------------------------------------------------------------------------------- /src/Vehicle/GPSFact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/GPSFact.json -------------------------------------------------------------------------------- /src/Vehicle/GPSRTKFact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/GPSRTKFact.json -------------------------------------------------------------------------------- /src/Vehicle/GPSRTKFactGroup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/GPSRTKFactGroup.cc -------------------------------------------------------------------------------- /src/Vehicle/GPSRTKFactGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/GPSRTKFactGroup.h -------------------------------------------------------------------------------- /src/Vehicle/HygrometerFact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/HygrometerFact.json -------------------------------------------------------------------------------- /src/Vehicle/MAVLinkLogManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/MAVLinkLogManager.h -------------------------------------------------------------------------------- /src/Vehicle/SetpointFact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/SetpointFact.json -------------------------------------------------------------------------------- /src/Vehicle/StateMachine.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/StateMachine.cc -------------------------------------------------------------------------------- /src/Vehicle/StateMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/StateMachine.h -------------------------------------------------------------------------------- /src/Vehicle/SubmarineFact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/SubmarineFact.json -------------------------------------------------------------------------------- /src/Vehicle/TerrainFactGroup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/TerrainFactGroup.cc -------------------------------------------------------------------------------- /src/Vehicle/TerrainFactGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/TerrainFactGroup.h -------------------------------------------------------------------------------- /src/Vehicle/TrajectoryPoints.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/TrajectoryPoints.cc -------------------------------------------------------------------------------- /src/Vehicle/TrajectoryPoints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/TrajectoryPoints.h -------------------------------------------------------------------------------- /src/Vehicle/Vehicle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/Vehicle.cc -------------------------------------------------------------------------------- /src/Vehicle/Vehicle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/Vehicle.h -------------------------------------------------------------------------------- /src/Vehicle/VehicleFact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/VehicleFact.json -------------------------------------------------------------------------------- /src/Vehicle/VibrationFact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/VibrationFact.json -------------------------------------------------------------------------------- /src/Vehicle/WindFact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/Vehicle/WindFact.json -------------------------------------------------------------------------------- /src/VehicleSetup/Bootloader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/VehicleSetup/Bootloader.cc -------------------------------------------------------------------------------- /src/VehicleSetup/Bootloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/VehicleSetup/Bootloader.h -------------------------------------------------------------------------------- /src/VehicleSetup/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/VehicleSetup/CMakeLists.txt -------------------------------------------------------------------------------- /src/VehicleSetup/SetupView.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/VehicleSetup/SetupView.qml -------------------------------------------------------------------------------- /src/VideoManager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/VideoManager/CMakeLists.txt -------------------------------------------------------------------------------- /src/VideoManager/VideoManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/VideoManager/VideoManager.h -------------------------------------------------------------------------------- /src/VideoReceiver/GStreamer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/VideoReceiver/GStreamer.cc -------------------------------------------------------------------------------- /src/VideoReceiver/GStreamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/VideoReceiver/GStreamer.h -------------------------------------------------------------------------------- /src/VideoReceiver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/VideoReceiver/README.md -------------------------------------------------------------------------------- /src/VideoReceiver/gstqgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/VideoReceiver/gstqgc.c -------------------------------------------------------------------------------- /src/api/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/api/CMakeLists.txt -------------------------------------------------------------------------------- /src/api/QGCCorePlugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/api/QGCCorePlugin.cc -------------------------------------------------------------------------------- /src/api/QGCCorePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/api/QGCCorePlugin.h -------------------------------------------------------------------------------- /src/api/QGCOptions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/api/QGCOptions.cc -------------------------------------------------------------------------------- /src/api/QGCOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/api/QGCOptions.h -------------------------------------------------------------------------------- /src/api/QGCSettings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/api/QGCSettings.cc -------------------------------------------------------------------------------- /src/api/QGCSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/api/QGCSettings.h -------------------------------------------------------------------------------- /src/api/QmlComponentInfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/api/QmlComponentInfo.cc -------------------------------------------------------------------------------- /src/api/QmlComponentInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/api/QmlComponentInfo.h -------------------------------------------------------------------------------- /src/comm/BluetoothLink.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/BluetoothLink.cc -------------------------------------------------------------------------------- /src/comm/BluetoothLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/BluetoothLink.h -------------------------------------------------------------------------------- /src/comm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/CMakeLists.txt -------------------------------------------------------------------------------- /src/comm/LinkConfiguration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/LinkConfiguration.cc -------------------------------------------------------------------------------- /src/comm/LinkConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/LinkConfiguration.h -------------------------------------------------------------------------------- /src/comm/LinkInterface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/LinkInterface.cc -------------------------------------------------------------------------------- /src/comm/LinkInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/LinkInterface.h -------------------------------------------------------------------------------- /src/comm/LinkManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/LinkManager.cc -------------------------------------------------------------------------------- /src/comm/LinkManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/LinkManager.h -------------------------------------------------------------------------------- /src/comm/LogReplayLink.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/LogReplayLink.cc -------------------------------------------------------------------------------- /src/comm/LogReplayLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/LogReplayLink.h -------------------------------------------------------------------------------- /src/comm/MAVLinkProtocol.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/MAVLinkProtocol.cc -------------------------------------------------------------------------------- /src/comm/MAVLinkProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/MAVLinkProtocol.h -------------------------------------------------------------------------------- /src/comm/MavlinkMessagesTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/MavlinkMessagesTimer.h -------------------------------------------------------------------------------- /src/comm/MockLink.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/MockLink.cc -------------------------------------------------------------------------------- /src/comm/MockLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/MockLink.h -------------------------------------------------------------------------------- /src/comm/MockLinkFTP.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/MockLinkFTP.cc -------------------------------------------------------------------------------- /src/comm/MockLinkFTP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/MockLinkFTP.h -------------------------------------------------------------------------------- /src/comm/MockLinkOptionsDlg.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/MockLinkOptionsDlg.qml -------------------------------------------------------------------------------- /src/comm/PX4MockLink.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/PX4MockLink.params -------------------------------------------------------------------------------- /src/comm/QGCMAVLink.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/QGCMAVLink.cc -------------------------------------------------------------------------------- /src/comm/QGCMAVLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/QGCMAVLink.h -------------------------------------------------------------------------------- /src/comm/QGCSerialPortInfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/QGCSerialPortInfo.cc -------------------------------------------------------------------------------- /src/comm/QGCSerialPortInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/QGCSerialPortInfo.h -------------------------------------------------------------------------------- /src/comm/SerialLink.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/SerialLink.cc -------------------------------------------------------------------------------- /src/comm/SerialLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/SerialLink.h -------------------------------------------------------------------------------- /src/comm/TCPLink.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/TCPLink.cc -------------------------------------------------------------------------------- /src/comm/TCPLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/TCPLink.h -------------------------------------------------------------------------------- /src/comm/UDPLink.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/UDPLink.cc -------------------------------------------------------------------------------- /src/comm/UDPLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/UDPLink.h -------------------------------------------------------------------------------- /src/comm/USBBoardInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/USBBoardInfo.json -------------------------------------------------------------------------------- /src/comm/UdpIODevice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/UdpIODevice.cc -------------------------------------------------------------------------------- /src/comm/UdpIODevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/comm/UdpIODevice.h -------------------------------------------------------------------------------- /src/documentation.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/documentation.dox -------------------------------------------------------------------------------- /src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/main.cc -------------------------------------------------------------------------------- /src/qgcunittest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/qgcunittest/CMakeLists.txt -------------------------------------------------------------------------------- /src/qgcunittest/GeoTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/qgcunittest/GeoTest.cc -------------------------------------------------------------------------------- /src/qgcunittest/GeoTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/qgcunittest/GeoTest.h -------------------------------------------------------------------------------- /src/qgcunittest/UnitTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/qgcunittest/UnitTest.cc -------------------------------------------------------------------------------- /src/qgcunittest/UnitTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/qgcunittest/UnitTest.h -------------------------------------------------------------------------------- /src/qgcunittest/UnitTestList.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/qgcunittest/UnitTestList.cc -------------------------------------------------------------------------------- /src/stable_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/stable_headers.h -------------------------------------------------------------------------------- /src/test.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/test.qml -------------------------------------------------------------------------------- /src/uas/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/uas/CMakeLists.txt -------------------------------------------------------------------------------- /src/uas/UAS.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/uas/UAS.cc -------------------------------------------------------------------------------- /src/uas/UAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/uas/UAS.h -------------------------------------------------------------------------------- /src/uas/UASInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/uas/UASInterface.h -------------------------------------------------------------------------------- /src/uas/UASMessageHandler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/uas/UASMessageHandler.cc -------------------------------------------------------------------------------- /src/uas/UASMessageHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/uas/UASMessageHandler.h -------------------------------------------------------------------------------- /src/ui/AppSettings.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ui/AppSettings.qml -------------------------------------------------------------------------------- /src/ui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ui/CMakeLists.txt -------------------------------------------------------------------------------- /src/ui/ExitWithErrorWindow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ui/ExitWithErrorWindow.qml -------------------------------------------------------------------------------- /src/ui/MainRootWindow.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ui/MainRootWindow.qml -------------------------------------------------------------------------------- /src/ui/QGCPluginHost.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ui/QGCPluginHost.cc -------------------------------------------------------------------------------- /src/ui/QGCPluginHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ui/QGCPluginHost.h -------------------------------------------------------------------------------- /src/ui/QGCPluginHost.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ui/QGCPluginHost.ui -------------------------------------------------------------------------------- /src/ui/QMap3D.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ui/QMap3D.ui -------------------------------------------------------------------------------- /src/ui/preferences/MockLink.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ui/preferences/MockLink.qml -------------------------------------------------------------------------------- /src/ui/toolbar/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ui/toolbar/CMakeLists.txt -------------------------------------------------------------------------------- /src/ui/toolbar/GPSIndicator.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ui/toolbar/GPSIndicator.qml -------------------------------------------------------------------------------- /src/ui/toolbar/Images/Armed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ui/toolbar/Images/Armed.svg -------------------------------------------------------------------------------- /src/ui/toolbar/Images/Gears.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ui/toolbar/Images/Gears.svg -------------------------------------------------------------------------------- /src/ui/toolbar/Images/Gps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ui/toolbar/Images/Gps.svg -------------------------------------------------------------------------------- /src/ui/toolbar/Images/Plan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ui/toolbar/Images/Plan.svg -------------------------------------------------------------------------------- /src/ui/toolbar/Images/Quad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ui/toolbar/Images/Quad.svg -------------------------------------------------------------------------------- /src/ui/toolbar/Images/RC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ui/toolbar/Images/RC.svg -------------------------------------------------------------------------------- /src/ui/toolbar/Images/RTK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ui/toolbar/Images/RTK.svg -------------------------------------------------------------------------------- /src/ui/toolbar/Images/Yield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ui/toolbar/Images/Yield.svg -------------------------------------------------------------------------------- /src/ui/toolbar/Images/roi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ui/toolbar/Images/roi.svg -------------------------------------------------------------------------------- /src/ui/toolbar/MainToolBar.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ui/toolbar/MainToolBar.qml -------------------------------------------------------------------------------- /src/ui/toolbar/ROIIndicator.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/src/ui/toolbar/ROIIndicator.qml -------------------------------------------------------------------------------- /test/100Waypoints.mission: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/test/100Waypoints.mission -------------------------------------------------------------------------------- /test/800Waypoints.mission: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/test/800Waypoints.mission -------------------------------------------------------------------------------- /test/800Waypoints.waypoints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/test/800Waypoints.waypoints.txt -------------------------------------------------------------------------------- /test/qtlogging.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/test/qtlogging.ini -------------------------------------------------------------------------------- /tools/StripAndTarQtForOSXMin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/tools/StripAndTarQtForOSXMin.sh -------------------------------------------------------------------------------- /tools/StripAndTarQtForiOSMin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/tools/StripAndTarQtForiOSMin.sh -------------------------------------------------------------------------------- /tools/get_xcode_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/tools/get_xcode_version.sh -------------------------------------------------------------------------------- /tools/google_play_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/tools/google_play_upload.py -------------------------------------------------------------------------------- /tools/iosccachecc.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | ccache $IOS_CCACHE_CC "$@" -------------------------------------------------------------------------------- /tools/iosccachecxx.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | ccache $IOS_CCACHE_CXX "$@" -------------------------------------------------------------------------------- /tools/osxrelocator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/tools/osxrelocator.py -------------------------------------------------------------------------------- /tools/patch_qt_for_xcode8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/tools/patch_qt_for_xcode8.sh -------------------------------------------------------------------------------- /tools/qt_ios_xcode8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/tools/qt_ios_xcode8.patch -------------------------------------------------------------------------------- /tools/qt_macos_xcode8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/tools/qt_macos_xcode8.patch -------------------------------------------------------------------------------- /tools/update_android_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/tools/update_android_version.sh -------------------------------------------------------------------------------- /tools/update_ios_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/tools/update_ios_version.sh -------------------------------------------------------------------------------- /translations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/translations/README.md -------------------------------------------------------------------------------- /translations/qgc-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/translations/qgc-json.ts -------------------------------------------------------------------------------- /translations/qgc-lupdate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/translations/qgc-lupdate.sh -------------------------------------------------------------------------------- /translations/qgc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/translations/qgc.ts -------------------------------------------------------------------------------- /translations/qgc_az_AZ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/translations/qgc_az_AZ.ts -------------------------------------------------------------------------------- /translations/qgc_json_az_AZ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/translations/qgc_json_az_AZ.ts -------------------------------------------------------------------------------- /translations/qgc_json_bg_BG.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/translations/qgc_json_bg_BG.ts -------------------------------------------------------------------------------- /translations/qgc_json_de_DE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/translations/qgc_json_de_DE.ts -------------------------------------------------------------------------------- /translations/qgc_json_el_GR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/translations/qgc_json_el_GR.ts -------------------------------------------------------------------------------- /translations/qgc_json_es_ES.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/translations/qgc_json_es_ES.ts -------------------------------------------------------------------------------- /translations/qgc_json_fi_FI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/translations/qgc_json_fi_FI.ts -------------------------------------------------------------------------------- /translations/qgc_json_fr_FR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/translations/qgc_json_fr_FR.ts -------------------------------------------------------------------------------- /translations/qgc_json_he_IL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/translations/qgc_json_he_IL.ts -------------------------------------------------------------------------------- /translations/qgc_json_it_IT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/translations/qgc_json_it_IT.ts -------------------------------------------------------------------------------- /translations/qgc_json_ja_JP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/translations/qgc_json_ja_JP.ts -------------------------------------------------------------------------------- /translations/qgc_json_ko_KR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/translations/qgc_json_ko_KR.ts -------------------------------------------------------------------------------- /translations/qgc_json_nl_NL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/translations/qgc_json_nl_NL.ts -------------------------------------------------------------------------------- /translations/qgc_json_no_NO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/translations/qgc_json_no_NO.ts -------------------------------------------------------------------------------- /translations/qgc_json_pl_PL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/translations/qgc_json_pl_PL.ts -------------------------------------------------------------------------------- /translations/qgc_json_pt_PT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/translations/qgc_json_pt_PT.ts -------------------------------------------------------------------------------- /translations/qgc_json_ru_RU.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/translations/qgc_json_ru_RU.ts -------------------------------------------------------------------------------- /translations/qgc_json_sv_SE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/translations/qgc_json_sv_SE.ts -------------------------------------------------------------------------------- /translations/qgc_json_tr_TR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/translations/qgc_json_tr_TR.ts -------------------------------------------------------------------------------- /translations/qgc_json_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DomenicoPatella/qgroundcontrol/HEAD/translations/qgc_json_zh_CN.ts --------------------------------------------------------------------------------