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
fb9953a2
Commit
fb9953a2
authored
Oct 23, 2017
by
Beat Küng
Browse files
fix LogDownloadController: id is uint16
parent
8a23979e
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/AnalyzeView/LogDownloadController.cc
View file @
fb9953a2
...
...
@@ -453,7 +453,7 @@ LogDownloadController::_findMissingData()
//----------------------------------------------------------------------------------------
void
LogDownloadController
::
_requestLogData
(
uint
8
_t
id
,
uint32_t
offset
,
uint32_t
count
)
LogDownloadController
::
_requestLogData
(
uint
16
_t
id
,
uint32_t
offset
,
uint32_t
count
)
{
if
(
_vehicle
)
{
//-- APM "Fix"
...
...
src/AnalyzeView/LogDownloadController.h
View file @
fb9953a2
...
...
@@ -154,7 +154,7 @@ private:
void
_resetSelection
(
bool
canceled
=
false
);
void
_findMissingData
();
void
_requestLogList
(
uint32_t
start
,
uint32_t
end
);
void
_requestLogData
(
uint
8
_t
id
,
uint32_t
offset
=
0
,
uint32_t
count
=
0xFFFFFFFF
);
void
_requestLogData
(
uint
16
_t
id
,
uint32_t
offset
=
0
,
uint32_t
count
=
0xFFFFFFFF
);
bool
_prepareLogDownload
();
void
_setDownloading
(
bool
active
);
void
_setListing
(
bool
active
);
...
...
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