Skip to content
Snippets Groups Projects
Commit 52247964 authored by sjwilks's avatar sjwilks
Browse files

Merge pull request #1292 from PX4/as_fix

Airspeed fix attempt
parents 9e82f14a 966e9d3f
No related branches found
No related tags found
No related merge requests found
......@@ -165,7 +165,7 @@ Airspeed::probe()
*/
_retries = 4;
int ret = measure();
_retries = 2;
_retries = 0;
return ret;
}
......@@ -381,7 +381,10 @@ Airspeed::cycle_trampoline(void *arg)
Airspeed *dev = (Airspeed *)arg;
dev->cycle();
dev->update_status();
// XXX we do not know if this is
// really helping - do not update the
// subsys state right now
//dev->update_status();
}
void
......
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