Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
940a87b5
Commit
940a87b5
authored
Dec 14, 2016
by
Gus Grubba
Committed by
GitHub
Dec 14, 2016
Browse files
Merge pull request #4319 from bkueng/disable_automatic_logstreaming
MAVLinkLogManager: disable automatic start of log streaming
parents
39dbb7aa
5db16aec
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/Vehicle/MAVLinkLogManager.cc
View file @
940a87b5
...
...
@@ -298,7 +298,7 @@ MAVLinkLogProcessor::processStreamData(uint16_t sequence, uint8_t first_message,
MAVLinkLogManager
::
MAVLinkLogManager
(
QGCApplication
*
app
)
:
QGCTool
(
app
)
,
_enableAutoUpload
(
true
)
,
_enableAutoStart
(
tru
e
)
,
_enableAutoStart
(
fals
e
)
,
_nam
(
NULL
)
,
_currentLogfile
(
NULL
)
,
_vehicle
(
NULL
)
...
...
@@ -317,7 +317,7 @@ MAVLinkLogManager::MAVLinkLogManager(QGCApplication* app)
setUploadURL
(
settings
.
value
(
kPx4URLKey
,
QString
(
kDefaultPx4URL
)).
toString
());
setVideoURL
(
settings
.
value
(
kVideoURLKey
,
QString
()).
toString
());
setEnableAutoUpload
(
settings
.
value
(
kEnableAutoUploadKey
,
true
).
toBool
());
setEnableAutoStart
(
settings
.
value
(
kEnableAutoStartKey
,
tru
e
).
toBool
());
setEnableAutoStart
(
settings
.
value
(
kEnableAutoStartKey
,
fals
e
).
toBool
());
setDeleteAfterUpload
(
settings
.
value
(
kEnableDeletetKey
,
false
).
toBool
());
setWindSpeed
(
settings
.
value
(
kWindSpeedKey
,
-
1
).
toInt
());
setRating
(
settings
.
value
(
kRateKey
,
"notset"
).
toString
());
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment