mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-28 10:01:03 +08:00
ecf2d82159
* Synchronize the code of the rt mart branch to the master branch. * TTY device * Add lwP code from rt-smart * Add vnode in DFS, but DFS will be re-write for rt-smart * There are three libcpu for rt-smart: * arm/cortex-a, arm/aarch64 * riscv64 Co-authored-by: Rbb666 <zhangbingru@rt-thread.com> Co-authored-by: zhkag <zhkag@foxmail.com>
50 lines
739 B
Plaintext
50 lines
739 B
Plaintext
menuconfig DRIVERS_USB
|
|
bool "USB Drivers"
|
|
default y
|
|
|
|
if DRIVERS_USB
|
|
menu "USB HOST"
|
|
|
|
config USB_HOST
|
|
bool "enable usb host driver"
|
|
default n
|
|
|
|
config HAL_TEST_HCI
|
|
bool "enable HCI hal APIs test command"
|
|
depends on USB_HOST
|
|
default n
|
|
|
|
config USB_STORAGE
|
|
bool "USB Mass Storage support"
|
|
depends on USB_HOST
|
|
default n
|
|
|
|
config USB_CAMERA
|
|
bool "UVC support"
|
|
depends on USB_HOST
|
|
default n
|
|
|
|
config USB_HID
|
|
bool "USB HID support"
|
|
depends on USB_HOST
|
|
default n
|
|
endmenu
|
|
|
|
menu "USB DEVICE"
|
|
|
|
config USB_DEVICE
|
|
bool "enable usb device driver"
|
|
default y
|
|
|
|
config HAL_TEST_UDC
|
|
bool "enable udc hal APIs test command"
|
|
depends on USB_DEVICE
|
|
default y
|
|
endmenu
|
|
|
|
config USB_MANAGER
|
|
bool "USB Manager support"
|
|
default n
|
|
endif
|
|
|