Searched refs:RxRdPtr (Results 1 – 2 of 2) sorted by relevance
107 USBH_CDC_Info.RxRdPtr = 0; in USBH_CDC_DeInit()300 uint16_t available = USBH_CDC_Info.RxWrPtr - USBH_CDC_Info.RxRdPtr; in USBH_CDC_Read()309 memcpy(buff, (uint8_t *)&USBH_CDC_Info.RxBuff[USBH_CDC_Info.RxRdPtr], size); in USBH_CDC_Read()311 USBH_CDC_Info.RxRdPtr += size; in USBH_CDC_Read()312 if(USBH_CDC_Info.RxRdPtr == USBH_CDC_Info.RxWrPtr) // USBH_CDC_Info.RxBuff 中数据已全部读出 in USBH_CDC_Read()314 USBH_CDC_Info.RxRdPtr = 0; in USBH_CDC_Read()
49 uint16_t RxWrPtr, RxRdPtr; member
Completed in 9 milliseconds