Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

drivers: video: Add support for arducam mega #66994

Closed
Closed
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 @@ -11,3 +11,4 @@ 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)
zephyr_library_sources_ifdef(CONFIG_VIDEO_ARDUCAM_MEGA arducam_mega.c)
1 change: 1 addition & 0 deletions drivers/video/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ source "drivers/video/Kconfig.ov7725"
source "drivers/video/Kconfig.ov2640"

source "drivers/video/Kconfig.stm32_dcmi"
source "drivers/video/Kconfig.arducam_mega"

source "drivers/video/Kconfig.ov5640"

Expand Down
12 changes: 12 additions & 0 deletions drivers/video/Kconfig.arducam_mega
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# ARDUCAM_MEGA

# Copyright (c) 2023 Arducam Technology Co., Ltd. <www.arducam.com>
# SPDX-License-Identifier: Apache-2.0

config VIDEO_ARDUCAM_MEGA
bool "Arducam Mega CMOS digital image sensor"
select SPI
depends on DT_HAS_ARDUCAM_MEGA_ENABLED
default y
ArduCAM marked this conversation as resolved.
Show resolved Hide resolved
help
Enable driver for Arducam Mega CMOS digital image sensor device.
Loading
Loading