ULPI on the STM32H7B0 using USB3300
I had success when using the ULPI interface on a STM32H7A3 (on the nucleo board) using an external ULPI transceiver board https://www.waveshare.com/usb3300-usb-hs-board.htm
but when porting over to the STM32H7B0, I am not having much success. I believe the only difference between the chips are that the 7B0 uses PC2_N and PC3_N which I have set as digital during initialization using the HAL
HAL_SYSCFG_AnalogSwitchConfig(SYSCFG_SWITCH_PC2, SYSCFG_SWITCH_PC2_CLOSE);
HAL_SYSCFG_AnalogSwitchConfig(SYSCFG_SWITCH_PC3, SYSCFG_SWITCH_PC3_CLOSE);also I have set the CRS sync source to USB HS with the same result
[Port6] FailedEnumeration : Unknown USB Device (Device Descriptor Request Failed)
The external board has been known to arrive DOA judging from other posts in this forum but it worked a couple of weeks ago on the H7A3 variant.
Are there any other concerns I should be aware of when using the ULPI on a H7B0 (VBTx)?
