Skip to content

Commit

Permalink
Merge pull request #33 from TheCacophonyProject/fix-ping-poll
Browse files Browse the repository at this point in the history
set reset to false
  • Loading branch information
gferraro authored Jan 8, 2025
2 parents b3123de + a7105c3 commit ca6b004
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/camera_transfer_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ pub fn enter_camera_transfer_loop(
restart_rp2040_ack.store(false, Ordering::Relaxed);
}
}
let poll_result = pin.poll_interrupt(true, Some(Duration::from_millis(2000)));
let poll_result = pin.poll_interrupt(false, Some(Duration::from_millis(2000)));
if let Ok(_pin_level) = poll_result {
if _pin_level.is_some() {
{
Expand Down

0 comments on commit ca6b004

Please sign in to comment.