Hello,
I try to optimize the consumption, and i would like to start the camera at 120Mhz.
Before compiling, i changed in /openmv/src/cmsis/src/st/system_stm32fxxx.c
#elif defined (STM32F765xx) // 120MHz/48Mhz in place of 216MHz/48MHz :
flash_latency = FLASH_LATENCY_3; // FLASH_LATENCY_7;
RCC_OscInitStruct.PLL.PLLM = 12;
RCC_OscInitStruct.PLL.PLLN = 240; // 432;
RCC_OscInitStruct.PLL.PLLQ = 5; // 9;
RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2;
RCC_OscInitStruct.PLL.PLLR = 2;
but when i snapshot, the pixels are mixed in the images.
Do i forget something ?
Thanks,