1# Copyright (c) 2023 Nordic Semiconductor ASA
2# SPDX-License-Identifier: Apache-2.0
3
4config UDC_SKELETON
5	bool "Skeleton for an USB device controller driver"
6	default y
7	depends on DT_HAS_ZEPHYR_UDC_SKELETON_ENABLED
8	help
9	  Skeleton for an USB device controller driver.
10
11config UDC_SKELETON_STACK_SIZE
12	int "UDC controller driver internal thread stack size"
13	depends on UDC_SKELETON
14	default 512
15	help
16	  Skeleton device controller driver internal thread stack size.
17
18config UDC_SKELETON_THREAD_PRIORITY
19	int "Skeleton controller driver thread priority"
20	depends on UDC_SKELETON
21	default 8
22	help
23	  Skeleton device controller driver thread priority.
24