refactor(hcd_dwc): Added mps request from hcd_dwc

This commit is contained in:
Roman Leonov
2024-03-26 11:34:29 +01:00
committed by Darian Leung
parent 455674ae8c
commit 32a7719177
2 changed files with 19 additions and 0 deletions

View File

@@ -1798,6 +1798,16 @@ err:
return ret;
}
int hcd_pipe_get_mps(hcd_pipe_handle_t pipe_hdl)
{
pipe_t *pipe = (pipe_t *)pipe_hdl;
int mps;
HCD_ENTER_CRITICAL();
mps = pipe->ep_char.mps;
HCD_EXIT_CRITICAL();
return mps;
}
esp_err_t hcd_pipe_free(hcd_pipe_handle_t pipe_hdl)
{
pipe_t *pipe = (pipe_t *)pipe_hdl;