Skip to content

Commit

Permalink
drivers/optical_flow/paa3905: fix RegisterRead udelay
Browse files Browse the repository at this point in the history
  • Loading branch information
dagar committed Apr 19, 2024
1 parent 2a32861 commit 0a7689f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/drivers/optical_flow/paa3905/PAA3905.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/****************************************************************************
*
* Copyright (c) 2022-2023 PX4 Development Team. All rights reserved.
* Copyright (c) 2022-2024 PX4 Development Team. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
Expand Down Expand Up @@ -714,7 +714,7 @@ uint8_t PAA3905::RegisterRead(uint8_t reg)
// tSRW/tSRR SPI Time Between Read And Subsequent Commands
const hrt_abstime elapsed_last_read = hrt_elapsed_time(&_last_read_time);

if (elapsed_last_write < TIME_TSRW_TSRR_us) {
if (elapsed_last_read < TIME_TSRW_TSRR_us) {
px4_udelay(TIME_TSRW_TSRR_us - elapsed_last_read);
}

Expand Down

0 comments on commit 0a7689f

Please sign in to comment.