USB device stack
Dependents: MATSU-bed_blinky MATSU-bed_detection
Fork of USBDevice by
Diff: USBMSD/USBMSD.cpp
- Revision:
- 47:a0cd9646ecd1
- Parent:
- 29:b7a0ea455a0c
- Child:
- 51:deafa44182d9
--- 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