summaryrefslogtreecommitdiff
path: root/tinyusb/tusb_dcd.h
diff options
context:
space:
mode:
authorhathach <[email protected]>2018-03-22 17:52:39 +0700
committerhathach <[email protected]>2018-03-22 17:52:39 +0700
commit16aa3eb4370019214535ce480e0490652fdd3b17 (patch)
treec8b7f8285dca1445bd9c0dfb9d293312710abc09 /tinyusb/tusb_dcd.h
parent0cb160468603a38284955316d84463995d3e2eff (diff)
simplify tusb_dcd_edpt_xfer API
Diffstat (limited to 'tinyusb/tusb_dcd.h')
-rw-r--r--tinyusb/tusb_dcd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyusb/tusb_dcd.h b/tinyusb/tusb_dcd.h
index f517ef0e7..00e76473f 100644
--- a/tinyusb/tusb_dcd.h
+++ b/tinyusb/tusb_dcd.h
@@ -89,7 +89,7 @@ bool tusb_dcd_control_xfer (uint8_t port, tusb_dir_t dir, uint8_t * buffer,
//------------- Other Endpoints -------------//
bool tusb_dcd_edpt_open (uint8_t port, tusb_descriptor_endpoint_t const * p_endpoint_desc);
-bool tusb_dcd_edpt_xfer (uint8_t port, uint8_t ep_addr, uint8_t * buffer, uint16_t total_bytes, bool int_on_complete);
+bool tusb_dcd_edpt_xfer (uint8_t port, uint8_t ep_addr, uint8_t * buffer, uint16_t total_bytes);
bool tusb_dcd_edpt_queue_xfer (uint8_t port, uint8_t ep_addr, uint8_t * buffer, uint16_t total_bytes); // only queue, not transferring yet
bool tusb_dcd_edpt_busy (uint8_t port, uint8_t ep_addr);