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
fb9953a2
Commit
fb9953a2
authored
7 years ago
by
Beat Küng
Browse files
Options
Downloads
Patches
Plain Diff
fix LogDownloadController: id is uint16
parent
8a23979e
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
src/AnalyzeView/LogDownloadController.cc
+1
-1
1 addition, 1 deletion
src/AnalyzeView/LogDownloadController.cc
src/AnalyzeView/LogDownloadController.h
+1
-1
1 addition, 1 deletion
src/AnalyzeView/LogDownloadController.h
with
2 additions
and
2 deletions
src/AnalyzeView/LogDownloadController.cc
+
1
−
1
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"
...
...
This diff is collapsed.
Click to expand it.
src/AnalyzeView/LogDownloadController.h
+
1
−
1
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
);
...
...
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