Run USBX on STM32H563VIT
Sorry, Google Translate changed my previous post to Polish. That's probably why no one answered me.
Now the post is correct.
I'm creating a custom board using a used STM32H563VIT. Nice processor, but I can't understand how to create an Audo class, even if it's BT 1.0.
In the F series of processors, e.g. STM32F720, it was simple, but here it is somehow mixed up.
USB parts diagram:

I am trying to use a USB Adio class device.
For this reason, there is no AZURE RTOS in the IDE (H5).
I have configured the USB

I configured USBX as FS_Device

I took the stack size

After my changes
The device is in working order HAL_PCD_STATE_READY
UINT MX_USBX_Device_Init(VOID)
{
UINT ret = UX_SUCCESS;
...
UX_PARAMETER_NOT_USED(ux_device_byte_pool_buffer);
...
return ret;
}
However, the system does not detect the device.
What else should I do for the system to detect the device?
