mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
sensors/vehicle_magnetometer: fix multi_mode check
Signed-off-by: Serhat Aksun <serhat.aksun@maxwell-innovations.com>
This commit is contained in:
parent
12a81979a8
commit
bc220ddb82
@ -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)) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user