1menuconfig DRIVERS_USB 2 bool "USB Drivers" 3 default y 4 5if DRIVERS_USB 6menu "USB HOST" 7 8config USB_HOST 9 bool "enable usb host driver" 10 default n 11 12config HAL_TEST_HCI 13 bool "enable HCI hal APIs test command" 14 depends on USB_HOST 15 default n 16 17config USB_STORAGE 18 bool "USB Mass Storage support" 19 depends on USB_HOST 20 default n 21 22config USB_CAMERA 23 bool "UVC support" 24 depends on USB_HOST 25 default n 26 27config USB_HID 28 bool "USB HID support" 29 depends on USB_HOST 30 default n 31endmenu 32 33menu "USB DEVICE" 34 35config USB_DEVICE 36 bool "enable usb device driver" 37 default y 38 39config HAL_TEST_UDC 40 bool "enable udc hal APIs test command" 41 depends on USB_DEVICE 42 default y 43endmenu 44 45config USB_MANAGER 46 bool "USB Manager support" 47 default n 48endif 49 50