#include <dwc.h>
typedef void (*DWCUserSendCallback)( int size, u8 aid );
This function is called when data was sent using DWC_SendReliable
, DWC_SendReliableBitmap
, DWC_SendUnreliable
, or DWC_SendUnreliableBitmap
.
When data has been sent using an AID bitmap, the callback function is called each time that data is successfully sent to an AID.
This callback function can be set using DWC_SetUserSendCallback
.
size |
Size of the received data. |
aid |
AID of the send destination. |
None.
DWC_SetUserSendCallback, DWC_SendReliable, DWC_SendReliableBitmap, DWC_SendUnreliable, DWC_SendUnreliableBitmap
02/21/2006 Revised to include all function names
12/16/2005 Revised function's description
11/01/2005 Initial version