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
4488d440
Commit
4488d440
authored
Aug 13, 2015
by
Eddy Scott
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stock variances from nominal flight
parent
5b79aa21
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
13 deletions
+15
-13
UAS.cc
src/uas/UAS.cc
+15
-13
No files found.
src/uas/UAS.cc
View file @
4488d440
...
...
@@ -147,19 +147,21 @@ UAS::UAS(MAVLinkProtocol* protocol, int id) : UASInterface(),
receivedMode
(
false
),
// Initialize HIL sensor noise variances to 0. If user wants corrupted sensor values they will need to set them
xacc_var
(
0.0
),
yacc_var
(
0.0
),
zacc_var
(
0.0
),
rollspeed_var
(
0.0
),
pitchspeed_var
(
0.0
),
yawspeed_var
(
0.0
),
xmag_var
(
0.0
),
ymag_var
(
0.0
),
zmag_var
(
0.0
),
abs_pressure_var
(
0.0
),
diff_pressure_var
(
0.0
),
pressure_alt_var
(
0.0
),
temperature_var
(
0.0
),
// Note variances calculated from flight case from this log: http://dash.oznet.ch/view/MRjW8NUNYQSuSZkbn8dEjY
// TODO: calibrate stand-still pixhawk variances
xacc_var
(
1.2914
),
yacc_var
(
0.7048
),
zacc_var
(
1.9577
),
rollspeed_var
(
0.8126
),
pitchspeed_var
(
0.6145
),
yawspeed_var
(
0.5852
),
xmag_var
(
0.4786
),
ymag_var
(
0.4566
),
zmag_var
(
0.3333
),
abs_pressure_var
(
1.1604
),
diff_pressure_var
(
1.1604
),
pressure_alt_var
(
1.1604
),
temperature_var
(
1.4290
),
#ifndef __mobile__
simulation
(
0
),
...
...
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