1.5.4.5 AL_Tasks Function

C

void AL_Tasks (
        SYS_MODULE_OBJ object
);

Summary

Routine that maintains the state machine in the AL module.

Description

Routine that performs the tasks necessary to maintain the state machine in the Meters And More AL module.

Returns

None.

Example

    SYS_MODULE_OBJ   sysObjMetersandmore;

    AL_INIT alInitData = {
        .taskRateMs = 5U,
        .isMaster = false
    };

    sysObjMetersandmore = AL_Initialize(0, (SYS_MODULE_INIT *)&dllInitData);

    AL_Tasks(sysObjMetersandmore);

Remarks

It is called from System Initialize module. User Application does not need to call this function.