mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-22 09:28:58 +00:00
calibration: make sure to notify the system when temp calibration changes
This is needed so that temperature compensation reads in the updated values and publishes the updated sensor_correction topic.
This commit is contained in:
@@ -345,7 +345,11 @@ int do_accel_calibration(orb_advert_t *mavlink_log_pub)
|
||||
} else if (axis_index == 2) {
|
||||
val *= accel_scale.z_scale;
|
||||
}
|
||||
failed |= (PX4_OK != param_set_no_notification(handle, &val));
|
||||
if (axis_index == 2) { //notify the system about the change, but only once, for the last one
|
||||
failed |= (PX4_OK != param_set(handle, &val));
|
||||
} else {
|
||||
failed |= (PX4_OK != param_set_no_notification(handle, &val));
|
||||
}
|
||||
}
|
||||
|
||||
// Ensure the calibration values used the driver are at default settings
|
||||
|
||||
Reference in New Issue
Block a user