diff options
| author | hathach <[email protected]> | 2019-03-27 16:09:49 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2019-03-27 16:09:49 +0700 |
| commit | 1e9848d917550b0af2115bc629d5e7e4743f23c7 (patch) | |
| tree | 4642aacd58b24f96a5c8ac86364297f1f388112e /src/device/dcd.h | |
| parent | 472237665479961a714b6775e7fc9289e5e6c9ee (diff) | |
replace dcd_edpt_(clear)stall by usbd_edpt_(clear)stall
- remove dcd_edpt_stalled() from dcd porting
Diffstat (limited to 'src/device/dcd.h')
| -rw-r--r-- | src/device/dcd.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/device/dcd.h b/src/device/dcd.h index 588839ccb..186c4af0c 100644 --- a/src/device/dcd.h +++ b/src/device/dcd.h @@ -102,7 +102,6 @@ void dcd_set_config (uint8_t rhport, uint8_t config_num); * - busy : Check if endpoint transferring is complete (TODO remove)
* - stall : stall endpoint
* - clear_stall : clear stall
- * - stalled : check if stalled ( TODO remove )
*------------------------------------------------------------------*/
bool dcd_edpt_open (uint8_t rhport, tusb_desc_endpoint_t const * p_endpoint_desc);
bool dcd_edpt_xfer (uint8_t rhport, uint8_t ep_addr, uint8_t * buffer, uint16_t total_bytes);
@@ -110,7 +109,6 @@ bool dcd_edpt_busy (uint8_t rhport, uint8_t ep_addr); void dcd_edpt_stall (uint8_t rhport, uint8_t ep_addr);
void dcd_edpt_clear_stall (uint8_t rhport, uint8_t ep_addr);
-bool dcd_edpt_stalled (uint8_t rhport, uint8_t ep_addr);
/*------------------------------------------------------------------*/
/* Event Function
|
