12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- 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
|