STM32U575I-EV DCMI OV5640, camera unresponsive when configure for 1080p JPEGs
I've been working with an STM32CubeIDE project based primarily off STM32CubeU5 MCU package v1.4.0 (Projects\STM32U575I-EV\Examples\DCMI\DCMI_ContinousCap_EmbeddedSynchMode). The main changes I've made is changing the image format to JPEG and playing around w/ various resolutions. I'm able to retrieve images when resolution is as high as 720p. But when I increased the resolution to 1920x1080, the camera does not seem to be outputting data anymore (OV5640_Config() returns OV5640_OK, but I no longer receive interrupts for when the buffers are filled up). I would appreciate any help w/ getting the camera module to be able to produce 1080p JPEGs.
--------
Changes I made to try achieving 1920x1080 - I used these values in OV5640_SetResolution():
- OV5640_TIMING_DVPHO_HIGH, 0x07
- OV5640_TIMING_DVPHO_LOW, 0x80
- OV5640_TIMING_DVPVO_HIGH, 0x04
- OV5640_TIMING_DVPVO_LOW, 0x38
