summaryrefslogtreecommitdiff
path: root/tinyusb/class/msc_device.h
diff options
context:
space:
mode:
authorhathach <[email protected]>2014-03-09 15:30:57 +0700
committerhathach <[email protected]>2014-03-09 15:30:57 +0700
commit73ac4b4c8069744f09a20bec1e892d1eed8fd4c3 (patch)
tree05fb1b22c529e522978ce19c174fe40e12496a77 /tinyusb/class/msc_device.h
parente506f4cae2f3d06b463c28f725692165fec60727 (diff)
rename tusbd_msc_scsi_received_isr to tusbd_msc_scsi_cb
fix the status phase true --> false ASSERT_STATUS( dcd_pipe_xfer( p_msc->edpt_in , p_csw, sizeof(msc_cmd_status_wrapper_t), false) ); board ea4357 added P9_5 pull down for device connect
Diffstat (limited to 'tinyusb/class/msc_device.h')
-rw-r--r--tinyusb/class/msc_device.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyusb/class/msc_device.h b/tinyusb/class/msc_device.h
index 8f824380a..eba3e0b92 100644
--- a/tinyusb/class/msc_device.h
+++ b/tinyusb/class/msc_device.h
@@ -114,7 +114,7 @@ uint16_t tusbd_msc_write10_cb(uint8_t coreid, uint8_t lun, void** pp_buffer, uin
* \note Although this callback is called by tinyusb device task (non-isr context), however as all the classes share
* the same task (to save resource), any delay in this callback will cause delay in reponse on other classes.
*/
-msc_csw_status_t tusbd_msc_scsi_received_isr (uint8_t coreid, uint8_t lun, uint8_t scsi_cmd[16], void ** pp_buffer, uint16_t* p_length);
+msc_csw_status_t tusbd_msc_scsi_cb (uint8_t coreid, uint8_t lun, uint8_t scsi_cmd[16], void ** pp_buffer, uint16_t* p_length);
/** @} */
/** @} */