1.1.2.4.19 DRV_G3_MACRT_Tasks Function
C
void DRV_G3_MACRT_Tasks ( SYS_MODULE_OBJ object );
Summary
Maintains the G3 MAC RT driver's state machine.
Description
This function is used to maintain the G3 MAC RT driver's internal state machine.
Precondition
DRV_G3_MACRT_Initialize must have been called before calling this function.
Parameters
Param | Description |
---|---|
object | Object handle for the specified driver instance (returned from DRV_G3_MACRT_Initialize) |
Returns
None.
Example
SYS_MODULE_OBJ object; // Returned from DRV_G3_MACRT_Initialize while (true) { DRV_G3_MACRT_Tasks (object); // Do other tasks }
Remarks
This function is normally not called directly by an application. It is called by the system's Tasks routine (SYS_Tasks).
This function will never block or access any resources that may cause it to block.