1.1.6.4.3 DRV_SDMMC_Tasks Function
C
void DRV_SDMMC_Tasks ( SYS_MODULE_OBJ object );
Summary
Maintains the driver's state machine.
Description
This routine is used to maintain the driver's internal state machine.
Precondition
The DRV_SDMMC_Initialize routine must have been called for the specified SDMMC driver instance.
Parameters
| Param | Description |
|---|---|
| object | Object handle for the specified driver instance (returned from DRV_SDMMC_Initialize) |
Returns
None
Example
SYS_MODULE_OBJ object; // Returned from DRV_SDMMC_Initialize
while (true)
{
DRV_SDMMC_Tasks (object);
// Do other tasks
}Remarks
This routine is normally not called directly by an application. It is called by the system's Tasks routine (SYS_Tasks).
