USBDevice with MAX32620HSP platform support

Fork of USBDevice by mbed official

Revision:
50:a3c50882f2c5
Parent:
48:03f8e580579a
diff -r bee5808e91e3 -r a3c50882f2c5 USBMIDI/MIDIMessage.h
--- a/USBMIDI/MIDIMessage.h	Thu Apr 16 11:46:08 2015 +0100
+++ b/USBMIDI/MIDIMessage.h	Mon Apr 20 10:45:54 2015 +0100
@@ -44,9 +44,9 @@
 /** A MIDI message container */
 class MIDIMessage {
 public:
-    MIDIMessage() {}
+    MIDIMessage() : length(4) {}
 
-    MIDIMessage(uint8_t *buf) {
+    MIDIMessage(uint8_t *buf) : length(4) {
         for (int i = 0; i < 4; i++)
             data[i] = buf[i];
     }
@@ -270,7 +270,7 @@
     }
 
     uint8_t data[MAX_MIDI_MESSAGE_SIZE+1];
-    uint8_t length=4;
+    uint8_t length;
 };
 
 #endif