File tree Expand file tree Collapse file tree 6 files changed +951
-0
lines changed
tests/drivers/build_all/video Expand file tree Collapse file tree 6 files changed +951
-0
lines changed Original file line number Diff line number Diff line change @@ -26,5 +26,6 @@ zephyr_library_sources_ifdef(CONFIG_VIDEO_IMX335 imx335.c)
2626zephyr_library_sources_ifdef(CONFIG_VIDEO_ST_MIPID02 video_st_mipid02.c)
2727zephyr_library_sources_ifdef(CONFIG_VIDEO_STM32_DCMIPP video_stm32_dcmipp.c)
2828zephyr_library_sources_ifdef(CONFIG_VIDEO_RENESAS_RA_CEU video_renesas_ra_ceu.c)
29+ zephyr_library_sources_ifdef(CONFIG_VIDEO_OV5642 ov5642.c)
2930
3031zephyr_linker_sources(DATA_SECTIONS video.ld)
Original file line number Diff line number Diff line change @@ -98,4 +98,6 @@ source "drivers/video/Kconfig.stm32_dcmipp"
9898
9999source "drivers/video/Kconfig.renesas_ra_ceu"
100100
101+ source "drivers/video/Kconfig.ov5642"
102+
101103endif # VIDEO
Original file line number Diff line number Diff line change 1+ # Copyright (c) 2025 Silicon Signals Pvt. Ltd.
2+ # SPDX-License-Identifier: Apache-2.0
3+
4+ config VIDEO_OV5642
5+ bool "OV5642 CMOS digital image sensor"
6+ select I2C
7+ depends on DT_HAS_OVTI_OV5642_ENABLED
8+ default y
9+ help
10+ Enable driver for OV5642 CMOS digital image sensor device
You can’t perform that action at this time.
0 commit comments