diff options
author | NIIBE Yutaka <gniibe@fsij.org> | 2016-05-31 12:53:23 +0900 |
---|---|---|
committer | NIIBE Yutaka <gniibe@fsij.org> | 2016-05-31 13:13:14 +0900 |
commit | 1fa89d17547cc6a28991d559d69fead33eacd151 (patch) | |
tree | 799376597bdd21c2182126879c5a03252031e0b9 /mcu/usb-stm32f103.c | |
parent | 03a1d46c0873c0a545c81a9a3acc4d51f0f6d4d4 (diff) |
Change USB API a bit
Diffstat (limited to 'mcu/usb-stm32f103.c')
-rw-r--r-- | mcu/usb-stm32f103.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mcu/usb-stm32f103.c b/mcu/usb-stm32f103.c index 02be1cf..3d11ef8 100644 --- a/mcu/usb-stm32f103.c +++ b/mcu/usb-stm32f103.c @@ -888,7 +888,7 @@ usb_handle_transfer (uint16_t istr_value) uint32_t len = st103_get_tx_count (ep_index); st103_ep_clear_ctr_tx (ep_index); - usb_cb_tx_done (ep_index, len, 1); + usb_cb_tx_done (ep_index, len); } } } |