1.2.4.6 DLL_Tasks Function

C

void DLL_Tasks (
        SYS_MODULE_OBJ object
);

Summary

Routine that maintains the state machine in the DLL module.

Description

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

Returns

None.

Example

    SYS_MODULE_OBJ   sysObjMetersandmore;

    DLL_INIT dllInitData = {
        .taskRateMs = 1U,
        .isMaster = false
    };

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

    DLL_Tasks(sysObjMetersandmore);

Remarks

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