mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-05-21 12:53:35 +08:00
Add missing const modifier
This commit is contained in:
committed by
Mathieu Bresciani
parent
a8e0e82858
commit
df7f261e03
+2
-2
@@ -470,7 +470,7 @@ float EKFGSF_yaw::gaussianDensity(const uint8_t model_index) const
|
||||
return _m_2pi_inv * sqrtf(_ekf_gsf[model_index].S_det_inverse) * expf(-0.5f * normDist);
|
||||
}
|
||||
|
||||
bool EKFGSF_yaw::getLogData(float *yaw_composite, float *yaw_variance, float yaw[N_MODELS_EKFGSF], float innov_VN[N_MODELS_EKFGSF], float innov_VE[N_MODELS_EKFGSF], float weight[N_MODELS_EKFGSF])
|
||||
bool EKFGSF_yaw::getLogData(float *yaw_composite, float *yaw_variance, float yaw[N_MODELS_EKFGSF], float innov_VN[N_MODELS_EKFGSF], float innov_VE[N_MODELS_EKFGSF], float weight[N_MODELS_EKFGSF]) const
|
||||
{
|
||||
if (_ekf_gsf_vel_fuse_started) {
|
||||
*yaw_composite = _gsf_yaw;
|
||||
@@ -532,7 +532,7 @@ Matrix3f EKFGSF_yaw::ahrsPredictRotMat(const Matrix3f &R, const Vector3f &g)
|
||||
return ret;
|
||||
}
|
||||
|
||||
bool EKFGSF_yaw::getYawData(float *yaw, float *yaw_variance)
|
||||
bool EKFGSF_yaw::getYawData(float *yaw, float *yaw_variance) const
|
||||
{
|
||||
if(_ekf_gsf_vel_fuse_started) {
|
||||
*yaw = _gsf_yaw;
|
||||
|
||||
+2
-2
@@ -45,11 +45,11 @@ public:
|
||||
float yaw[N_MODELS_EKFGSF],
|
||||
float innov_VN[N_MODELS_EKFGSF],
|
||||
float innov_VE[N_MODELS_EKFGSF],
|
||||
float weight[N_MODELS_EKFGSF]);
|
||||
float weight[N_MODELS_EKFGSF]) const;
|
||||
|
||||
// get yaw estimate and the corresponding variance
|
||||
// return false if no yaw estimate available
|
||||
bool getYawData(float *yaw, float *yaw_variance);
|
||||
bool getYawData(float *yaw, float *yaw_variance) const;
|
||||
|
||||
private:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user