Skip to content

Commit

Permalink
drivers/barometer/invensense/icp201xx: increase delay after configura…
Browse files Browse the repository at this point in the history
…tion (#21765)

 - fixes wrong altitude reporting
  • Loading branch information
mrpollo authored and MaEtUgR committed Jul 11, 2023
1 parent 89b238f commit 090f929
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/drivers/barometer/invensense/icp201xx/ICP201XX.cpp
Expand Up @@ -250,7 +250,7 @@ ICP201XX::RunImpl()
case STATE::CONFIG: {
if (configure()) {
_state = STATE::WAIT_READ;
ScheduleDelayed(10_ms);
ScheduleDelayed(30_ms);

} else {
if (hrt_elapsed_time(&_reset_timestamp) > 1000_ms) {
Expand Down

0 comments on commit 090f929

Please sign in to comment.