summaryrefslogtreecommitdiff
path: root/tinyusb/osal
diff options
context:
space:
mode:
authorhathach <[email protected]>2018-04-20 20:23:22 +0700
committerhathach <[email protected]>2018-04-20 20:23:22 +0700
commita9d4c1e339ba1554beba15374873613e8fc28f47 (patch)
tree954ae9131a05676fa5e3b8e3de6c543a4305b4f7 /tinyusb/osal
parentec28d0d0da2ca5426ac267fccfa2e13870cdc4c9 (diff)
enhance msc device driver
Diffstat (limited to 'tinyusb/osal')
-rw-r--r--tinyusb/osal/osal_freeRTOS.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tinyusb/osal/osal_freeRTOS.h b/tinyusb/osal/osal_freeRTOS.h
index 2eef49495..b7eb014fd 100644
--- a/tinyusb/osal/osal_freeRTOS.h
+++ b/tinyusb/osal/osal_freeRTOS.h
@@ -100,6 +100,8 @@ static inline void osal_queue_receive (osal_queue_t const queue_hdl, void *p_dat
static inline bool osal_queue_send(osal_queue_t const queue_hdl, void const * data)
{
+ // queue send used by msc device for retrying read10/write10
+ verify_breakpoint();
return xQueueSendToFrontFromISR(queue_hdl, data, NULL);
}