From 339b1a772350321d0f9d4f84e93c5360247e3f17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20D=C3=BCmpelmann?= Date: Wed, 18 Nov 2020 11:12:06 +0100 Subject: [PATCH] Remove dcd_edpt_xfer_abort from DCD header --- src/device/dcd.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/device/dcd.h b/src/device/dcd.h index 2c4bf434..776f782b 100644 --- a/src/device/dcd.h +++ b/src/device/dcd.h @@ -133,9 +133,6 @@ void dcd_edpt_close (uint8_t rhport, uint8_t ep_addr) TU_ATTR_WEAK; // Submit a transfer, When complete dcd_event_xfer_complete() is invoked to notify the stack bool dcd_edpt_xfer (uint8_t rhport, uint8_t ep_addr, uint8_t * buffer, uint16_t total_bytes); -// Abort a ongoing transfer -TU_ATTR_WEAK bool dcd_edpt_xfer_abort(uint8_t rhport, uint8_t ep_addr); - // Stall endpoint void dcd_edpt_stall (uint8_t rhport, uint8_t ep_addr);