Skip to content

Commit

Permalink
video: gc2145: add GC2145 sensor
Browse files Browse the repository at this point in the history
support and basic controls.

Signed-off-by: Felipe Neves <[email protected]>
  • Loading branch information
uLipe authored and nashif committed Sep 12, 2024
1 parent ae6c20d commit 35c0cc7
Show file tree
Hide file tree
Showing 5 changed files with 1,178 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 @@ -10,6 +10,7 @@ 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)
zephyr_library_sources_ifdef(CONFIG_VIDEO_OV2640 ov2640.c)
zephyr_library_sources_ifdef(CONFIG_VIDEO_GC2145 gc2145.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)
Expand Down
2 changes: 2 additions & 0 deletions drivers/video/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,6 @@ source "drivers/video/Kconfig.ov5640"

source "drivers/video/Kconfig.ov7670"

source "drivers/video/Kconfig.gc2145"

endif # VIDEO
10 changes: 10 additions & 0 deletions drivers/video/Kconfig.gc2145
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Copyright (c) 2024 Felipe Neves
# SPDX-License-Identifier: Apache-2.0

config VIDEO_GC2145
bool "GC2145 CMOS digital image sensor"
select I2C
depends on DT_HAS_GC_GC2145_ENABLED
default y
help
Enable driver for GC2145 CMOS digital image sensor device.
Loading

0 comments on commit 35c0cc7

Please sign in to comment.