Seeing an issue with USB interrupts on STM32H742 only on Endpoint 1 USB Enumeration works fine. I am seeing HAL_PCD_DataOutStageCallback for endpoint 0 but not HAL_PCD_DataOutStageCallback for endpoint 1. Any ideas what I might be missing?
Initialization sequence:hpcd_USB_OTG_FS.Instance = USB_OTG_FS; hpcd_USB_OTG_FS.Init.dev_endpoints = 9; hpcd_USB_OTG_FS.Init.speed = PCD_SPEED_FULL; hpcd_USB_OTG_FS.Init.dma_enable = DISABLE; hpcd_USB_OTG_FS.Init.phy_itface = PCD_PHY_EMBEDDED;...