STM32H747-DISC0. HOW TO SETTING CHANGE USB SPEED?
Hello.
I am creating software for the host side of a USB hub, and I want to connect a mouse to a port on the USB hub,
I want to connect a mouse to the port of the USB hub and operate it.
The USB communication speed of the USB hub is HI SPEED, and when the hub detects a mouse with a LOW SPEED USB communication speed, it will send USBH_Get_DevDesc to the mouse in LOW SPEED.
USBH_Get_DevDesc is sent to the mouse at LOW SPEED when the hub detects a mouse with a USB communication speed of LOW SPEED.
USBH_StatusTypeDef USBH_OpenPipe(USBH_HandleTypeDef *phost, uint8_t pipe_num,
uint8_t epnum, uint8_t dev_address, uint8_t speed, uint8_t dev_address
uint8_t speed, uint8_t ep_type, uint16_t mps)
I can not communicate in LOW SPEED as seen in the line monitor even if I execute speed=2(LOW SPEED) with
How can I communicate in LOW SPEED?
