mirror of
https://github.com/hathach/tinyusb.git
synced 2025-04-09 18:44:31 +00:00
Merge pull request #2782 from rgrr/fix-dcd_nrf5x-wrong-order
dcd_nrf5x: fix race condition
This commit is contained in:
commit
ed0d58749d
@ -441,11 +441,11 @@ bool dcd_edpt_xfer(uint8_t rhport, uint8_t ep_addr, uint8_t* buffer, uint16_t to
|
||||
bool const control_status = (epnum == 0 && total_bytes == 0 && dir != tu_edpt_dir(NRF_USBD->BMREQUESTTYPE));
|
||||
|
||||
if (control_status) {
|
||||
// Status Phase also requires EasyDMA has to be available as well !!!!
|
||||
edpt_dma_start(&NRF_USBD->TASKS_EP0STATUS);
|
||||
|
||||
// The nRF doesn't interrupt on status transmit so we queue up a success response.
|
||||
dcd_event_xfer_complete(0, ep_addr, 0, XFER_RESULT_SUCCESS, is_in_isr());
|
||||
|
||||
// Status Phase also requires EasyDMA has to be available as well !!!!
|
||||
edpt_dma_start(&NRF_USBD->TASKS_EP0STATUS);
|
||||
} else if (dir == TUSB_DIR_OUT) {
|
||||
xfer->started = true;
|
||||
if (epnum == 0) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user