1.3.3.30 SYS_NET_Task Function
C
void SYS_NET_Task(SYS_MODULE_OBJ obj)
Summary
Executes the SYS NET service state machine for the instance
Description
This function ensures that the Net system service is able to execute its state machine to process any messages and invoke the user callback for any events.
Precondition
SYS_NET_Open should have been called before calling this function
Parameters
Param | Description |
---|---|
obj | SYS NET object handle, returned from SYS_NET_Open |
Returns
None
Example
// Handle "objSysNet" value must have been returned from SYS_NET_Open.
while(1)
{
...
SYS_NET_Task(objSysNet);
...
}