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: blinky_max32630fthr FTHR_USB_serial FTHR_OLED HSP_RPC_GUI_3_0_1 ... more
Fork of USBDevice by
Diff: USBMSD/USBMSD.cpp
- Revision:
- 47:a0cd9646ecd1
- Parent:
- 29:b7a0ea455a0c
- Child:
- 51:deafa44182d9
diff -r 378357d7e90d -r a0cd9646ecd1 USBMSD/USBMSD.cpp
--- a/USBMSD/USBMSD.cpp Tue Mar 31 16:15:39 2015 +0100
+++ b/USBMSD/USBMSD.cpp Wed Apr 08 07:46:23 2015 +0100
@@ -147,7 +147,7 @@
// Called in ISR context called when a data is received
-bool USBMSD::EP2_OUT_callback() {
+bool USBMSD::EPBULK_OUT_callback() {
uint32_t size = 0;
uint8_t buf[MAX_PACKET_SIZE_EPBULK];
readEP(EPBULK_OUT, buf, &size, MAX_PACKET_SIZE_EPBULK);
@@ -184,7 +184,7 @@
}
// Called in ISR context when a data has been transferred
-bool USBMSD::EP2_IN_callback() {
+bool USBMSD::EPBULK_IN_callback() {
switch (stage) {
// the device has to send data to the host
