aboutsummaryrefslogtreecommitdiff
path: root/src/modules/fw_att_pos_estimator/fw_att_pos_estimator_main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/fw_att_pos_estimator/fw_att_pos_estimator_main.cpp')
-rw-r--r--src/modules/fw_att_pos_estimator/fw_att_pos_estimator_main.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/modules/fw_att_pos_estimator/fw_att_pos_estimator_main.cpp b/src/modules/fw_att_pos_estimator/fw_att_pos_estimator_main.cpp
index b238422b6..49622dda3 100644
--- a/src/modules/fw_att_pos_estimator/fw_att_pos_estimator_main.cpp
+++ b/src/modules/fw_att_pos_estimator/fw_att_pos_estimator_main.cpp
@@ -528,14 +528,15 @@ FixedwingEstimator::task_main()
if (_initialized) {
+ // XXX we compensate the offsets upfront - should be close to zero.
magData.x = _mag.x;
- magBias.x = -_mag_offsets.x_offset;
+ magBias.x = 0.0f; // _mag_offsets.x_offset
magData.y = _mag.y;
- magBias.y = -_mag_offsets.y_offset;
+ magBias.y = 0.0f; // _mag_offsets.y_offset
magData.z = _mag.z;
- magBias.z = -_mag_offsets.z_offset;
+ magBias.z = 0.0f; // _mag_offsets.y_offset
fuseMagData = true;
RecallStates(statesAtMagMeasTime, (IMUmsec - _parameters.mag_delay_ms));