Hi,
I'm working on a UBS composite device, which consists of USB-CDC and USB-MTP functions. In one of the use cases, I'd like to be able to reinitialize MTP functionality without breaking USB-CDC communication. Using the following sequence works for MTP, but breaks CDC.
```
USB_DeviceStop();
USB_DeviceSetIsr(false);
MtpReinit();
USB_DeviceSetIsr(true);
USB_DeviceRun();