Home
last modified time | relevance | path

Searched refs:ep_addr (Results 1 – 7 of 7) sorted by relevance

/lk-master/external/platform/stm32f7xx/STM32F7xx_HAL_Driver/Src/
A Dstm32f7xx_hal_pcd.c762 if ((ep_addr & 0x80) == 0x80) { in HAL_PCD_EP_Open()
767 ep->num = ep_addr & 0x7F; in HAL_PCD_EP_Open()
798 if ((ep_addr & 0x80) == 0x80) { in HAL_PCD_EP_Close()
803 ep->num = ep_addr & 0x7F; in HAL_PCD_EP_Close()
833 ep->num = ep_addr & 0x7F; in HAL_PCD_EP_Receive()
841 if ((ep_addr & 0x7F) == 0 ) { in HAL_PCD_EP_Receive()
880 ep->num = ep_addr & 0x7F; in HAL_PCD_EP_Transmit()
888 if ((ep_addr & 0x7F) == 0 ) { in HAL_PCD_EP_Transmit()
916 ep->num = ep_addr & 0x7F; in HAL_PCD_EP_SetStall()
922 if ((ep_addr & 0x7F) == 0) { in HAL_PCD_EP_SetStall()
[all …]
/lk-master/external/platform/stm32f0xx/STM32F0xx_HAL_Driver/
A Dstm32f0xx_hal_pcd.c658 if ((ep_addr & 0x80U) == 0x80U) in HAL_PCD_EP_Open()
666 ep->num = ep_addr & 0x7FU; in HAL_PCD_EP_Open()
763 if ((ep_addr & 0x80U) == 0x80U) in HAL_PCD_EP_Close()
771 ep->num = ep_addr & 0x7FU; in HAL_PCD_EP_Close()
844 ep->num = ep_addr & 0x7FU; in HAL_PCD_EP_Receive()
905 ep->num = ep_addr & 0x7FU; in HAL_PCD_EP_Transmit()
962 if ((0x80U & ep_addr) == 0x80U) in HAL_PCD_EP_SetStall()
968 ep = &hpcd->OUT_ep[ep_addr]; in HAL_PCD_EP_SetStall()
972 ep->num = ep_addr & 0x7FU; in HAL_PCD_EP_SetStall()
1012 ep = &hpcd->OUT_ep[ep_addr]; in HAL_PCD_EP_ClrStall()
[all …]
A Dstm32f0xx_hal_pcd_ex.c98 uint16_t ep_addr, in HAL_PCDEx_PMAConfig() argument
106 if ((0x80U & ep_addr) == 0x80U) in HAL_PCDEx_PMAConfig()
108 ep = &hpcd->IN_ep[ep_addr & 0x7FU]; in HAL_PCDEx_PMAConfig()
112 ep = &hpcd->OUT_ep[ep_addr]; in HAL_PCDEx_PMAConfig()
/lk-master/external/platform/stm32f7xx/STM32F7xx_HAL_Driver/Inc/
A Dstm32f7xx_hal_pcd.h268 HAL_StatusTypeDef HAL_PCD_EP_Open(PCD_HandleTypeDef *hpcd, uint8_t ep_addr, uint16_t ep_mps, uint8_…
269 HAL_StatusTypeDef HAL_PCD_EP_Close(PCD_HandleTypeDef *hpcd, uint8_t ep_addr);
270 HAL_StatusTypeDef HAL_PCD_EP_Receive(PCD_HandleTypeDef *hpcd, uint8_t ep_addr, uint8_t *pBuf, uint3…
271 HAL_StatusTypeDef HAL_PCD_EP_Transmit(PCD_HandleTypeDef *hpcd, uint8_t ep_addr, uint8_t *pBuf, uint…
272 uint16_t HAL_PCD_EP_GetRxCount(PCD_HandleTypeDef *hpcd, uint8_t ep_addr);
273 HAL_StatusTypeDef HAL_PCD_EP_SetStall(PCD_HandleTypeDef *hpcd, uint8_t ep_addr);
274 HAL_StatusTypeDef HAL_PCD_EP_ClrStall(PCD_HandleTypeDef *hpcd, uint8_t ep_addr);
275 HAL_StatusTypeDef HAL_PCD_EP_Flush(PCD_HandleTypeDef *hpcd, uint8_t ep_addr);
/lk-master/external/platform/stm32f0xx/STM32F0xx_HAL_Driver/inc/
A Dstm32f0xx_hal_pcd.h278 HAL_StatusTypeDef HAL_PCD_EP_Open(PCD_HandleTypeDef *hpcd, uint8_t ep_addr, uint16_t ep_mps, uint8_…
279 HAL_StatusTypeDef HAL_PCD_EP_Close(PCD_HandleTypeDef *hpcd, uint8_t ep_addr);
280 HAL_StatusTypeDef HAL_PCD_EP_Receive(PCD_HandleTypeDef *hpcd, uint8_t ep_addr, uint8_t *pBuf, uint3…
281 HAL_StatusTypeDef HAL_PCD_EP_Transmit(PCD_HandleTypeDef *hpcd, uint8_t ep_addr, uint8_t *pBuf, uint…
282 uint16_t HAL_PCD_EP_GetRxCount(PCD_HandleTypeDef *hpcd, uint8_t ep_addr);
283 HAL_StatusTypeDef HAL_PCD_EP_SetStall(PCD_HandleTypeDef *hpcd, uint8_t ep_addr);
284 HAL_StatusTypeDef HAL_PCD_EP_ClrStall(PCD_HandleTypeDef *hpcd, uint8_t ep_addr);
285 HAL_StatusTypeDef HAL_PCD_EP_Flush(PCD_HandleTypeDef *hpcd, uint8_t ep_addr);
A Dstm32f0xx_hal_pcd_ex.h69 uint16_t ep_addr,
/lk-master/platform/stm32f0xx/
A Dusbc.c273 uint8_t ep_addr = ep | ((dir == USB_IN) ? 0x80 : 0); in usbc_setup_endpoint() local
275 HAL_PCDEx_PMAConfig(&usbc.handle, ep_addr, PCD_SNG_BUF, in usbc_setup_endpoint()
278 HAL_StatusTypeDef ret = HAL_PCD_EP_Open(&usbc.handle, ep_addr, width, type); in usbc_setup_endpoint()

Completed in 12 milliseconds