mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-12 13:37:35 +08:00
sensors/vehicle_magnetometer: fix multi_mode check
Signed-off-by: Serhat Aksun <serhat.aksun@maxwell-innovations.com>
This commit is contained in:
committed by
Daniel Agar
parent
0290282b17
commit
d67cddae7d
@@ -486,7 +486,7 @@ void VehicleMagnetometer::Run()
|
||||
// Publish
|
||||
if (_param_sens_mag_rate.get() > 0) {
|
||||
int interval_us = 1e6f / _param_sens_mag_rate.get();
|
||||
const bool multi_mode = (_param_sens_mag_mode.get() == 1);
|
||||
const bool multi_mode = (_param_sens_mag_mode.get() == 0);
|
||||
|
||||
for (int instance = 0; instance < MAX_SENSOR_COUNT; instance++) {
|
||||
if (updated[instance] && (_data_sum_count[instance] > 0)) {
|
||||
|
||||
Reference in New Issue
Block a user