You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
693 B
24 lines
693 B
# 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 |
|
select UDC_DRIVER_HAS_HIGH_SPEED_SUPPORT |
|
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.
|
|
|