Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: 11u35_usbLocalFilesystem
Fork of USBLocalFileSystem by
Diff: USBMSD2/USBMSD2.cpp
- Revision:
- 4:8f6857784854
- Parent:
- 0:39eb4d5b97df
- Child:
- 7:9c95f21a578d
diff -r 09b562c87f89 -r 8f6857784854 USBMSD2/USBMSD2.cpp
--- 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()) {
    