From a2caaa3c3c3783ebd16c33458f1339d0e43cba5c Mon Sep 17 00:00:00 2001 From: Lorenz Meier Date: Sun, 20 Sep 2015 10:54:09 +0200 Subject: [PATCH] EKF: Fix param naming --- .../ekf_att_pos_estimator/ekf_att_pos_estimator_main.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/ekf_att_pos_estimator/ekf_att_pos_estimator_main.cpp b/src/modules/ekf_att_pos_estimator/ekf_att_pos_estimator_main.cpp index 5d6b7c2892..9f2d70d94b 100644 --- a/src/modules/ekf_att_pos_estimator/ekf_att_pos_estimator_main.cpp +++ b/src/modules/ekf_att_pos_estimator/ekf_att_pos_estimator_main.cpp @@ -113,7 +113,7 @@ AttitudePositionEstimatorEKF *g_estimator = nullptr; } AttitudePositionEstimatorEKF::AttitudePositionEstimatorEKF() : - SuperBlock(NULL, "EKF"), + SuperBlock(NULL, "PE"), _task_should_exit(false), _task_running(false), _estimator_task(-1), @@ -202,9 +202,9 @@ AttitudePositionEstimatorEKF::AttitudePositionEstimatorEKF() : _newRangeData(false), _mavlink_fd(-1), - _mag_offset_x(this, "PE_MAGB_X"), - _mag_offset_y(this, "PE_MAGB_Y"), - _mag_offset_z(this, "PE_MAGB_Z"), + _mag_offset_x(this, "MAGB_X"), + _mag_offset_y(this, "MAGB_Y"), + _mag_offset_z(this, "MAGB_Z"), _parameters{}, _parameter_handles{}, _ekf(nullptr),