Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions drivers/video/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ zephyr_library_sources_ifdef(CONFIG_VIDEO_MT9M114 mt9m114.c)
zephyr_library_sources_ifdef(CONFIG_VIDEO_OV7725 ov7725.c)
zephyr_library_sources_ifdef(CONFIG_VIDEO_OV2640 ov2640.c)
zephyr_library_sources_ifdef(CONFIG_VIDEO_STM32_DCMI video_stm32_dcmi.c)
zephyr_library_sources_ifdef(CONFIG_VIDEO_OV5640 ov5640.c)
2 changes: 2 additions & 0 deletions drivers/video/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,6 @@ source "drivers/video/Kconfig.ov2640"

source "drivers/video/Kconfig.stm32_dcmi"

source "drivers/video/Kconfig.ov5640"

endif # VIDEO
12 changes: 12 additions & 0 deletions drivers/video/Kconfig.ov5640
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# OV5640

# Copyright 2024 NXP
# SPDX-License-Identifier: Apache-2.0

config VIDEO_OV5640
bool "OV5640 CMOS digital image sensor"
select I2C
depends on DT_HAS_OVTI_OV5640_ENABLED
default y
help
Enable driver for OV5640 CMOS digital image sensor device
Loading