Merge pull request #1614 from kasjer/kasjer/fix-nrf5x-with-iso

nrf5x: Fix endpoint internal state when closed
This commit is contained in:
Ha Thach
2022-08-26 13:47:36 +07:00
committed by GitHub

View File

@@ -438,6 +438,7 @@ void dcd_edpt_close (uint8_t rhport, uint8_t ep_addr)
// When both ISO endpoint are close there is no need for SOF any more.
if (_dcd.xfer[EP_ISO_NUM][TUSB_DIR_IN].mps + _dcd.xfer[EP_ISO_NUM][TUSB_DIR_OUT].mps == 0) NRF_USBD->INTENCLR = USBD_INTENCLR_SOF_Msk;
}
_dcd.xfer[epnum][dir].started = false;
__ISB(); __DSB();
}