mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-05-31 18:47:21 +08:00
Made sure airspeed tests reset the sensors to default state
This commit is contained in:
@@ -383,6 +383,10 @@ test()
|
|||||||
warnx("diff pressure: %d pa", report.differential_pressure_pa);
|
warnx("diff pressure: %d pa", report.differential_pressure_pa);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* reset the sensor polling to its default rate */
|
||||||
|
if (OK != ioctl(fd, SENSORIOCSPOLLRATE, SENSOR_POLLRATE_DEFAULT))
|
||||||
|
errx(1, "failed to set default rate");
|
||||||
|
|
||||||
errx(0, "PASS");
|
errx(0, "PASS");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -415,6 +415,10 @@ test()
|
|||||||
warnx("temperature: %d C (0x%02x)", (int)report.temperature, (unsigned) report.temperature);
|
warnx("temperature: %d C (0x%02x)", (int)report.temperature, (unsigned) report.temperature);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* reset the sensor polling to its default rate */
|
||||||
|
if (OK != ioctl(fd, SENSORIOCSPOLLRATE, SENSOR_POLLRATE_DEFAULT))
|
||||||
|
errx(1, "failed to set default rate");
|
||||||
|
|
||||||
errx(0, "PASS");
|
errx(0, "PASS");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user