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
ef07aecf
Unverified
Commit
ef07aecf
authored
5 years ago
by
Gus Grubba
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #7998 from mavlink/pr-fix-camera-battery
We can only filter by component ID
parents
aa7a4582
e8618672
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Camera/QGCCameraManager.cc
+31
-35
31 additions, 35 deletions
src/Camera/QGCCameraManager.cc
with
31 additions
and
35 deletions
src/Camera/QGCCameraManager.cc
+
31
−
35
View file @
ef07aecf
...
@@ -68,7 +68,8 @@ QGCCameraManager::_vehicleReady(bool ready)
...
@@ -68,7 +68,8 @@ QGCCameraManager::_vehicleReady(bool ready)
void
void
QGCCameraManager
::
_mavlinkMessageReceived
(
const
mavlink_message_t
&
message
)
QGCCameraManager
::
_mavlinkMessageReceived
(
const
mavlink_message_t
&
message
)
{
{
if
(
message
.
sysid
==
_vehicle
->
id
())
{
//-- Only pay attention to camera components, as identified by their compId
if
(
message
.
sysid
==
_vehicle
->
id
()
&&
(
message
.
compid
>=
MAV_COMP_ID_CAMERA
&&
message
.
compid
<=
MAV_COMP_ID_CAMERA6
))
{
switch
(
message
.
msgid
)
{
switch
(
message
.
msgid
)
{
case
MAVLINK_MSG_ID_CAMERA_CAPTURE_STATUS
:
case
MAVLINK_MSG_ID_CAMERA_CAPTURE_STATUS
:
_handleCaptureStatus
(
message
);
_handleCaptureStatus
(
message
);
...
@@ -110,10 +111,6 @@ QGCCameraManager::_handleHeartbeat(const mavlink_message_t &message)
...
@@ -110,10 +111,6 @@ QGCCameraManager::_handleHeartbeat(const mavlink_message_t &message)
{
{
mavlink_heartbeat_t
heartbeat
;
mavlink_heartbeat_t
heartbeat
;
mavlink_msg_heartbeat_decode
(
&
message
,
&
heartbeat
);
mavlink_msg_heartbeat_decode
(
&
message
,
&
heartbeat
);
//-- Only pay attention to camera components, as identified by their MAV_TYPE, and as fallback by their compId
if
(
_vehicleReadyState
&&
_vehicle
->
id
()
==
message
.
sysid
&&
((
heartbeat
.
autopilot
==
MAV_AUTOPILOT_INVALID
&&
heartbeat
.
type
==
MAV_TYPE_CAMERA
)
||
(
message
.
compid
>=
MAV_COMP_ID_CAMERA
&&
message
.
compid
<=
MAV_COMP_ID_CAMERA6
)))
{
//-- First time hearing from this one?
//-- First time hearing from this one?
QString
sCompID
=
QString
::
number
(
message
.
compid
);
QString
sCompID
=
QString
::
number
(
message
.
compid
);
if
(
!
_cameraInfoRequest
.
contains
(
sCompID
))
{
if
(
!
_cameraInfoRequest
.
contains
(
sCompID
))
{
...
@@ -150,7 +147,6 @@ QGCCameraManager::_handleHeartbeat(const mavlink_message_t &message)
...
@@ -150,7 +147,6 @@ QGCCameraManager::_handleHeartbeat(const mavlink_message_t &message)
}
}
}
}
}
}
}
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
QGCCameraControl
*
QGCCameraControl
*
...
...
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