Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
90741961
Commit
90741961
authored
Apr 20, 2016
by
Beat Küng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gps & rtcm: exclude on MobileBuilds (Qt serialport seems not to be available on Android & iOS)
parent
f2011b30
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
14 deletions
+20
-14
qgroundcontrol.pro
qgroundcontrol.pro
+14
-14
QGCToolbox.cc
src/QGCToolbox.cc
+6
-0
No files found.
qgroundcontrol.pro
View file @
90741961
...
...
@@ -261,15 +261,6 @@ HEADERS += \
src
/
FlightDisplay
/
FlightDisplayViewController
.
h
\
src
/
FlightMap
/
FlightMapSettings
.
h
\
src
/
FlightMap
/
Widgets
/
ValuesWidgetController
.
h
\
src
/
GPS
/
Drivers
/
src
/
gps_helper
.
h
\
src
/
GPS
/
Drivers
/
src
/
ubx
.
h
\
src
/
GPS
/
definitions
.
h
\
src
/
GPS
/
vehicle_gps_position
.
h
\
src
/
GPS
/
satellite_info
.
h
\
src
/
GPS
/
RTCM
/
RTCMMavlink
.
h
\
src
/
GPS
/
GPSManager
.
h
\
src
/
GPS
/
GPSPositionMessage
.
h
\
src
/
GPS
/
GPSProvider
.
h
\
src
/
GAudioOutput
.
h
\
src
/
HomePositionManager
.
h
\
src
/
Joystick
/
Joystick
.
h
\
...
...
@@ -387,6 +378,15 @@ HEADERS += \
src
/
ui
/
uas
/
UASQuickViewItem
.
h
\
src
/
ui
/
uas
/
UASQuickViewItemSelect
.
h
\
src
/
ui
/
uas
/
UASQuickViewTextItem
.
h
\
src
/
GPS
/
Drivers
/
src
/
gps_helper
.
h
\
src
/
GPS
/
Drivers
/
src
/
ubx
.
h
\
src
/
GPS
/
definitions
.
h
\
src
/
GPS
/
vehicle_gps_position
.
h
\
src
/
GPS
/
satellite_info
.
h
\
src
/
GPS
/
RTCM
/
RTCMMavlink
.
h
\
src
/
GPS
/
GPSManager
.
h
\
src
/
GPS
/
GPSPositionMessage
.
h
\
src
/
GPS
/
GPSProvider
.
h
\
src
/
VehicleSetup
/
JoystickConfigController
.
h
\
src
/
ViewWidgets
/
CustomCommandWidget
.
h
\
src
/
ViewWidgets
/
CustomCommandWidgetController
.
h
\
...
...
@@ -416,11 +416,6 @@ SOURCES += \
src
/
FlightDisplay
/
FlightDisplayViewController
.
cc
\
src
/
FlightMap
/
FlightMapSettings
.
cc
\
src
/
FlightMap
/
Widgets
/
ValuesWidgetController
.
cc
\
src
/
GPS
/
Drivers
/
src
/
gps_helper
.
cpp
\
src
/
GPS
/
Drivers
/
src
/
ubx
.
cpp
\
src
/
GPS
/
RTCM
/
RTCMMavlink
.
cc
\
src
/
GPS
/
GPSManager
.
cc
\
src
/
GPS
/
GPSProvider
.
cc
\
src
/
GAudioOutput
.
cc
\
src
/
HomePositionManager
.
cc
\
src
/
Joystick
/
Joystick
.
cc
\
...
...
@@ -526,6 +521,11 @@ SOURCES += \
src
/
ui
/
uas
/
UASQuickViewItem
.
cc
\
src
/
ui
/
uas
/
UASQuickViewItemSelect
.
cc
\
src
/
ui
/
uas
/
UASQuickViewTextItem
.
cc
\
src
/
GPS
/
Drivers
/
src
/
gps_helper
.
cpp
\
src
/
GPS
/
Drivers
/
src
/
ubx
.
cpp
\
src
/
GPS
/
RTCM
/
RTCMMavlink
.
cc
\
src
/
GPS
/
GPSManager
.
cc
\
src
/
GPS
/
GPSProvider
.
cc
\
src
/
VehicleSetup
/
JoystickConfigController
.
cc
\
src
/
ViewWidgets
/
CustomCommandWidget
.
cc
\
src
/
ViewWidgets
/
CustomCommandWidgetController
.
cc
\
...
...
src/QGCToolbox.cc
View file @
90741961
...
...
@@ -26,7 +26,9 @@
#include "FirmwarePluginManager.h"
#include "FlightMapSettings.h"
#include "GAudioOutput.h"
#ifndef __mobile__
#include "GPSManager.h"
#endif
/* __mobile */
#include "HomePositionManager.h"
#include "JoystickManager.h"
#include "LinkManager.h"
...
...
@@ -60,7 +62,9 @@ QGCToolbox::QGCToolbox(QGCApplication* app)
_factSystem
=
new
FactSystem
(
app
);
_firmwarePluginManager
=
new
FirmwarePluginManager
(
app
);
_flightMapSettings
=
new
FlightMapSettings
(
app
);
#ifndef __mobile__
_gpsManager
=
new
GPSManager
(
app
);
#endif
/* __mobile */
_homePositionManager
=
new
HomePositionManager
(
app
);
_imageProvider
=
new
QGCImageProvider
(
app
);
_joystickManager
=
new
JoystickManager
(
app
);
...
...
@@ -77,7 +81,9 @@ QGCToolbox::QGCToolbox(QGCApplication* app)
_factSystem
->
setToolbox
(
this
);
_firmwarePluginManager
->
setToolbox
(
this
);
_flightMapSettings
->
setToolbox
(
this
);
#ifndef __mobile__
_gpsManager
->
setToolbox
(
this
);
#endif
/* __mobile */
_homePositionManager
->
setToolbox
(
this
);
_imageProvider
->
setToolbox
(
this
);
_joystickManager
->
setToolbox
(
this
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment