2026-03-30 8:42 AM
Is there a way to change the Horizontal front and backporch?
This is a addon to this question
Solved! Go to Solution.
2026-03-30 7:35 PM
Hi @Brenden_PLUS ,
You can add some horizontal blanking by increasing the line length.
You can use the register 0x0300, this is a static register, so you need to modify it before you start streaming.
Best regards,
Jean
2026-03-30 7:35 PM
Hi @Brenden_PLUS ,
You can add some horizontal blanking by increasing the line length.
You can use the register 0x0300, this is a static register, so you need to modify it before you start streaming.
Best regards,
Jean
2026-03-31 8:15 AM
Thanks for the info!
So i managed to get the camera to work. It was all my fault why it didn't work. I'm using zephyr and i didn't set the clock frequency right.
To set it in zephyr 4.3 you do this.
```c
```
Also my width and height were off by one. So if you want something that's 640 by 480.
You set the roi_x_start = 0 and roi_y_end = 639. Then when you read back the width size it's 640. Then you do the same with the y.
One thing i did see with the dev board is the x_start and x_end is always 0 to 1123. while the y actually sets its y region to start at the actual place you want to start to read. Just thought that was interesting