AHRS: enable AHRS_ group in ArduPlane

This commit is contained in:
Andrew Tridgell 2012-04-16 20:52:02 +10:00
parent a9de75156b
commit 6332c09425
2 changed files with 3 additions and 1 deletions

View File

@ -84,6 +84,7 @@ public:
k_param_airspeed_offset, k_param_airspeed_offset,
k_param_sonar_enabled, k_param_sonar_enabled,
k_param_airspeed_enabled, k_param_airspeed_enabled,
k_param_ahrs, // AHRS group
// //
// 150: Navigation parameters // 150: Navigation parameters

View File

@ -125,7 +125,8 @@ static const AP_Param::Info var_info[] PROGMEM = {
GOBJECT(compass, "COMPASS_", Compass), GOBJECT(compass, "COMPASS_", Compass),
GOBJECT(gcs0, "SR0_", GCS_MAVLINK), GOBJECT(gcs0, "SR0_", GCS_MAVLINK),
GOBJECT(gcs3, "SR3_", GCS_MAVLINK), GOBJECT(gcs3, "SR3_", GCS_MAVLINK),
GOBJECT(imu, "IMU_", IMU) GOBJECT(imu, "IMU_", IMU),
GOBJECT(ahrs, "AHRS_", AP_AHRS)
}; };