zephyr/drivers/usb/udc/Kconfig.skeleton
Johann Fischer 1a30cd8f1c drivers: udc: add USB device controller driver skeleton
Add a USB device controller driver skeleton to use as a starting point
for implementing a specific driver.

Signed-off-by: Johann Fischer <johann.fischer@nordicsemi.no>
2023-05-17 12:26:48 +02:00

24 lines
651 B
Plaintext

# Copyright (c) 2023 Nordic Semiconductor ASA
# SPDX-License-Identifier: Apache-2.0
config UDC_SKELETON
bool "Skeleton for an USB device controller driver"
default y
depends on DT_HAS_ZEPHYR_UDC_SKELETON_ENABLED
help
Skeleton for an USB device controller driver.
config UDC_SKELETON_STACK_SIZE
int "UDC controller driver internal thread stack size"
depends on UDC_SKELETON
default 512
help
Skeleton device controller driver internal thread stack size.
config UDC_SKELETON_THREAD_PRIORITY
int "Skeleton controller driver thread priority"
depends on UDC_SKELETON
default 8
help
Skeleton device controller driver thread priority.