Skip to content

drivers: video: ov7670: update init regs #94183

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
5022cbb
drivers: video: ov7670: fix PR incorp
mjs513 Aug 6, 2025
8e97122
Merge branch 'zephyrproject-rtos:main' into ov6760-fix-init-com10-reg…
mjs513 Aug 6, 2025
a7549a6
Update drivers/video/ov7670.c
mjs513 Aug 6, 2025
c5d3c41
net: ocpp: Add a support for Open Charge Point Protocol(OCPP v1.6) stack
ssekar15 Jun 16, 2023
8da5836
doc: ocpp: Describe Open Charge Point Protocol (OCPP) support
ssekar15 Feb 8, 2024
c4dc650
tests: net: ocpp: Add test suit for OCPP lib
ssekar15 Feb 14, 2024
c350103
samples: net: ocpp: Charge Point test sample
ssekar15 Feb 7, 2024
4b8d140
MAINTAINERS: Add Open Charge Point Protocol (OCPP) lib
ssekar15 Feb 12, 2024
20c19c0
boards/snippets: use new USB device stack for CDC ACM serial
jfischer-no Nov 20, 2024
ece94f5
board: remove CDC ACM serial backend legacy Kconfig defconfig
jfischer-no Jun 12, 2025
db74779
sample: usb: move Audio 1.0 samples to legacy
jfischer-no Nov 4, 2024
7857d20
samples: usb: make USB DFU next sample default
jfischer-no Mar 17, 2025
d98b1e7
samples: usb: make WebUSB next sample default
jfischer-no Mar 17, 2025
d0affc8
samples: usb: make console-next sample default
jfischer-no Mar 18, 2025
9d3dfd5
samples: usb: move the legacy code out of the CDC ACM sample
jfischer-no Nov 5, 2024
cd81783
samples: usb: move the legacy code out of the HID mouse sample
jfischer-no Nov 5, 2024
50b7d64
samples: usb: move the legacy code out of the USB MSC sample
jfischer-no Nov 5, 2024
4f2c818
samples: usb: move the legacy code out of the HIC USB sample
jfischer-no Nov 5, 2024
d827844
samples: usb: add a sample that covers legacy netusb
jfischer-no Nov 6, 2024
b0b8044
sample: net: remove legacy USB code from the zperf sample
jfischer-no Nov 6, 2024
0de337b
samples: modbus: use new USB device stack
jfischer-no Nov 21, 2024
95f42bf
samples: hci_uart: use new USB device stack
jfischer-no Nov 22, 2024
349f590
samples: sensortile_box: use new USB device stack
jfischer-no Nov 22, 2024
0e007f4
samples: wpan_serial: use new USB device stack
jfischer-no Nov 25, 2024
e7957d9
samples: smp_svr: use new USB device stack
jfischer-no Nov 25, 2024
f7aa0ad
samples: echo_server: use new USB device stack
jfischer-no Nov 25, 2024
08fd8a9
samples: http_server: use new USB device stack
jfischer-no Nov 25, 2024
d691149
samples: shell_module: use new USB device stack
jfischer-no Nov 25, 2024
6951066
tests: bluetooth: use new USB device stack
jfischer-no Nov 25, 2024
d5e8980
tests: uart_basic_api: use new USB device stack
jfischer-no Nov 25, 2024
07d47a8
scripts: ci: check_compliance.py: add BOOT_SERIAL_UART to ALLOWLIST
jfischer-no Jul 23, 2025
302acdc
tests: mcuboot_recovery_retention: use UARTE1 for device management
jfischer-no Jul 22, 2025
7aad214
samples: usb: update USB samples root documentation
jfischer-no Mar 17, 2025
eedba1c
usb: deprecate legacy USB device support
jfischer-no Jun 10, 2025
c1106e2
usb: mark new stack as unstable and set it as the default
jfischer-no Jun 10, 2025
4b04bd9
west.yml: MCUboot synchronization from upstream
nordicjm Aug 4, 2025
893dc6e
drivers: udc_dwc2: Add nRF54LM20A vendor quirks
tmon-nordic Apr 8, 2025
65f7d58
drivers: counter: max32_wut: Add missing include
ttmut Mar 11, 2025
b5911ee
dts: adi: Add wut nodes to MAX32 SoCs that have wake-up timers
ttmut Mar 7, 2025
9af6562
drivers: wifi: siwx91x: Support max TX power configuration via Device…
ArunmaniAlagarsamy2710 Jul 30, 2025
ea978f0
scripts: west: commands: completion: bash: add --domain completion
henrikbrixandersen Aug 6, 2025
f83cc5e
MAINTAINERS: add Xen Domain-0 snippet to Xen Platform
firscity Aug 6, 2025
c579fa9
Update drivers/video/ov7670.c
mjs513 Aug 6, 2025
e38e647
Merge branch 'ov6760-fix-init-com10-register' of https://github.com/m…
mjs513 Aug 11, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion drivers/video/ov7670.c
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ static const struct ov7670_reg ov7670_init_regtbl[] = {

/* configure the output timing */
/* PCLK does not toggle during horizontal blank, one PCLK, one pixel */
{OV7670_COM10, 0x20}, /* COM10 */
{OV7670_COM10, 0x03}, /* COM10 */
{OV7670_COM12, 0x00}, /* COM12,No HREF when VSYNC is low */
/* Brightness Control, with signal -128 to +128, 0x00 is middle value */
{OV7670_BRIGHT, 0x2f},
Expand Down