You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I connect the usb camera(which can work ok on my computer) to my STM32F407 borad,and run the discorery project,I find that
the program can not go into USBH_VIDEO_Process(&hUsbHostFS) in USB_HOST_fast_class_call(),I find that the hUsbHostFS.gState = HOST_ABORT_STATE.I don't know the reason.Can you help me?
void USB_HOST_fast_class_call(void)
{
if (hUsbHostFS.gState == HOST_CLASS)
{
USBH_VIDEO_Process(&hUsbHostFS);
}
}
The text was updated successfully, but these errors were encountered:
I find the reason now.The project set the usb mode to full speed.But my usb camera worked in high speed mode.So the programe can not find the video interface.I would bought a full speed usb camera and test in another day.
I connect the usb camera(which can work ok on my computer) to my STM32F407 borad,and run the discorery project,I find that
the program can not go into USBH_VIDEO_Process(&hUsbHostFS) in USB_HOST_fast_class_call(),I find that the hUsbHostFS.gState = HOST_ABORT_STATE.I don't know the reason.Can you help me?
void USB_HOST_fast_class_call(void)
{
if (hUsbHostFS.gState == HOST_CLASS)
{
USBH_VIDEO_Process(&hUsbHostFS);
}
}
The text was updated successfully, but these errors were encountered: