From ba49d26e19bc8dc2f90dff94eb3788a8074362e2 Mon Sep 17 00:00:00 2001 From: hathach Date: Fri, 15 Nov 2013 00:01:07 +0700 Subject: fix build error with device 43xx refractor mscd ramdisk demo --- tinyusb/class/msc_device.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tinyusb/class') diff --git a/tinyusb/class/msc_device.c b/tinyusb/class/msc_device.c index b4c1c520d..a975e759e 100644 --- a/tinyusb/class/msc_device.c +++ b/tinyusb/class/msc_device.c @@ -176,8 +176,7 @@ void mscd_isr(endpoint_handle_t edpt_hdl, tusb_event_t event, uint32_t xferred_b } //------------- Status Phase -------------// - // TODO need to be true for dcd_lpc43xx to clean up qtd !!! - ASSERT( dcd_pipe_xfer( p_msc->edpt_in , &p_msc->csw, sizeof(msc_cmd_status_wrapper_t), true) == TUSB_ERROR_NONE, VOID_RETURN ); + ASSERT( dcd_pipe_xfer( p_msc->edpt_in , &p_msc->csw, sizeof(msc_cmd_status_wrapper_t), true) == TUSB_ERROR_NONE, VOID_RETURN ); // need to be true for dcd to clean up qtd !! //------------- Queue the next CBW -------------// ASSERT( dcd_pipe_xfer( p_msc->edpt_out, &p_msc->cbw, sizeof(msc_cmd_block_wrapper_t), true) == TUSB_ERROR_NONE, VOID_RETURN ); -- cgit v1.3.1