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
2eeb79f3
Commit
2eeb79f3
authored
Sep 07, 2012
by
Lorenz Meier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Catching NaNs and Inf in HUD
parent
6228c751
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
4 deletions
+10
-4
HUD.cc
src/ui/HUD.cc
+10
-4
No files found.
src/ui/HUD.cc
View file @
2eeb79f3
...
...
@@ -314,16 +314,22 @@ void HUD::updateAttitude(UASInterface* uas, double roll, double pitch, double ya
{
Q_UNUSED
(
uas
);
Q_UNUSED
(
timestamp
);
this
->
roll
=
roll
;
this
->
pitch
=
pitch
*
3.35
f
;
// Constant here is the 'focal length' of the projection onto the plane
this
->
yaw
=
yaw
;
if
(
!
isnan
(
roll
)
&&
!
isinf
(
roll
)
&&
!
isnan
(
pitch
)
&&
!
isinf
(
pitch
)
&&
!
isnan
(
yaw
)
&&
!
isinf
(
yaw
))
{
this
->
roll
=
roll
;
this
->
pitch
=
pitch
*
3.35
f
;
// Constant here is the 'focal length' of the projection onto the plane
this
->
yaw
=
yaw
;
}
}
void
HUD
::
updateAttitude
(
UASInterface
*
uas
,
int
component
,
double
roll
,
double
pitch
,
double
yaw
,
quint64
timestamp
)
{
Q_UNUSED
(
uas
);
Q_UNUSED
(
timestamp
);
attitudes
.
insert
(
component
,
QVector3D
(
roll
,
pitch
*
3.35
f
,
yaw
));
// Constant here is the 'focal length' of the projection onto the plane
if
(
!
isnan
(
roll
)
&&
!
isinf
(
roll
)
&&
!
isnan
(
pitch
)
&&
!
isinf
(
pitch
)
&&
!
isnan
(
yaw
)
&&
!
isinf
(
yaw
))
{
attitudes
.
insert
(
component
,
QVector3D
(
roll
,
pitch
*
3.35
f
,
yaw
));
// Constant here is the 'focal length' of the projection onto the plane
}
}
void
HUD
::
updateBattery
(
UASInterface
*
uas
,
double
voltage
,
double
percent
,
int
seconds
)
...
...
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