STM32 USB change endpoint type/protocol
I have setup my STM32 MCU to be a USB Device with OTG FS and when I list the details of the device on my computer, I can see that the USB endpoint used for data transfer is of type Bulk. It works perfectly fine, when I use the function `CDC_Transmit_FS` to transfer strings I can receive them on my computer. But I would like to change the endpoint type to be Interrupt instead of Bulk and I cannot figure where is the code or where in the GUI of STM32CubeIDE am I suppose to do this.

