Home
last modified time | relevance | path

Searched refs:sByteLength (Results 1 – 14 of 14) sorted by relevance

/bsp/ht32/libraries/HT32_STD_5xxxx_FWLib/library/HT32_USBD_Library/src/
A Dht32_usbd_core.c447 pCore->Device.Transfer.sByteLength = USB_NO_DATA; in _USBDCore_Reset()
508 pCore->Device.Transfer.sByteLength = 0; in _USBDCore_Setup()
573 if (pCore->Device.Transfer.sByteLength == 0) in _USBDCore_Setup()
785 pCore->Device.Transfer.sByteLength = 2; in _USBDCore_Standard_GetStatus()
921 pCore->Device.Transfer.sByteLength = 1; in _USBDCore_Standard_GetConfiguration()
962 if (pCore->Device.Transfer.sByteLength >= EP0INLen) in _USBDCore_ControlIN()
965 pCore->Device.Transfer.sByteLength -= len; in _USBDCore_ControlIN()
969 len = pCore->Device.Transfer.sByteLength; in _USBDCore_ControlIN()
970 pCore->Device.Transfer.sByteLength = USB_NO_DATA; in _USBDCore_ControlIN()
1005 pCore->Device.Transfer.sByteLength -= len; in _USBDCore_ControlOUT()
[all …]
/bsp/ht32/libraries/HT32_STD_1xxxx_FWLib/library/HT32_USBD_Library/src/
A Dht32_usbd_core.c447 pCore->Device.Transfer.sByteLength = USB_NO_DATA; in _USBDCore_Reset()
508 pCore->Device.Transfer.sByteLength = 0; in _USBDCore_Setup()
573 if (pCore->Device.Transfer.sByteLength == 0) in _USBDCore_Setup()
785 pCore->Device.Transfer.sByteLength = 2; in _USBDCore_Standard_GetStatus()
921 pCore->Device.Transfer.sByteLength = 1; in _USBDCore_Standard_GetConfiguration()
962 if (pCore->Device.Transfer.sByteLength >= EP0INLen) in _USBDCore_ControlIN()
965 pCore->Device.Transfer.sByteLength -= len; in _USBDCore_ControlIN()
969 len = pCore->Device.Transfer.sByteLength; in _USBDCore_ControlIN()
970 pCore->Device.Transfer.sByteLength = USB_NO_DATA; in _USBDCore_ControlIN()
1005 pCore->Device.Transfer.sByteLength -= len; in _USBDCore_ControlOUT()
[all …]
/bsp/ht32/libraries/usbd_library/src/
A Dht32_usbd_core.c479 pCore->Device.Transfer.sByteLength = USB_NO_DATA; in _USBDCore_Reset()
540 pCore->Device.Transfer.sByteLength = 0; in _USBDCore_Setup()
605 if (pCore->Device.Transfer.sByteLength == 0) in _USBDCore_Setup()
817 pCore->Device.Transfer.sByteLength = 2; in _USBDCore_Standard_GetStatus()
953 pCore->Device.Transfer.sByteLength = 1; in _USBDCore_Standard_GetConfiguration()
994 if (pCore->Device.Transfer.sByteLength >= EP0INLen) in _USBDCore_ControlIN()
997 pCore->Device.Transfer.sByteLength -= len; in _USBDCore_ControlIN()
1001 len = pCore->Device.Transfer.sByteLength; in _USBDCore_ControlIN()
1002 pCore->Device.Transfer.sByteLength = USB_NO_DATA; in _USBDCore_ControlIN()
1037 pCore->Device.Transfer.sByteLength -= len; in _USBDCore_ControlOUT()
[all …]
A Dht32_usbd_int.c127 rt_usbd_ep0_out_handler(udcd, pCore->Device.Transfer.sByteLength); in usbd_ep0_out_callback()
135 rt_usbd_ep_in_handler(udcd, EPTn | 0x80, pCore->Device.Transfer.sByteLength); in usbd_ep_in_callback()
142 rt_usbd_ep_out_handler(udcd, EPTn, pCore->Device.Transfer.sByteLength); in usbd_ep_out_callback()
A Dusbd_code.c231 pCore->Device.Transfer.sByteLength = USB_NO_DATA; in _USBDCore_Reset()
/bsp/ht32/libraries/ht32_drivers/
A Ddrv_usbd.c103 pCore->Device.Transfer.sByteLength = pCore->Device.Request.wLength; in usbd_ep0_out_callback()
104 rt_usbd_ep0_out_handler(udcd, pCore->Device.Transfer.sByteLength); in usbd_ep0_out_callback()
111 pCore->Device.Transfer.sByteLength = 0; in usbd_ep_in_callback()
112 rt_usbd_ep_in_handler(udcd, EPTn | 0x80, pCore->Device.Transfer.sByteLength); in usbd_ep_in_callback()
/bsp/ht32/libraries/HT32_STD_1xxxx_FWLib/library/HT32_USBD_Library/example/
A Dht32_usbd_class.c252 pDev->Transfer.sByteLength = DESC_LEN_XXX; in USBDClass_Standard_GetDescriptor()
259 pDev->Transfer.sByteLength = DESC_LEN_XXX; in USBDClass_Standard_GetDescriptor()
/bsp/ht32/libraries/HT32_STD_5xxxx_FWLib/library/HT32_USBD_Library/example/
A Dht32_usbd_class.c252 pDev->Transfer.sByteLength = DESC_LEN_XXX; in USBDClass_Standard_GetDescriptor()
259 pDev->Transfer.sByteLength = DESC_LEN_XXX; in USBDClass_Standard_GetDescriptor()
/bsp/ht32/libraries/HT32_STD_5xxxx_FWLib/library/HT32F5xxxx_Driver/src/
A Dht32_serial.c470 pDev->Transfer.sByteLength = 0; in SERIAL_USBDClass_Request()
490 …pDev->Transfer.sByteLength = (sizeof(USBDClassVCPLineCoding) > pDev->Request.wLength) ? (pDev->Req… in SERIAL_USBDClass_Request()
/bsp/ht32/libraries/HT32_STD_1xxxx_FWLib/library/HT32F1xxxx_Driver/src/
A Dht32_serial.c464 pDev->Transfer.sByteLength = 0;
484 …pDev->Transfer.sByteLength = (sizeof(USBDClassVCPLineCoding) > pDev->Request.wLength) ? (pDev->Req…
/bsp/ht32/libraries/HT32_STD_1xxxx_FWLib/library/HT32_USBD_Library/inc/
A Dht32_usbd_core.h117 …s32 sByteLength; /*!< Total length for control IN/OUT Transfer … member
/bsp/ht32/libraries/HT32_STD_5xxxx_FWLib/library/HT32_USBD_Library/inc/
A Dht32_usbd_core.h117 …s32 sByteLength; /*!< Total length for control IN/OUT Transfer … member
/bsp/ht32/libraries/usbd_library/inc/
A Dht32_usbd_core.h117 …s32 sByteLength; /*!< Total length for control IN/OUT Transfer … member
A Dusbd_code.h92 …s32 sByteLength; /*!< Total length for control IN/OUT Transfer … member

Completed in 28 milliseconds