1.6.3.4 DRV_G3ADP_MAC_Tasks Function
C
void DRV_G3ADP_MAC_Tasks( SYS_MODULE_OBJ object );
Summary
Maintains the G3 ADP MAC driver's state machine.
Description
This function is used to maintain the driver's internal state machine
Precondition
The DRV_G3ADP_MAC_Initialize function must have been called before calling this function.
Parameters
Param | Description |
---|---|
object | Driver object handle, returned from DRV_G3ADP_MAC_Initialize |
Returns
None.
Example
if(pNetIf->macObjHandle != 0)
{
// process the underlying MAC module tasks
DRV_G3ADP_MAC_Tasks(pNetIf->macObjHandle);
}
Remarks
None.