Skip to content
Draft
Show file tree
Hide file tree
Changes from 23 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
16eb6ed
drivers: video: add support for arducam mega
Jan 18, 2024
62dc4ad
samples: subsys: video: add arducam mega camera full-featured sample
Jan 18, 2024
0032555
drivers: video: arducam_mega: update driver files with upstream vide…
kristosb Jul 25, 2025
12b530f
drivers: video: arducam_mega: error handling compliance fix
kristosb Sep 1, 2025
17bb3f7
drivers: video: arducam_mega: buffer capability default values
kristosb Sep 1, 2025
4b26311
drivers: video: arducam_mega: removed partial exception handling
kristosb Sep 1, 2025
3b7adaa
drivers: video: arducam_mega: mapped existing video fx CID
kristosb Sep 1, 2025
ced299f
drivers: video: arducam_mega: linted whitespaces
kristosb Sep 10, 2025
f42e317
drivers: video: arducam_mega: missing return on error
kristosb Sep 10, 2025
7fcbb57
drivers: video: arducam_mega: underscore lowercase enum names
kristosb Sep 12, 2025
e88c3ad
drivers: video: arducam_mega: removed private controls
kristosb Sep 12, 2025
070d4cd
drivers: video: arducam_mega: function prefix
kristosb Sep 13, 2025
87c23a5
drivers: video: arducam_mega: rebased with upstream main
kristosb Sep 18, 2025
e416316
drivers: video: arducam_mega: removing sample code
kristosb Sep 18, 2025
bc6b44d
drivers: video: arducam_mega: fixed MISRA compliance issues
kristosb Sep 20, 2025
cb754ee
drivers: video: arducam_mega: added video prefix to file names
kristosb Sep 20, 2025
8d16106
drivers: video: arducam_mega: removed sdk version data
kristosb Sep 20, 2025
c47ee53
drivers: video: arducam_mega: changed controls initialization functio…
kristosb Sep 20, 2025
4ed51b1
drivers: video: arducam_mega: replaced fx control with standard defin…
kristosb Sep 20, 2025
2c6b767
drivers: video: arducam_mega: fixed auto focus control
kristosb Sep 20, 2025
0ccd08d
drivers: video: arducam_mega: removed label argument
kristosb Sep 21, 2025
db5b7d3
drivers: video: arducam_mega: removed unused definitions
kristosb Oct 3, 2025
5fa321b
drivers: video: arducam_mega: update license headers
kristosb Sep 21, 2025
38bbdbb
drivers: video: arducam_mega: removed controls enable
kristosb Oct 17, 2025
eb1b0b4
drivers: video: arducam_mega: controls limits definitions
kristosb Oct 17, 2025
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
2 changes: 2 additions & 0 deletions drivers/video/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,7 @@ zephyr_library_sources_ifdef(CONFIG_VIDEO_IMX335 imx335.c)
zephyr_library_sources_ifdef(CONFIG_VIDEO_ST_MIPID02 video_st_mipid02.c)
zephyr_library_sources_ifdef(CONFIG_VIDEO_STM32_DCMIPP video_stm32_dcmipp.c)
zephyr_library_sources_ifdef(CONFIG_VIDEO_RENESAS_RA_CEU video_renesas_ra_ceu.c)
zephyr_library_sources_ifdef(CONFIG_VIDEO_ARDUCAM_MEGA video_arducam_mega.c)

zephyr_linker_sources(DATA_SECTIONS video.ld)

1 change: 1 addition & 0 deletions drivers/video/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,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
help
Enable driver for Arducam Mega CMOS digital image sensor device.
Loading
Loading