Kazuki Yamamoto / USBLocalFileSystem

Dependencies:   USBDevice

Dependents:   11u35_usbLocalFilesystem

Fork of USBLocalFileSystem by Norimasa Okamoto

Revision:
4:8f6857784854
Parent:
0:39eb4d5b97df
Child:
7:9c95f21a578d
--- a/USBMSD2/USBMSD2.cpp	Tue May 06 16:05:57 2014 +0900
+++ b/USBMSD2/USBMSD2.cpp	Thu May 08 23:43:46 2014 +0900
@@ -75,6 +75,21 @@
     return _hid->send(report);
 }
 
+USB_MSD* USBMSD2::getMSD()
+{
+	return _msd;
+}
+
+USB_CDC* USBMSD2::getCDC()
+{
+	return _cdc;
+}
+
+USB_HID* USBMSD2::getHID()
+{
+	return _hid;
+}
+
 bool USBMSD2::connect()
 {
     if (_msd->connect()) {