Copter: add EKF params to full param list

This commit is contained in:
Randy Mackay 2014-02-21 13:51:22 +09:00
parent 98bdbb7fed
commit d992483bf5
2 changed files with 8 additions and 1 deletions

View File

@ -97,7 +97,8 @@ public:
k_param_fs_batt_mah,
k_param_angle_rate_max, // remove
k_param_rssi_range,
k_param_rc_feel_rp, // 40
k_param_rc_feel_rp,
k_param_NavEKF, // 41 - Extended Kalman Filter Inertial Navigation Group
// 65: AP_Limits Library
k_param_limits = 65, // deprecated - remove

View File

@ -1011,6 +1011,12 @@ const AP_Param::Info var_info[] PROGMEM = {
// @Path: ../libraries/AP_RCMapper/AP_RCMapper.cpp
GOBJECT(rcmap, "RCMAP_", RCMapper),
#if AP_AHRS_NAVEKF_AVAILABLE
// @Group: EKF_
// @Path: ../libraries/AP_NavEKF/AP_NavEKF.cpp
GOBJECTN(ahrs.get_NavEKF(), NavEKF, "EKF_", NavEKF),
#endif
AP_VAREND
};