diff options
| author | hathach <[email protected]> | 2018-03-21 15:36:44 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2018-03-21 15:36:44 +0700 |
| commit | 9a487a238a6c3fb99383c05fd1bb15ae16bf3349 (patch) | |
| tree | 5a282ab430f7f85728413ee5a8df73459f4fd5e4 /tinyusb/device/usbd.c | |
| parent | ff5957ec732431ab339e5e2fd80827aad411f40d (diff) | |
remove int_on_complete for tusb_dcd_control_xfer
Diffstat (limited to 'tinyusb/device/usbd.c')
| -rw-r--r-- | tinyusb/device/usbd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyusb/device/usbd.c b/tinyusb/device/usbd.c index eddd29a1d..5ff677b97 100644 --- a/tinyusb/device/usbd.c +++ b/tinyusb/device/usbd.c @@ -295,7 +295,7 @@ tusb_error_t usbd_control_xfer_substak(uint8_t port, tusb_dir_t dir, uint8_t * b // Data
if ( length )
{
- tusb_dcd_control_xfer(port, dir, buffer, length, true);
+ tusb_dcd_control_xfer(port, dir, buffer, length);
osal_semaphore_wait( usbd_control_xfer_sem_hdl, 100, &error );
SUBTASK_ASSERT_STATUS( error );
|
