Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
Firmware
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
Package Registry
Model registry
Operate
Environments
Terraform modules
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alberto Ruiz Garcia
Firmware
Commits
6bb03f36
Commit
6bb03f36
authored
8 years ago
by
Michael Schaeuble
Committed by
Julian Oes
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add pitch angle to AK8963 for Bebop
parent
bc44ba29
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
posix-configs/bebop/px4.config
+2
-2
2 additions, 2 deletions
posix-configs/bebop/px4.config
src/lib/conversion/rotation.cpp
+10
-0
10 additions, 0 deletions
src/lib/conversion/rotation.cpp
src/lib/conversion/rotation.h
+2
-0
2 additions, 0 deletions
src/lib/conversion/rotation.h
with
14 additions
and
2 deletions
posix-configs/bebop/px4.config
+
2
−
2
View file @
6bb03f36
...
...
@@ -17,9 +17,9 @@ param set MC_YAWRATE_P 0.05
param
set
MC_YAWRATE_I
0
.
001
param
set
MC_YAWRATE_D
0
.
0
param
set
MC_YAW_FF
0
.
7
#
df_ms5607_wrapper start
df_ms5607_wrapper
start
df_mpu6050_wrapper
start
-
R
8
df_ak8963_wrapper
start
-
R
4
df_ak8963_wrapper
start
-
R
32
sensors
start
commander
start
attitude_estimator_q
start
...
...
This diff is collapsed.
Click to expand it.
src/lib/conversion/rotation.cpp
+
10
−
0
View file @
6bb03f36
...
...
@@ -255,5 +255,15 @@ rotate_3f(enum Rotation rot, float &x, float &y, float &z)
y
=
z
;
z
=
-
tmp
;
return
;
}
case
ROTATION_PITCH_9_YAW_180
:
{
float
tmpx
=
x
;
float
tmpy
=
y
;
float
tmpz
=
z
;
x
=
-
0.987688
f
*
tmpx
+
0.000000
f
*
tmpy
+
-
0.156434
f
*
tmpz
;
y
=
0.000000
f
*
tmpx
+
-
1.000000
f
*
tmpy
+
0.000000
f
*
tmpz
;
z
=
-
0.156434
f
*
tmpx
+
0.000000
f
*
tmpy
+
0.987688
f
*
tmpz
;
return
;
}
}
}
This diff is collapsed.
Click to expand it.
src/lib/conversion/rotation.h
+
2
−
0
View file @
6bb03f36
...
...
@@ -80,6 +80,7 @@ enum Rotation {
ROTATION_PITCH_90_ROLL_90
=
29
,
ROTATION_YAW_293_PITCH_68_ROLL_90
=
30
,
ROTATION_PITCH_90_ROLL_270
=
31
,
ROTATION_PITCH_9_YAW_180
=
32
,
ROTATION_MAX
};
...
...
@@ -122,6 +123,7 @@ const rot_lookup_t rot_lookup[] = {
{
90
,
90
,
0
},
{
90
,
68
,
293
},
{
270
,
90
,
0
},
{
0
,
9
,
180
},
};
/**
...
...
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