Hi Yuri,
The ov1063x module driver source code is written by freescale semiconductor. if you guys carry any explaination regarding datasheet. i have datasheet but many register information is not sufficient. Right now i'm trying to change fps of camera. i have followed this formula but i'm getting wrong fps by default i should get 30 fps. can u tell me were i'm wrong. is it correct formula
one more thing it is using system clock(0x3024[0]).
* FPS is computed as:
* XVCLK = 24MHz//0x6706[3:0]=0x08;
* preDivide = {/1,/1.5,/2,/3,/4,/5,/6,/7} = 1.5
* decided based on (0x3004[6:4] = 0x11;
* numerator = (0x3003[5:0] * XVCLK)/preDivide) = (20 * 24)/1.5 = 320MHz
* denominator = (2 * (1+0x3004[2:0])) = 2*(1+1)=4;
* FPS = numerator/denominator = 320/4 = 80fps*/