Introduce driver for ov7670 camera, supporting QCIF,QVGA,CIF, and VGA resolution in YUV and RGB mode. Support was verified on the FRDM-MCXN947, using the SmartDMA camera engine, which is enabled in the following PR: https://github.com/zephyrproject-rtos/zephyr/pull/72827 Signed-off-by: Daniel DeGrasse <daniel.degrasse@nxp.com>
11 lines
251 B
Plaintext
11 lines
251 B
Plaintext
# Copyright 2024 NXP
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config VIDEO_OV7670
|
|
bool "OV7670 CMOS digital image sensor"
|
|
select I2C
|
|
depends on DT_HAS_OVTI_OV7670_ENABLED
|
|
default y
|
|
help
|
|
Enable driver for OV7670 CMOS digital image sensor device.
|