Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
Baitboat
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
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
OpenSource
Baitboat
Commits
5a9211c2
Commit
5a9211c2
authored
13 years ago
by
rmackay9
Browse files
Options
Downloads
Patches
Plain Diff
AP_AHRS: removed var_info from AP_AHRS class (moved to AP_AHRS_DCM)
parent
c2b47d2b
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/AP_AHRS/AP_AHRS.h
+5
-1
5 additions, 1 deletion
libraries/AP_AHRS/AP_AHRS.h
with
5 additions
and
1 deletion
libraries/AP_AHRS/AP_AHRS.h
+
5
−
1
View file @
5a9211c2
...
@@ -39,6 +39,9 @@ public:
...
@@ -39,6 +39,9 @@ public:
_gyro_drift_limit
=
imu
->
get_gyro_drift_rate
();
_gyro_drift_limit
=
imu
->
get_gyro_drift_rate
();
}
}
// empty init
virtual
void
init
()
{};
// Accessors
// Accessors
void
set_fly_forward
(
bool
b
)
{
_fly_forward
=
b
;
}
void
set_fly_forward
(
bool
b
)
{
_fly_forward
=
b
;
}
void
set_compass
(
Compass
*
compass
)
{
_compass
=
compass
;
}
void
set_compass
(
Compass
*
compass
)
{
_compass
=
compass
;
}
...
@@ -84,7 +87,7 @@ public:
...
@@ -84,7 +87,7 @@ public:
// attitude
// attitude
virtual
Matrix3f
get_dcm_matrix
(
void
)
=
0
;
virtual
Matrix3f
get_dcm_matrix
(
void
)
=
0
;
static
const
struct
AP_Param
::
GroupInfo
var_info
[];
//
static const struct AP_Param::GroupInfo var_info[];
protected
:
protected
:
// pointer to compass object, if enabled
// pointer to compass object, if enabled
...
@@ -113,6 +116,7 @@ protected:
...
@@ -113,6 +116,7 @@ protected:
#include
<AP_AHRS_DCM.h>
#include
<AP_AHRS_DCM.h>
#include
<AP_AHRS_Quaternion.h>
#include
<AP_AHRS_Quaternion.h>
#include
<AP_AHRS_MPU6000.h>
#include
<AP_AHRS_HIL.h>
#include
<AP_AHRS_HIL.h>
#endif // AP_AHRS_H
#endif // AP_AHRS_H
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