2022-06-14 05:13 AM
Dear Community
I am working on a project right now, using a STM32H725 with an external PHY (USB3300-EZK).
The board is working and using FreeRTOS with CMSIS I have USB HS working.
But trying to build my project on Azure with USBX, I can't get USB HS to work.
Diving into the USBX libraries I noticed that:
The function 'ux_device_stack_initialize' in 'ux_device_stack_initialize.c' is not using its 'device_framework_high_speed' pointer to high speed FW.
Solved! Go to Solution.
2022-06-15 11:40 AM
@Mardec HS is supported, you can check HID_CDC_ACM example. (STM32H747I-DISCO)
2022-06-15 11:40 AM
@Mardec HS is supported, you can check HID_CDC_ACM example. (STM32H747I-DISCO)
2022-06-17 04:52 AM
Dear @mohamed.ayed
Thank you for you comment. You are indeed right about that particular example.
I didn't notice it before because it is wrongly labeled as "Full Speed" in Cube.
Using this example I will try to get USBX HS Ext PHY to work on my project. Will post an update when I succeed (or fail :p ).
Thanks again for your input!