Hello,
I create a project "usb_host_mouse" based on example "usb_host_msc" and "Example Application (Mouse)" in "USB_UserGuide_02_00_01_01.pdf" from AM335x_Starterware_02_00_01_01"
It appears to me I have to change
static tUSBHostClassDriver const * const g_ppHostClassDrivers[] =
{
&g_g_USBHostMSCClassDriver,
&g_sUSBEventDriver
};
to
static tUSBHostClassDriver const * const g_ppHostClassDrivers[] =
{
&g_USBHIDClassDriver,
&g_sUSBEventDriver
};
for HID_Mouse
It runs up to "case HCD_DEV_ADDRESSED" in usbhostenum.c and gets hang at USBHCDOpenDriver() !
Am I missing something ?
Thanks,
~Duy-Ky