33 lines
558 B
Plaintext
33 lines
558 B
Plaintext
|
# Kconfig - USB HID configuration options
|
||
|
|
||
|
#
|
||
|
# Copyright (c) 2018 Intel Corp.
|
||
|
#
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
#
|
||
|
|
||
|
config USB_DEVICE_HID
|
||
|
bool
|
||
|
prompt "USB Human Interface Device support"
|
||
|
default n
|
||
|
help
|
||
|
Enables USB Human Interface Device support.
|
||
|
|
||
|
if USB_DEVICE_HID
|
||
|
|
||
|
config HID_INT_EP_ADDR
|
||
|
hex
|
||
|
prompt "USB HID Device Interrupt Endpoint address"
|
||
|
default 0x81
|
||
|
range 0x81 0x8F
|
||
|
help
|
||
|
USB HID Device interrupt endpoint address
|
||
|
|
||
|
config HID_INTERRUPT_EP_MPS
|
||
|
int
|
||
|
default 16
|
||
|
help
|
||
|
USB HID Device interrupt endpoint size
|
||
|
|
||
|
endif # USB_DEVICE_HID
|