Hello,
I am interested to run my iMX6UL board as an USB HID device (gadget) in full speed mode.
For that I am using hid.c example from \drivers\usb\gadget\legacy\
But device is enumrating in high speed mode only.
My configurations:
static struct usb_composite_driver hidg_driver = {
.name = "g_hid",
.dev = &device_desc,
.strings = dev_strings,
.max_speed = USB_SPEED_FULL,
.bind = hid_bind,
.unbind = hid_unbind,
};
What are the other configurations to enumerate device in full speed mode only?
Please guide.