Skip to content
Snippets Groups Projects
Commit af1984ac authored by Beat Küng's avatar Beat Küng Committed by Lorenz Meier
Browse files

sensors: do not warn about baro in HIL mode

parent bc91005e
No related branches found
No related tags found
No related merge requests found
......@@ -332,8 +332,10 @@ Sensors::parameters_update()
// TODO: this needs fixing for QURT and Raspberry Pi
if (!h_baro.isValid()) {
PX4_ERR("no barometer found on %s (%d)", BARO0_DEVICE_PATH, h_baro.getError());
ret = PX4_ERROR;
if (!_hil_enabled) { // in HIL we don't have a baro
PX4_ERR("no barometer found on %s (%d)", BARO0_DEVICE_PATH, h_baro.getError());
ret = PX4_ERROR;
}
} else {
int baroret = h_baro.ioctl(BAROIOCSMSLPRESSURE, (unsigned long)(_parameters.baro_qnh * 100));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment