Skip to content

Commit

Permalink
Increased camera wake delay time to longer than one frame
Browse files Browse the repository at this point in the history
  • Loading branch information
siliconwitch committed Sep 4, 2023
1 parent fe63e22 commit 2da79e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/camera.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ STATIC MP_DEFINE_CONST_FUN_OBJ_0(camera_sleep_obj, camera_sleep);
STATIC mp_obj_t camera_wake(void)
{
nrf_gpio_pin_write(CAMERA_SLEEP_PIN, false);
nrfx_systick_delay_ms(5);
nrfx_systick_delay_ms(100);
return mp_const_none;
}
STATIC MP_DEFINE_CONST_FUN_OBJ_0(camera_wake_obj, camera_wake);
Expand Down

0 comments on commit 2da79e3

Please # to comment.