File tree Expand file tree Collapse file tree 6 files changed +975
-0
lines changed
tests/drivers/build_all/video Expand file tree Collapse file tree 6 files changed +975
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ zephyr_library_sources_ifdef(CONFIG_VIDEO_STM32_VENC video_stm32_venc.c)
1919zephyr_library_sources_ifdef(CONFIG_VIDEO_OV5640 ov5640.c)
2020zephyr_library_sources_ifdef(CONFIG_VIDEO_OV7670 ov7670.c)
2121zephyr_library_sources_ifdef(CONFIG_VIDEO_OV9655 ov9655.c)
22+ zephyr_library_sources_ifdef(CONFIG_VIDEO_HM0360 hm0360.c)
2223zephyr_library_sources_ifdef(CONFIG_VIDEO_ESP32 video_esp32_dvp.c)
2324zephyr_library_sources_ifdef(CONFIG_VIDEO_MCUX_SDMA video_mcux_smartdma.c)
2425zephyr_library_sources_ifdef(CONFIG_VIDEO_EMUL_IMAGER video_emul_imager.c)
Original file line number Diff line number Diff line change @@ -94,6 +94,8 @@ source "drivers/video/Kconfig.gc2145"
9494
9595source "drivers/video/Kconfig.hm01b0"
9696
97+ source "drivers/video/Kconfig.hm0360"
98+
9799source "drivers/video/Kconfig.mcux_sdma"
98100
99101source "drivers/video/Kconfig.emul_imager"
Original file line number Diff line number Diff line change 1+ # Copyright The Zephyr Project Contributors
2+ # SPDX-License-Identifier: Apache-2.0
3+
4+ config VIDEO_HM0360
5+ bool "HM0360 CMOS digital image sensor"
6+ select I2C
7+ depends on DT_HAS_HIMAX_HM0360_ENABLED
8+ default y
9+ help
10+ Enable driver for HM0360 CMOS digital image sensor device.
You can’t perform that action at this time.
0 commit comments