File tree Expand file tree Collapse file tree 8 files changed +296
-45
lines changed
tests/drivers/build_all/video Expand file tree Collapse file tree 8 files changed +296
-45
lines changed Original file line number Diff line number Diff line change 128128
129129.. zephyr-keep-sorted-stop
130130
131+ Video
132+ ===
133+
134+ * CONFIG_VIDEO_OV7670 is now gone and replaced by CONFIG_VIDEO_OV767X. This allows supporting both the OV7670 and 0V7675.
135+
131136Bluetooth
132137*********
133138
Original file line number Diff line number Diff line change @@ -16,14 +16,14 @@ zephyr_library_sources_ifdef(CONFIG_VIDEO_HM0360 hm0360.c)
1616zephyr_library_sources_ifdef(CONFIG_VIDEO_IMX335 imx335.c)
1717zephyr_library_sources_ifdef(CONFIG_VIDEO_MCUX_CSI video_mcux_csi.c)
1818zephyr_library_sources_ifdef(CONFIG_VIDEO_MCUX_MIPI_CSI2RX video_mcux_mipi_csi2rx.c)
19- zephyr_library_sources_ifdef(CONFIG_VIDEO_MCUX_SDMA video_mcux_smartdma.c)
20- zephyr_library_sources_ifdef(CONFIG_VIDEO_MT9M114 mt9m114.c)
21- zephyr_library_sources_ifdef(CONFIG_VIDEO_OV2640 ov2640.c)
22- zephyr_library_sources_ifdef(CONFIG_VIDEO_OV5640 ov5640.c)
19+ zephyr_library_sources_ifdef(CONFIG_VIDEO_MCUX_SDMA video_mcux_smartdma.c)
20+ zephyr_library_sources_ifdef(CONFIG_VIDEO_MT9M114 mt9m114.c)
21+ zephyr_library_sources_ifdef(CONFIG_VIDEO_OV2640 ov2640.c)
22+ zephyr_library_sources_ifdef(CONFIG_VIDEO_OV5640 ov5640.c)
2323zephyr_library_sources_ifdef(CONFIG_VIDEO_OV5642 ov5642.c)
24- zephyr_library_sources_ifdef(CONFIG_VIDEO_OV7670 ov767x.c)
25- zephyr_library_sources_ifdef(CONFIG_VIDEO_OV7725 ov7725.c)
26- zephyr_library_sources_ifdef(CONFIG_VIDEO_OV9655 ov9655.c)
24+ zephyr_library_sources_ifdef(CONFIG_VIDEO_OV767X ov767x.c)
25+ zephyr_library_sources_ifdef(CONFIG_VIDEO_OV7725 ov7725.c)
26+ zephyr_library_sources_ifdef(CONFIG_VIDEO_OV9655 ov9655.c)
2727zephyr_library_sources_ifdef(CONFIG_VIDEO_RENESAS_RA_CEU video_renesas_ra_ceu.c)
2828zephyr_library_sources_ifdef(CONFIG_VIDEO_SHELL video_shell.c)
2929zephyr_library_sources_ifdef(CONFIG_VIDEO_STM32_DCMI video_stm32_dcmi.c)
Original file line number Diff line number Diff line change @@ -78,7 +78,6 @@ source "drivers/video/Kconfig.mcux_sdma"
7878source "drivers/video/Kconfig.mt9m114"
7979source "drivers/video/Kconfig.ov2640"
8080source "drivers/video/Kconfig.ov5640"
81- source "drivers/video/Kconfig.ov7670"
8281source "drivers/video/Kconfig.ov7725"
8382source "drivers/video/Kconfig.ov9655"
8483source "drivers/video/Kconfig.renesas_ra_ceu"
@@ -92,5 +91,6 @@ source "drivers/video/Kconfig.sw_generator"
9291# zephyr-keep-sorted-stop
9392
9493source "drivers/video/Kconfig.ov5642"
94+ source "drivers/video/Kconfig.ov767x"
9595
9696endif # VIDEO
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ # OV767X CMOS digital image sensor configuration options
2+
3+ # Copyright (c) 2025 Michael Smorto <CyberMerln@gmail.com>
4+ # SPDX-License-Identifier: Apache-2.0
5+
6+ config VIDEO_OV767X
7+ bool "OV767X CMOS digital image sensor"
8+ select I2C
9+ depends on DT_HAS_OVTI_OV7670_ENABLED || DT_HAS_OVTI_OV7675_ENABLED
10+ default y
11+ help
12+ Enable driver for OV7670 / OV7675 CMOS digital image sensor.
You can’t perform that action at this time.
0 commit comments