ArduPilot开源代码之AP_AHRS_Backend

ArduPilot开源代码之AP_AHRS_Backend

  • 1. 源由
  • 2. 类继承关系
  • 3. 框架设计
    • 2.1 构造函数和析构函数
    • 2.2 不可复制
    • 2.3 嵌套结构和枚举
    • 2.4 虚方法
    • 2.5 静态方法
    • 2.6 实用方法
    • 2.7 纯虚方法
    • 2.8 条件编译
  • 3. 虚方法设计
    • 3.1 初始化
      • 3.1.1 构造函数
      • 3.1.2 析构函数
      • 3.1.3 AP_AHRS_Backend::init
    • 3.2 IMU传感
      • 3.2.1 AP_AHRS_Backend::get_primary_core_index
      • 3.2.2 AP_AHRS_Backend::get_primary_accel_index
      • 3.2.3 AP_AHRS_Backend::get_primary_gyro_index
    • 3.3 重要方法
      • 3.3.1 AP_AHRS_Backend::update
      • 3.3.2 AP_AHRS_Backend::get_results
      • 3.3.3 AP_AHRS_Backend::pre_arm_check
      • 3.3.4 AP_AHRS_Backend::healthy
      • 3.3.5 AP_AHRS_Backend::initialised
      • 3.3.6 AP_AHRS_Backend::get_quaternion
    • 3.4 重置函数
      • 3.4.1 AP_AHRS_Backend::reset_gyro_drift
      • 3.4.2 AP_AHRS_Backend::reset
      • 3.4.3 AP_AHRS_Backend::getLastYawResetAngle
      • 3.4.4 AP_AHRS_Backend::getLastPosNorthEastReset
      • 3.4.5 AP_AHRS_Backend::getLastVelNorthEastReset
      • 3.4.6 AP_AHRS_Backend::getLastPosDownReset
      • 3.4.7 AP_AHRS_Backend::resetHeightDatum
    • 3.5 速度函数
      • 3.5.1 AP_AHRS_Backend::wind_estimate
      • 3.5.2 AP_AHRS_Backend::airspeed_estimate
      • 3.5.3 AP_AHRS_Backend::airspeed_estimate_true
      • 3.5.4 AP_AHRS_Backend::airspeed_vector_true
      • 3.5.5 AP_AHRS_Backend::get_velocity_NED
      • 3.5.6 AP_AHRS_Backend::get_vert_pos_rate_D
      • 3.5.7 AP_AHRS_Backend::get_control_limits
      • 3.5.8 AP_AHRS_Backend::get_EAS2TAS
    • 3.6 位置函数
      • 3.6.1 AP_AHRS_Backend::set_origin/get_origin
      • 3.6.2 AP_AHRS_Backend::get_relative_position_NED_origin
      • 3.6.3 AP_AHRS_Backend::get_relative_position_NE_origin
      • 3.6.4 AP_AHRS_Backend::get_relative_position_D_origin
      • 3.6.5 AP_AHRS_Backend::get_hgt_ctrl_limit
      • 3.6.6 AP_AHRS_Backend::set_terrain_hgt_stable
      • 3.6.7 AP_AHRS_Backend::get_hagl
    • 3.7 磁力计函数
      • 3.7.1 AP_AHRS_Backend::use_compass
      • 3.7.2 AP_AHRS_Backend::get_mag_field_correction
      • 3.7.3 AP_AHRS_Backend::get_mag_field_NED
      • 3.7.4 AP_AHRS_Backend::get_mag_offsets
    • 3.8 创新量函数
      • 3.8.1 AP_AHRS_Backend::get_innovations
      • 3.8.2 AP_AHRS_Backend::get_filter_status
      • 3.8.3 AP_AHRS_Backend::get_variances
      • 3.8.4 AP_AHRS_Backend::get_vel_innovations_and_variances_for_source
      • 3.3.30 AP_AHRS_Backend::send_ekf_status_report
    • 3.9 辅助函数
      • 3.9.1 AP_AHRS_Backend::attitudes_consistent
      • 3.9.2 AP_AHRS_Backend::check_lane_switch
      • 3.9.3 AP_AHRS_Backend::using_noncompass_for_yaw
      • 3.9.4 AP_AHRS_Backend::using_extnav_for_yaw
      • 3.9.5 AP_AHRS_Backend::request_yaw_reset
      • 3.9.6 AP_AHRS_Backend::set_posvelyaw_source_set
      • 3.9.7 AP_AHRS_Backend::have_inertial_nav
    • 3.10 共性抽象
      • 3.10.1 AP_AHRS_Backend::airspeed_sensor_enabled
      • 3.10.2 AP_AHRS_Backend::groundspeed
  • 4. 总结
  • 5. 参考资料

1. 源由

前面我们简单研读了《ArduPilot开源飞控之AP_AHRS》,问题是该类需要比较多的数学知识,且其复杂度比较高。

因此,始终没有比较全面的进行理解。为此,我们还是用非常简单的原则,一步一个脚印,逐一的突破。

在《ArduPilot开源代码之AP_AHRS_View》中,通过另一个视角,我们了解了AP_AHRS会有哪些结果可以呈现。

本章我们将从AP_AHRS内部用到的各个成员类的共性(AP_AHRS_Backend)入手研读。

2. 类继承关系

AP_AHRS_Backend├──> AP_AHRS_DCM├──> AP_AHRS_External└──> AP_AHRS_SIM

3. 框架设计

AP_AHRS_Backend 类用作姿态和航向参考系统 (AHRS) 后端的抽象基类。作为实现不同 AHRS 后端的蓝图,确保接口一致性同时允许根据不同的传感器配置或系统要求实现灵活性。每个派生类将实现纯虚方法以提供特定于不同 AHRS 功能的实现。

2.1 构造函数和析构函数

  • 类具有默认构造函数,并且有一个虚拟的空析构函数 (virtual ~AP_AHRS_Backend() {}),表明它设计用于继承和动态多态性。

2.2 不可复制

  • 包含一个宏 CLASS_NO_COPY(AP_AHRS_Backend);,防止实例的复制,确保单例类似的行为或唯一性。

2.3 嵌套结构和枚举

  • Estimates:一个结构体,包含与方向相关的各种估算值(如滚转、俯仰、偏航角)、方向矩阵、陀螺仪估算、加速度计数据、位置信息以及位置有效性标志。它还提供了 get_location 等方法来获取位置数据。

2.4 虚方法

  • virtual void init();:初始化 AHRS 后端。
  • virtual void update() = 0;:纯虚方法,用于更新 AHRS 数据。
  • virtual void get_results(Estimates &results) = 0;:纯虚方法,用于获取 AHRS 的估算结果。
  • 其他虚方法定义了与传感器索引、预装载检查、姿态一致性检查、车道切换、偏航处理、传感器来源、重置(陀螺仪漂移、姿态)、空速估算、地速、位置、速度以及导航和 AHRS 健康状态相关的功能。

2.5 静态方法

  • static float get_EAS2TAS();:将等效空速转换为真空速。

2.6 实用方法

  • groundspeed_vector()groundspeed() 等方法提供了用于检索地速、位置数据和状态检查的实用功能。

2.7 纯虚方法

  • 诸如 virtual bool get_quaternion(Quaternion &quat) const = 0;virtual bool healthy() const = 0; 的方法强制派生类实现特定的 AHRS 功能。

2.8 条件编译

  • 几个方法使用条件编译 (#if 指令) 根据预处理器定义(如 AP_INERTIALSENSOR_ENABLEDAP_AIRSPEED_ENABLED)启用或禁用功能。

3. 虚方法设计

整个源代码非常奇怪。

  1. 大部分虚函数接口,感觉更像API设计定义;
  2. 仅有非常少量的抽象共性函数实现;
  3. AP_AHRS_Backend.cpp源代码文件里面,实现的函数属于AP_AHRSAP_AHRS_View的;

3.1 初始化

非常简洁,因为抽象实现很少;更像API设计,因此没有太多的初始化。

3.1.1 构造函数

    // ConstructorAP_AHRS_Backend() {}

3.1.2 析构函数

    // empty virtual destructorvirtual ~AP_AHRS_Backend() {}

3.1.3 AP_AHRS_Backend::init

void AP_AHRS_Backend::init()
{
}

3.2 IMU传感

3.2.1 AP_AHRS_Backend::get_primary_core_index

  • EKFType::DCM //0
  • EKFType::SIM //0
  • EKFType::EXTERNAL //0
  • EKFType::TWO //current healthy IMU core
  • EKFType::THREE //current healthy IMU core
    // return the index of the primary core or -1 if no primary core selectedvirtual int8_t get_primary_core_index() const { return -1; }

3.2.2 AP_AHRS_Backend::get_primary_accel_index

当前使用的加速度传感器序号,从0开始代表第一个IMU。

    // get the index of the current primary accelerometer sensorvirtual uint8_t get_primary_accel_index(void) const {
#if AP_INERTIALSENSOR_ENABLEDreturn AP::ins().get_first_usable_accel();
#elsereturn 0;
#endif}

3.2.3 AP_AHRS_Backend::get_primary_gyro_index

当前使用的陀螺仪传感器,从0开始代表第一个IMU。

    // get the index of the current primary gyro sensorvirtual uint8_t get_primary_gyro_index(void) const {
#if AP_INERTIALSENSOR_ENABLEDreturn AP::ins().get_first_usable_gyro();
#elsereturn 0;
#endif}

3.3 重要方法

3.3.1 AP_AHRS_Backend::update

定期更新的AHRS方法,继承类必须重载该函数实现。

    // Methodsvirtual void update() = 0;

3.3.2 AP_AHRS_Backend::get_results

获取当前姿态、速度、位置估计数值,继承类必须重载该函数实现。

    virtual void get_results(Estimates &results) = 0;

3.3.3 AP_AHRS_Backend::pre_arm_check

检查AHRS是否健康,继承类必须重载该函数实现。

    // returns false if we fail arming checks, in which case the buffer will be populated with a failure message// requires_position should be true if horizontal position configuration should be checkedvirtual bool pre_arm_check(bool requires_position, char *failure_msg, uint8_t failure_msg_len) const = 0;

3.3.4 AP_AHRS_Backend::healthy

判断是否健康,继承类必须重载该函数实现。

    // is the AHRS subsystem healthy?virtual bool healthy(void) const = 0;

3.3.5 AP_AHRS_Backend::initialised

判断初始化是否完成。

    // true if the AHRS has completed initialisationvirtual bool initialised(void) const {return true;};virtual bool started(void) const {return initialised();};

注:详见,AP_AHRS::initialised

3.3.6 AP_AHRS_Backend::get_quaternion

获取四元数,继承类必须重载该函数实现。

    // return the quaternion defining the rotation from NED to XYZ (body) axesvirtual bool get_quaternion(Quaternion &quat) const WARN_IF_UNUSED = 0;

3.4 重置函数

3.4.1 AP_AHRS_Backend::reset_gyro_drift

重置陀螺仪漂移,继承类必须重载该函数实现。

    // reset the current gyro drift estimate//  should be called if gyro offsets are recalculatedvirtual void reset_gyro_drift(void) = 0;

3.4.2 AP_AHRS_Backend::reset

重置IMU,继承类必须重载该函数实现。

    // reset the current attitude, used on new IMU calibrationvirtual void reset() = 0;

3.4.3 AP_AHRS_Backend::getLastYawResetAngle

获取最近一次Yaw重置时间。

    // return the amount of yaw angle change due to the last yaw angle reset in radians// returns the time of the last yaw angle reset or 0 if no reset has ever occurredvirtual uint32_t getLastYawResetAngle(float &yawAng) {return 0;};

注:详见,AP_AHRS::getLastYawResetAngle

3.4.4 AP_AHRS_Backend::getLastPosNorthEastReset

获取最近一次NE坐标下位置重置时间。

    // return the amount of NE position change in metres due to the last reset// returns the time of the last reset or 0 if no reset has ever occurredvirtual uint32_t getLastPosNorthEastReset(Vector2f &pos) WARN_IF_UNUSED {return 0;};

注:详见,AP_AHRS::getLastPosNorthEastReset

3.4.5 AP_AHRS_Backend::getLastVelNorthEastReset

获取最近一次NE坐标下速度重置时间。

    // return the amount of NE velocity change in metres/sec due to the last reset// returns the time of the last reset or 0 if no reset has ever occurredvirtual uint32_t getLastVelNorthEastReset(Vector2f &vel) const WARN_IF_UNUSED {return 0;};

注:详见,AP_AHRS::getLastVelNorthEastReset

3.4.6 AP_AHRS_Backend::getLastPosDownReset

获取最近一次Z坐标下位置重置时间。

    // return the amount of vertical position change due to the last reset in meters// returns the time of the last reset or 0 if no reset has ever occurredvirtual uint32_t getLastPosDownReset(float &posDelta) WARN_IF_UNUSED {return 0;};

注:详见,AP_AHRS::getLastPosDownReset

3.4.7 AP_AHRS_Backend::resetHeightDatum

重置高度。

    // Resets the baro so that it reads zero at the current height// Resets the EKF height to zero// Adjusts the EKf origin height so that the EKF height + origin height is the same as before// Returns true if the height datum reset has been performed// If using a range finder for height no reset is performed and it returns falsevirtual bool resetHeightDatum(void) WARN_IF_UNUSED {return false;}

注:详见,AP_AHRS::resetHeightDatum

3.5 速度函数

3.5.1 AP_AHRS_Backend::wind_estimate

获取风速,继承类必须重载该函数实现。

    // return a wind estimation vector, in m/svirtual bool wind_estimate(Vector3f &wind) const = 0;

3.5.2 AP_AHRS_Backend::airspeed_estimate

获取空速,继承类必须重载该函数实现。

    // return an airspeed estimate if available. return true// if we have an estimatevirtual bool airspeed_estimate(float &airspeed_ret) const WARN_IF_UNUSED { return false; }virtual bool airspeed_estimate(uint8_t airspeed_index, float &airspeed_ret) const { return false; }

3.5.3 AP_AHRS_Backend::airspeed_estimate_true

获取真空速,不同的继承类有不同的实现方式:

  • AP_AHRS::airspeed_estimate_true
  • AP_AHRS_View::airspeed_estimate_true
    // return a true airspeed estimate (navigation airspeed) if// available. return true if we have an estimatebool airspeed_estimate_true(float &airspeed_ret) const WARN_IF_UNUSED {if (!airspeed_estimate(airspeed_ret)) {return false;}airspeed_ret *= get_EAS2TAS();return true;}

3.5.4 AP_AHRS_Backend::airspeed_vector_true

dummy function,获取空速矢量。

    // return estimate of true airspeed vector in body frame in m/s// returns false if estimate is unavailablevirtual bool airspeed_vector_true(Vector3f &vec) const WARN_IF_UNUSED {return false;}

3.5.5 AP_AHRS_Backend::get_velocity_NED

dummy function,获取NED坐标下的速度矢量。

    // return a ground velocity in meters/second, North/East/Down// order. This will only be accurate if have_inertial_nav() is// truevirtual bool get_velocity_NED(Vector3f &vec) const WARN_IF_UNUSED {return false;}

3.5.6 AP_AHRS_Backend::get_vert_pos_rate_D

获取垂直速度导数,不同于垂直速度,继承类必须重载该函数实现。

    // Get a derivative of the vertical position in m/s which is kinematically consistent with the vertical position is required by some control loops.// This is different to the vertical velocity from the EKF which is not always consistent with the vertical position due to the various errors that are being corrected for.virtual bool get_vert_pos_rate_D(float &velocity) const = 0;

3.5.7 AP_AHRS_Backend::get_control_limits

获取速度限制和XY导航增益比例因子,继承类必须重载该函数实现。

    virtual void get_control_limits(float &ekfGndSpdLimit, float &controlScaleXY) const = 0;

3.5.8 AP_AHRS_Backend::get_EAS2TAS

获取真空速比率,不同的继承类有不同的实现方式:

  • AP_AHRS::get_EAS2TAS
  • AP_AHRS_View::get_EAS2TAS
    // get apparent to true airspeed ratiostatic float get_EAS2TAS(void);
// get apparent to true airspeed ratio
float AP_AHRS_Backend::get_EAS2TAS(void) {return AP::baro()._get_EAS2TAS();
}

3.6 位置函数

3.6.1 AP_AHRS_Backend::set_origin/get_origin

设置/获取起始点位置,继承类必须重载该函数实现。

    virtual bool set_origin(const Location &loc) {return false;}virtual bool get_origin(Location &ret) const = 0;

3.6.2 AP_AHRS_Backend::get_relative_position_NED_origin

获取NED坐标下的起始点,继承类必须重载该函数实现。

    // return a position relative to origin in meters, North/East/Down// order. This will only be accurate if have_inertial_nav() is// truevirtual bool get_relative_position_NED_origin(Vector3f &vec) const WARN_IF_UNUSED {return false;}

3.6.3 AP_AHRS_Backend::get_relative_position_NE_origin

获取NE坐标下的起始点,继承类必须重载该函数实现。

    // return a position relative to origin in meters, North/East// order. Return true if estimate is validvirtual bool get_relative_position_NE_origin(Vector2f &vecNE) const WARN_IF_UNUSED {return false;}

3.6.4 AP_AHRS_Backend::get_relative_position_D_origin

获取Z坐标下的起始点,继承类必须重载该函数实现。

    // return a Down position relative to origin in meters// Return true if estimate is validvirtual bool get_relative_position_D_origin(float &posD) const WARN_IF_UNUSED {return false;}

3.6.5 AP_AHRS_Backend::get_hgt_ctrl_limit

获取控制回路中要观察的最大高度(以米为单位)及其有效性标志。

    // get_hgt_ctrl_limit - get maximum height to be observed by the// control loops in meters and a validity flag.  It will return// false when no limiting is requiredvirtual bool get_hgt_ctrl_limit(float &limit) const WARN_IF_UNUSED { return false; };

3.6.6 AP_AHRS_Backend::set_terrain_hgt_stable

设置地面参考高度稳定。

    // 如果地面稳定到足以用作高度参考,则设置为true// 这与地形跟随无关// Set to true if the terrain underneath is stable enough to be used as a height reference// this is not related to terrain followingvirtual void set_terrain_hgt_stable(bool stable) {}

3.6.7 AP_AHRS_Backend::get_hagl

获取获取最近一次估计的高度,并返回有效bool。

    // get latest altitude estimate above ground level in meters and validity flagvirtual bool get_hagl(float &height) const WARN_IF_UNUSED { return false; }

注:详见,AP_AHRS::get_hagl

3.7 磁力计函数

3.7.1 AP_AHRS_Backend::use_compass

判断是否使用磁力计,继承类必须重载该函数实现。

    // return true if we will use compass for yawvirtual bool use_compass(void) = 0;

3.7.2 AP_AHRS_Backend::get_mag_field_correction

获取机体坐标系的磁力修正矢量。

    // returns the estimated magnetic field offsets in body framevirtual bool get_mag_field_correction(Vector3f &ret) const WARN_IF_UNUSED {return false;}

注:详见,AP_AHRS::get_mag_field_correction

3.7.3 AP_AHRS_Backend::get_mag_field_NED

获取NED坐标系的磁力场矢量。

    virtual bool get_mag_field_NED(Vector3f &vec) const {return false;}

注:详见,AP_AHRS::get_mag_field_NED

3.7.4 AP_AHRS_Backend::get_mag_offsets

获取磁力场偏置参数。

    virtual bool get_mag_offsets(uint8_t mag_idx, Vector3f &magOffsets) const {return false;}

注:详见,AP_AHRS::get_mag_offsets

3.8 创新量函数

3.8.1 AP_AHRS_Backend::get_innovations

获取滤波器(通常是扩展卡尔曼滤波器 EKF)的创新量。创新量指的是滤波器中测量与预测之间的残差或偏差,用于评估滤波器对系统状态的估计质量以及测量的一致性。通过分析创新量,可以评估滤波器对系统状态的准确性和系统中误差的校正程度。

    // return the innovations for the specified instance// An out of range instance (eg -1) returns data for the primary instancevirtual bool get_innovations(Vector3f &velInnov, Vector3f &posInnov, Vector3f &magInnov, float &tasInnov, float &yawInnov) const {return false;}

注:详见,AP_AHRS::get_innovations

3.8.2 AP_AHRS_Backend::get_filter_status

获取滤波器状态。

    virtual bool get_filter_status(union nav_filter_status &status) const {return false;}union nav_filter_status {struct {bool attitude           : 1; // 0 - true if attitude estimate is validbool horiz_vel          : 1; // 1 - true if horizontal velocity estimate is validbool vert_vel           : 1; // 2 - true if the vertical velocity estimate is validbool horiz_pos_rel      : 1; // 3 - true if the relative horizontal position estimate is validbool horiz_pos_abs      : 1; // 4 - true if the absolute horizontal position estimate is validbool vert_pos           : 1; // 5 - true if the vertical position estimate is validbool terrain_alt        : 1; // 6 - true if the terrain height estimate is validbool const_pos_mode     : 1; // 7 - true if we are in const position modebool pred_horiz_pos_rel : 1; // 8 - true if filter expects it can produce a good relative horizontal position estimate - used before takeoffbool pred_horiz_pos_abs : 1; // 9 - true if filter expects it can produce a good absolute horizontal position estimate - used before takeoffbool takeoff_detected   : 1; // 10 - true if optical flow takeoff has been detectedbool takeoff            : 1; // 11 - true if filter is compensating for baro errors during takeoffbool touchdown          : 1; // 12 - true if filter is compensating for baro errors during touchdownbool using_gps          : 1; // 13 - true if we are using GPS positionbool gps_glitching      : 1; // 14 - true if GPS glitching is affecting navigation accuracybool gps_quality_good   : 1; // 15 - true if we can use GPS for navigationbool initalized         : 1; // 16 - true if the EKF has ever been healthybool rejecting_airspeed : 1; // 17 - true if we are rejecting airspeed databool dead_reckoning     : 1; // 18 - true if we are dead reckoning (e.g. no position or velocity source)} flags;uint32_t value;
};

注:详见,AP_AHRS::get_filter_status

3.8.3 AP_AHRS_Backend::get_variances

获取创新方差归一化的偏差,其中值为0表示测量与EKF解决方案完全一致,值为1表示滤波器接受的最大不一致性。

    // get_variances - provides the innovations normalised using the innovation variance where a value of 0// indicates perfect consistency between the measurement and the EKF solution and a value of 1 is the maximum// inconsistency that will be accepted by the filter// boolean false is returned if variances are not availablevirtual bool get_variances(float &velVar, float &posVar, float &hgtVar, Vector3f &magVar, float &tasVar) const {return false;}

注:详见,AP_AHRS::get_variances

3.8.4 AP_AHRS_Backend::get_vel_innovations_and_variances_for_source

获取创新量和偏差值。

    // get a source's velocity innovations.  source should be from 0 to 7 (see AP_NavEKF_Source::SourceXY)// returns true on success and results are placed in innovations and variances argumentsvirtual bool get_vel_innovations_and_variances_for_source(uint8_t source, Vector3f &innovations, Vector3f &variances) const WARN_IF_UNUSED {return false;}enum class SourceXY : uint8_t {NONE = 0,// BARO = 1 (not applicable)// RANGEFINDER = 2 (not applicable)GPS = 3,BEACON = 4,OPTFLOW = 5,EXTNAV = 6,WHEEL_ENCODER = 7};

注:详见,AP_AHRS::get_vel_innovations_and_variances_for_source

3.3.30 AP_AHRS_Backend::send_ekf_status_report

发送EKF状态报告,继承类必须重载该函数实现。

    virtual void send_ekf_status_report(class GCS_MAVLINK &link) const = 0;

3.9 辅助函数

3.9.1 AP_AHRS_Backend::attitudes_consistent

默认姿态一致性正常。

  • EKFType::DCM //重载
  • EKFType::SIM //默认
  • EKFType::EXTERNAL //默认
  • EKFType::TWO //重载
  • EKFType::THREE //重载

注:详见,AP_AHRS::attitudes_consistent

    // check all cores providing consistent attitudes for prearm checksvirtual bool attitudes_consistent(char *failure_msg, const uint8_t failure_msg_len) const { return true; }

3.9.2 AP_AHRS_Backend::check_lane_switch

dummy function.

    // see if EKF lane switching is possible to avoid EKF failsafevirtual void check_lane_switch(void) {}

注:详见,AP_AHRS::check_lane_switch

3.9.3 AP_AHRS_Backend::using_noncompass_for_yaw

默认不需要使用磁力计来确定机头方向。

    // check if non-compass sensor is providing yaw.  Allows compass pre-arm checks to be bypassedvirtual bool using_noncompass_for_yaw(void) const { return false; }

注:详见,AP_AHRS::using_noncompass_for_yaw

3.9.4 AP_AHRS_Backend::using_extnav_for_yaw

默认不需要使用外部导航来确定机头方向。

    // check if external nav is providing yawvirtual bool using_extnav_for_yaw(void) const { return false; }

注:详见,AP_AHRS::using_extnav_for_yaw

3.9.5 AP_AHRS_Backend::request_yaw_reset

dummy function.

    // request EKF yaw reset to try and avoid the need for an EKF lane switch or failsafevirtual void request_yaw_reset(void) {}

注:详见,AP_AHRS::request_yaw_reset

3.9.6 AP_AHRS_Backend::set_posvelyaw_source_set

dummy function.

    // set position, velocity and yaw sources to either 0=primary, 1=secondary, 2=tertiaryvirtual void set_posvelyaw_source_set(uint8_t source_set_idx) {}

注:详见,AP_AHRS::set_posvelyaw_source_set

3.9.7 AP_AHRS_Backend::have_inertial_nav

判断是否有具有惯性导航。

    // return true if the AHRS object supports inertial navigation,// with very accurate position and velocityvirtual bool have_inertial_nav(void) const {return false;}

注:详见,AP_AHRS::have_inertial_nav

3.10 共性抽象

3.10.1 AP_AHRS_Backend::airspeed_sensor_enabled

空速传感使能判断函数。

    // return true if airspeed comes from an airspeed sensor, as// opposed to an IMU estimatestatic bool airspeed_sensor_enabled(void) {#if AP_AIRSPEED_ENABLEDconst AP_Airspeed *_airspeed = AP::airspeed();return _airspeed != nullptr && _airspeed->use() && _airspeed->healthy();#elsereturn false;#endif}// return true if airspeed comes from a specific airspeed sensor, as// opposed to an IMU estimatestatic bool airspeed_sensor_enabled(uint8_t airspeed_index) {#if AP_AIRSPEED_ENABLEDconst AP_Airspeed *_airspeed = AP::airspeed();return _airspeed != nullptr && _airspeed->use(airspeed_index) && _airspeed->healthy(airspeed_index);#elsereturn false;#endif}

3.10.2 AP_AHRS_Backend::groundspeed

获取地面一维速度。

    // return ground speed estimate in meters/second. Used by ground vehicles.float groundspeed(void) {return groundspeed_vector().length();}

4. 总结

结合上面AP_AHRS_Backend类的API研读:

  • 从设计的角度来说,是一个后端驱动模版;
  • 从抽象的角度看,是设计共性标准化(虚函数,共性实现);
  • 从代码角度,有些离散,可能是SIM、DCM、External、EKF2、EKF3场景和算法的一个历史变化(后续可能还会有UKF算法);

通过走读代码,可以逐步的熟悉代码历史以及设计思想。很多历史问题是无法避免的和回避的。

正如苏格拉底所说的:“我知道我一无所知。”(“I know that I know nothing.”)

“苏格拉底怀疑主义”是分析问题,认识世界非常好的手段!

5. 参考资料

【1】ArduPilot开源飞控系统之简单介绍
【2】ArduPilot之开源代码Task介绍
【3】ArduPilot飞控启动&运行过程简介
【4】ArduPilot之开源代码Library&Sketches设计
【5】ArduPilot之开源代码Sensor Drivers设计

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/web/45281.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Chromium CI/CD 之Jenkins实用指南2024-如何创建新节点(三)

1. 前言 在前一篇《Jenkins实用指南2024-系统基本配置(二)》中,我们详细介绍了如何对Jenkins进行基本配置,包括系统设置、安全配置、插件管理以及创建第一个Job。通过这些配置,您的Jenkins环境已经具备了基本的功能和…

基于pyqt5实现xlsx选择器应用程序

环境搭建 基于python3.12pyqt5 pip3 install PyQt5 pip3 install pyinstallerpyinstaller --onefile --windowed test.py代码 新建main.py import sys from PyQt5.QtWidgets import QApplication, QWidget, QVBoxLayout, QHBoxLayout, QPushButton, QLineEdit, QFileDial…

leetcode 665.非递减数列

1.题目要求: 给你一个长度为 n 的整数数组 nums &#xff0c;请你判断在 最多 改变 1 个元素的情况下&#xff0c;该数组能否变成一个非递减数列。我们是这样定义一个非递减数列的&#xff1a; 对于数组中任意的 i (0 < i < n-2)&#xff0c;总满足 nums[i] < nums[i…

Java 设计模式系列:外观模式

简介 外观模式&#xff08;Facade Pattern&#xff09;是一种设计模式&#xff0c;又名门面模式&#xff0c;是一种通过为多个复杂的子系统提供一个一致的接口&#xff0c;而使这些子系统更加容易被访问的模式。该模式对外有一个统一接口&#xff0c;外部应用程序不用关心内部…

Android中RecyclerView使用详解(一)

目录 概述优点列表布局RecyclerView一、创建RecyclerView并且在布局中绑定二、实现RecyclerView单个item的布局三、给RecyclerView写一个对应的适配器Adapter1.创建自定义的ViewHolder2.继承Adapter&#xff0c;泛型使用我们自定义的ViewHolder3.重写Adapter的三个方法onCreate…

线程安全(二)synchronized 的底层实现原理、锁升级、对象的内存结构

目录 一、基础使用1.1 不加锁的代码实现1.2 加锁的代码实现二、实现原理2.1 synchronized 简介2.2 对象监控器(Monitor)2.3 加锁过程第一步:判断 Owner 指向第二步:进入 EntryList 阻塞第三步:主动进入 WaitSet 等待三、锁升级3.1 对象的内存结构3.2 Mark Word 对象头3.3 …

MySQL sql_safe_updates参数

sql_safe_updates 是 MySQL 中的一个系统变量&#xff0c;用于控制 MySQL 服务器是否允许在没有使用 KEY 或 LIMIT 子句的 UPDATE 或 DELETE 语句上执行更新或删除操作。当这个变量被设置为 ON 时&#xff0c;MySQL 会拒绝那些可能影响到表中大量行的 UPDATE 或 DELETE 语句&am…

SpringBoot实战:多表联查

1. 保存和更新公寓信息 请求数据的结构 Schema(description "公寓信息") Data public class ApartmentSubmitVo extends ApartmentInfo {Schema(description"公寓配套id")private List<Long> facilityInfoIds;Schema(description"公寓标签i…

LLM用于时序预测真的不行,连推理能力都没用到

语言模型真的能用于时序预测吗&#xff1f;根据贝特里奇头条定律&#xff08;任何以问号结尾的新闻标题&#xff0c;都能够用「不」来回答&#xff09;&#xff0c;答案应该是否定的。事实似乎也果然如此&#xff1a;强大如斯的 LLM 并不能很好地处理时序数据。 时序&#xff0…

tkinter-TinUI-xml实战(11)多功能TinUIxml编辑器

引言 在TinUIXml简易编辑器中&#xff0c;我们通过TinUI搭建了一个简易的针对TinUIXml布局的编辑器&#xff0c;基本掌握了TinUIXml布局和TinUIXml的导入与导出。现在&#xff0c;就在此基础上&#xff0c;对编辑器进行升级。 本次升级的功能&#xff1a; 更合理的xml编辑与…

docker私有仓库harbor安装

Harbor默认安装 下载harbor https://github.com/goharbor/harbor/releases/download/v2.11.0/harbor-offline-installer-v2.11.0.tgz 目前要求docker版本&#xff0c;docker 20.10.10-ce &#xff0c;和docker-compose 1.18.0 查看 docker-compose版本 docker-compose --ver…

Django前后端打通

跨域问题 【 0 】前言 ​ ​ 同源策略&#xff08;Same Origin Policy&#xff09;是浏览器安全策略的重要组成部分&#xff0c;它限制了来自不同源的网页之间的数据交互&#xff0c;以防止恶意攻击。当一个网页尝试执行与它的源&#xff08;即协议、域名和端口&#xff09…

【区分vue2和vue3下的element UI Carousel 走马灯组件,分别详细介绍属性,事件,方法如何使用,并举例】

在 Vue 2 中&#xff0c;我们通常使用 Element UI&#xff0c;而在 Vue 3 中&#xff0c;我们则使用 Element Plus 作为其替代品。对于 Carousel 走马灯组件&#xff0c;这两个库提供了相似的功能&#xff0c;但在 Vue 2 和 Vue 3 的上下文中&#xff0c;它们的属性、事件和方法…

C\C++ 终端输出带有颜色的字符

终端显示带有颜色的字符 终端显示带有颜色的字符 终端显示带有颜色的字符背景&#xff1a;测试机器&#xff0c;win10系统&#xff0c; VS2022编写字体设置不同的颜色背景色光标移动 &#xff08;这个用的估计不是很多&#xff09;字体设置动态显示C cout 也可以测试代码准确的…

接口基础知识3:详解url

课程大纲 一、定义 URL即访问的链接&#xff0c;是Uniform Resource Locator的缩写&#xff0c;译为"统一资源定位符"。 URL是一种URI&#xff0c;它标识一个互联网资源&#xff0c;并指定对其进行操作或获取该资源的方法。可能通过对主要访问手段的描述&#xff0c…

SpringBoot详细解析

1.什么是springboot springboot也是spring公司开发的一款框架。为了简化spring项目的初始化搭建的。那么spring对应springboot有什么缺点呢&#xff1f; spring项目搭建的缺点: 配置麻烦依赖tomcat启动慢 2.springboot的特点 自动配置 Spring Boot的自动配置是一个运行时&…

Docker 安装ros 使用rviz 等等图形化程序

Docker 安装ros 使用rviz 等等图形化程序 ubuntu 版本与ros 发行版本对应 如何安装其它版本ros 此时考虑使用docker 易于维护 地址&#xff1a; https://hub.docker.com/r/osrf/ros 我主机是 ubuntu22.04 使用这个标签 melodic-desktop-full 1 clone 镜像到本机 docker pu…

Android OkHttp3中HttpLoggingInterceptor使用

目录 一 概述1.1 日志级别 二 使用2.1 引入依赖2.2 创建对象2.3 添加拦截器 三 结果展示3.1 日志级别为BODY3.2 日志级别为BASIC3.3 日志级别为HEADERS 参考 一 概述 HttpLoggingInterceptor是OkHttp3提供的拦截器&#xff0c;用来记录HTTP请求和响应的详细信息。 1.1 日志级…

基于IDEA的Lombok插件安装及简单使用

lombok介绍 Lombok能以注解形式来简化java代码&#xff0c;提高开发效率。开发中经常需要写的javabean&#xff0c;都需要花时间去添加相应的getter/setter&#xff0c;也许还要去写构造器、equals等方法&#xff0c;而且需要维护。而Lombok能通过注解的方式&#xff0c;在编译…

Spring AOP 实现 Excel 导出统一处理

你好&#xff0c;我是柳岸花开。在实际开发中&#xff0c;经常会遇到需要导出 Excel 数据的需求。为了避免代码重复&#xff0c;我们可以使用 Spring AOP&#xff08;面向切面编程&#xff09;来实现 Excel 导出的统一处理。本文将介绍如何使用 Spring AOP 在项目中统一处理 Ex…