Merge pull request #1941 from openmv/ov7670_vga_window

sensors/OV7670: Fix VGA window.
This commit is contained in:
Ibrahim Abdelkader 2023-10-01 15:32:16 +03:00 committed by GitHub
commit 0288218945
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -256,12 +256,12 @@ static const uint8_t vga_regs[][2] = {
{ COM14, 0x00 },
{ 0x72, 0x11 }, // downsample by 4
{ 0x73, 0xf0 }, // divide by 4
{ HSTART, 0x12 },
{ HSTOP, 0x00 },
{ HSTART, 0x13 },
{ HSTOP, 0x01 },
{ HREF, 0xb6 },
{ VSTART, 0x02 },
{ VSTOP, 0x7a },
{ VREF, 0x00 },
{ VREF, 0x03 },
{ 0xFF, 0xFF },
};