-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drivers: video: move all sensors to a dedicated directory
This is meant to clearly identify all sensors and facilitate grouped maintenace of all sensors. This also updates the layout of the Kconfig and CMakeLists.txt to how it is done to the root level Kconfig/CMakeLists.txt. Signed-off-by: Josuah Demangeon <[email protected]>
- Loading branch information
Showing
12 changed files
with
26 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
zephyr_library() | ||
|
||
# zephyr-keep-sorted-start | ||
zephyr_library_sources_ifdef(CONFIG_VIDEO_MT9M114 mt9m114.c) | ||
zephyr_library_sources_ifdef(CONFIG_VIDEO_OV2640 ov2640.c) | ||
zephyr_library_sources_ifdef(CONFIG_VIDEO_OV5640 ov5640.c) | ||
zephyr_library_sources_ifdef(CONFIG_VIDEO_OV7725 ov7725.c) | ||
# zephyr-keep-sorted-stop |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
# zephyr-keep-sorted-start | ||
source "drivers/video/sensor/Kconfig.mt9m114" | ||
source "drivers/video/sensor/Kconfig.ov2640" | ||
source "drivers/video/sensor/Kconfig.ov5640" | ||
source "drivers/video/sensor/Kconfig.ov7725" | ||
# zephyr-keep-sorted-stop |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.