Skip to content

Commit

Permalink
set reset to false
Browse files Browse the repository at this point in the history
  • Loading branch information
GP committed Jan 7, 2025
1 parent b3123de commit a7105c3
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 a7105c3

Please sign in to comment.