e80506b754
This patch adds the driver for Omnivision OV7725 Color CMOS VGA Sensor. The driver currently provides a simple capture function, the output format only provides RGB565,640x480. Signed-off-by: Frank Li <lgl88911@163.com>
11 lines
363 B
CMake
11 lines
363 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
zephyr_library()
|
|
|
|
zephyr_library_sources(video_common.c)
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_VIDEO_MCUX_CSI video_mcux_csi.c)
|
|
zephyr_library_sources_ifdef(CONFIG_VIDEO_SW_GENERATOR video_sw_generator.c)
|
|
zephyr_library_sources_ifdef(CONFIG_VIDEO_MT9M114 mt9m114.c)
|
|
zephyr_library_sources_ifdef(CONFIG_VIDEO_OV7725 ov7725.c)
|