Skip to content

Commit

Permalink
imx219 driver support
Browse files Browse the repository at this point in the history
CI changes updated
  • Loading branch information
alanridel committed Aug 7, 2024
1 parent 5305aa6 commit b003899
Show file tree
Hide file tree
Showing 5 changed files with 509 additions and 0 deletions.
1 change: 1 addition & 0 deletions drivers/video/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ 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_OV7670 ov7670.c)
zephyr_library_sources_ifdef(CONFIG_VIDEO_IMX219 imx219.c)
2 changes: 2 additions & 0 deletions drivers/video/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,6 @@ source "drivers/video/Kconfig.ov5640"

source "drivers/video/Kconfig.ov7670"

source "drivers/video/Kconfig.imx219"

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

# Copyright (c) 2024 tinyVision.ai Inc.
# SPDX-License-Identifier: Apache-2.0

config VIDEO_IMX219
bool "IMX219 8 Mega-Pixel CMOS image sensor"
select I2C
depends on DT_HAS_SONY_IMX219_ENABLED
default y
help
Enable driver for IMX219 8 Mega-Pixel CMOS image sensor
Loading

0 comments on commit b003899

Please sign in to comment.