1.1.3.4.3 DRV_RF215_Tasks Function
C
void DRV_RF215_Tasks( SYS_MODULE_OBJ object );Summary
Maintains the RF215 driver's state machine.
Description
This function is used to maintain the RF215 driver's internal state machine.
Precondition
The DRV_RF215_Initialize routine must have been called to obtain a valid system object.
Parameters
| Param | Description |
|---|---|
| object | Driver object handle, returned from the DRV_RF215_Initialize routine. |
Returns
None.
Example
SYS_MODULE_OBJ sysObjDrvRf215; // Returned from DRV_RF215_Initialize
while (true)
{
DRV_RF215_Tasks (sysObjDrvRf215);
// 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).
