From 77bc421359845c2fe4591b0ae19e513b9a84c05b Mon Sep 17 00:00:00 2001 From: hathach Date: Thu, 9 May 2019 23:31:18 +0700 Subject: fix clear stall usage, fix reset data toggle with dcd_clear_stall for nrf52 --- src/device/dcd.h | 2 +- src/device/usbd.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/device') diff --git a/src/device/dcd.h b/src/device/dcd.h index 63f923faa..18678f15b 100644 --- a/src/device/dcd.h +++ b/src/device/dcd.h @@ -107,7 +107,7 @@ void dcd_remote_wakeup(uint8_t rhport); * must be called to notify the stack * - busy : Check if endpoint transferring is complete (TODO remove) * - stall : stall endpoint - * - clear_stall : clear stall + * - clear_stall : clear stall, data toggle is also reset to DATA0 *------------------------------------------------------------------*/ 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); diff --git a/src/device/usbd.c b/src/device/usbd.c index d811c471a..434a2c3d8 100644 --- a/src/device/usbd.c +++ b/src/device/usbd.c @@ -456,7 +456,7 @@ static bool process_control_request(uint8_t rhport, tusb_control_request_t const case TUSB_REQ_CLEAR_FEATURE: if ( TUSB_REQ_FEATURE_EDPT_HALT == p_request->wValue ) { - dcd_edpt_clear_stall(rhport, tu_u16_low(p_request->wIndex)); + usbd_edpt_clear_stall(rhport, tu_u16_low(p_request->wIndex)); } usbd_control_status(rhport, p_request); break; -- cgit v1.3.1