Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
qgroundcontrol
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Valentin Platzgummer
qgroundcontrol
Commits
2f291f28
Commit
2f291f28
authored
7 years ago
by
Gus Grubba
Browse files
Options
Downloads
Patches
Plain Diff
Allow pseudo mobile builds (Native QML on Desktop)
parent
8033f575
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
qgroundcontrol.pro
+6
-4
6 additions, 4 deletions
qgroundcontrol.pro
src/comm/LinkManager.cc
+2
-0
2 additions, 0 deletions
src/comm/LinkManager.cc
with
8 additions
and
4 deletions
qgroundcontrol.pro
+
6
−
4
View file @
2f291f28
...
@@ -233,7 +233,9 @@ QT += \
...
@@ -233,7 +233,9 @@ QT += \
multimedia
multimedia
}
}
!
MobileBuild
{
AndroidBuild
||
iOSBuild
{
#
Android
and
iOS
don't unclude these
} else {
QT += \
QT += \
printsupport \
printsupport \
serialport \
serialport \
...
...
This diff is collapsed.
Click to expand it.
src/comm/LinkManager.cc
+
2
−
0
View file @
2f291f28
...
@@ -613,11 +613,13 @@ void LinkManager::_updateAutoConnectLinks(void)
...
@@ -613,11 +613,13 @@ void LinkManager::_updateAutoConnectLinks(void)
}
}
// Check for RTK GPS connection gone
// Check for RTK GPS connection gone
#if !defined(__mobile__)
if
(
!
_autoConnectRTKPort
.
isEmpty
()
&&
!
currentPorts
.
contains
(
_autoConnectRTKPort
))
{
if
(
!
_autoConnectRTKPort
.
isEmpty
()
&&
!
currentPorts
.
contains
(
_autoConnectRTKPort
))
{
qCDebug
(
LinkManagerLog
)
<<
"RTK GPS disconnected"
<<
_autoConnectRTKPort
;
qCDebug
(
LinkManagerLog
)
<<
"RTK GPS disconnected"
<<
_autoConnectRTKPort
;
_toolbox
->
gpsManager
()
->
disconnectGPS
();
_toolbox
->
gpsManager
()
->
disconnectGPS
();
_autoConnectRTKPort
.
clear
();
_autoConnectRTKPort
.
clear
();
}
}
#endif
#endif
#endif
#endif // NO_SERIAL_LINK
#endif // NO_SERIAL_LINK
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment