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
If I upload the code to my STM32F303RDT6 board the USB is not working. Windows returns an error, and the usb device is not recognized in device manager.
When I create a project via STM32Cube IDE the usb cdc works fine, so I believe something is wrong/missing in this driver.
The text was updated successfully, but these errors were encountered:
The STM32 F3 series uses two different memory organizations for USB buffers. For this series, libopencm3 only supports one of them, and it's not the one used in your MCU. So I'm afraid the USB stack does not work on your board.
The mentioned MCUs use an implementation that is more or less the st_usbfs_v2 implementation. However, the current libopencm3 always uses the st_usbfs_v1 implementation for the F3 series.
If I upload the code to my STM32F303RDT6 board the USB is not working. Windows returns an error, and the usb device is not recognized in device manager.
When I create a project via STM32Cube IDE the usb cdc works fine, so I believe something is wrong/missing in this driver.
The text was updated successfully, but these errors were encountered: