diff --git a/components/tinyusb/Kconfig b/components/tinyusb/Kconfig index 45faea9636..b5dda124ef 100644 --- a/components/tinyusb/Kconfig +++ b/components/tinyusb/Kconfig @@ -175,6 +175,21 @@ menu "TinyUSB Stack" help Enable TinyUSB MIDI feature. endmenu # "MIDI" + + menu "Human Interface Device Class (HID)" + config TINYUSB_HID_ENABLED + bool "Enable TinyUSB HID feature" + default n + help + Enable TinyUSB HID feature. + + config TINYUSB_HID_BUFSIZE + depends on TINYUSB_HID_ENABLED + int "Report buffer size of TinyUSB HID device" + default 16 + help + Set TinyUSB HID device report buffer size. + endmenu # "HID Device Class (HID)" endif # TINYUSB endmenu # "TinyUSB Stack"