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
7482fc07
Commit
7482fc07
authored
13 years ago
by
Andrew Tridgell
Browse files
Options
Downloads
Patches
Plain Diff
AHRS: fixed VARTest for new AHRS framework
parent
690ad58a
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
Tools/VARTest/VARTest.pde
+3
-2
3 additions, 2 deletions
Tools/VARTest/VARTest.pde
with
3 additions
and
2 deletions
Tools/VARTest/VARTest.pde
+
3
−
2
View file @
7482fc07
...
...
@@ -15,7 +15,7 @@
#include
<SPI.h>
// Arduino SPI lib
#include
<I2C.h>
#include
<DataFlash.h>
#include
<AP_
DCM
.h>
#include
<AP_
AHRS
.h>
#include
<AP_ADC.h>
#include
<AP_Baro.h>
#include
<Filter.h>
...
...
@@ -25,6 +25,7 @@
#include
<AP_IMU.h>
// ArduPilot Mega IMU Library
#include
<AP_GPS.h>
#include
<AP_Math.h>
#include
<GCS_MAVLink.h>
#include
<config.h>
#include
<Parameters.h>
...
...
@@ -43,7 +44,7 @@ AP_GPS_Auto g_gps_driver(&Serial1, &g_gps);
AP_InertialSensor_Oilpan
ins
(
&
adc
);
#endif // CONFIG_IMU_TYPE
AP_IMU_INS
imu
(
&
ins
);
AP_DCM
dcm
(
&
imu
,
g_gps
);
AP_
AHRS_
DCM
ahrs
(
&
imu
,
g_gps
);
Arduino_Mega_ISR_Registry
isr_registry
;
#ifdef DESKTOP_BUILD
...
...
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