mirror of https://github.com/ArduPilot/ardupilot
AHRS: enable AHRS_ group in ArduPlane
This commit is contained in:
parent
a9de75156b
commit
6332c09425
|
@ -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
|
||||||
|
|
|
@ -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)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue