zephyr/drivers/video/Kconfig.shell
Josuah Demangeon c67b915482 drivers: video: shell: introduce the video shell
Introduce the video shell and implement some video shell commands.
Make use of the various querying API to implement tab-completion, and
validiate the data, as well as convert string names into integers.
Commands provided: frmival, format, ctrl, start, stop, capture

Signed-off-by: Josuah Demangeon <me@josuah.net>
2025-05-20 18:27:43 +02:00

21 lines
605 B
Plaintext

# Copyright The Zephyr Project Contributors
# SPDX-License-Identifier: Apache-2.0
config VIDEO_SHELL
bool "Video shell"
depends on SHELL
help
This shell provides control and query commands for video drivers.
if VIDEO_SHELL
config VIDEO_SHELL_CTRL_NAME_SIZE
int "Maximum size for the control string identifier"
default 40
help
Video controls have a human-friendly name that is converted into a string identifier.
This Kconfig controls the maximum size of the string identifier after which the name
would be truncated. The default value is enough for all standard control names.
endif