2014-06-25 03:46 AM
Sir,
I have successfully initialized USB port on Hi mini STM32F1V board now I would like to design a software routine to disable the initialized USB port plz help me out how to implement this.Regards #stm32f1-usb-port-programming2014-06-26 02:00 AM
USBH_Init(&hUsbHostFS, USBH_UserProcess, HOST_FS);
The is a matching USB_DeInit function:
USBH_DeInit(USBH_HandleTypeDef *phost)
to which you would passhUsbHostFS.
Then you can re-assign your USB GPIO's as required. Worth a try.