USB device stack

Dependents:   mbed-mX-USB-TEST1 USBMSD_SD_HID_HelloWorld HidTest MIDI_usb_bridge ... more

Legacy Warning

This is an mbed 2 library. To learn more about mbed OS 5, visit the docs.

Pull requests against this repository are no longer supported. Please raise against mbed OS 5 as documented above.

Revision:
69:c5e178adb138
Parent:
68:e62755e5cd1e
--- a/USBDevice/USBHAL_Maxim.cpp	Fri Nov 11 17:34:06 2016 +0000
+++ b/USBDevice/USBHAL_Maxim.cpp	Fri Nov 11 17:59:00 2016 +0000
@@ -37,6 +37,10 @@
 #include "usb_regs.h"
 #include "clkman_regs.h"
 
+#if defined(TARGET_MAX32625) || defined(TARGET_MAX32630)
+#include "pwrman_regs.h"
+#endif
+
 #define CONNECT_INTS    (MXC_F_USB_DEV_INTEN_BRST | MXC_F_USB_DEV_INTEN_SETUP | MXC_F_USB_DEV_INTEN_EP_IN | MXC_F_USB_DEV_INTEN_EP_OUT | MXC_F_USB_DEV_INTEN_DMA_ERR)
 
 USBHAL *USBHAL::instance;
@@ -137,7 +141,7 @@
 
     // attach IRQ handler and enable interrupts
     instance = this;
-    NVIC_SetVector(USB_IRQn, (uint32_t)&_usbisr);
+    NVIC_SetVector(USB_IRQn, &_usbisr);
     NVIC_EnableIRQ(USB_IRQn);
 }