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
6a75949d
Unverified
Commit
6a75949d
authored
Dec 05, 2017
by
Gus Grubba
Committed by
GitHub
Dec 05, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5868 from mavlink/pseudoMobile
Allow pseudo mobile builds (Native QML on Desktop)
parents
8033f575
2f291f28
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
qgroundcontrol.pro
qgroundcontrol.pro
+6
-4
LinkManager.cc
src/comm/LinkManager.cc
+2
-0
No files found.
qgroundcontrol.pro
View file @
6a75949d
...
@@ -233,10 +233,12 @@ QT += \
...
@@ -233,10 +233,12 @@ QT += \
multimedia
multimedia
}
}
!
MobileBuild
{
AndroidBuild
||
iOSBuild
{
QT
+=
\
#
Android
and
iOS
don't unclude these
printsupport
\
} else {
serialport
\
QT += \
printsupport \
serialport \
}
}
contains(DEFINES, QGC_ENABLE_BLUETOOTH) {
contains(DEFINES, QGC_ENABLE_BLUETOOTH) {
...
...
src/comm/LinkManager.cc
View file @
6a75949d
...
@@ -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
...
...
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