Kconfig 796 B

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