Dependents:
mbed-mX-USB-TEST1
USBMSD_SD_HID_HelloWorld
HidTest
MIDI_usb_bridge
... more
1 comment:
During enumeration Windows will reset the bus a minimum of *two* times. It usually does it many more times than that.
With each USB reset malloc is eating up RAM from the heap. malloc's should also never be done from inside an interrupt.
During enumeration Windows will reset the bus a minimum of *two* times. It usually does it many more times than that. With each USB reset malloc is eating up RAM from the heap. malloc's should also never be done from inside an interrupt.