Changes between Version 4 and Version 5 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Comm/CCommClient


Ignore:
Timestamp:
09/24/21 07:50:32 (3 years ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Comm/CCommClient

    v4 v5  
    2424==== Description ====
    2525
    26 
     26The Process method must be called regularly for the communication channel to be serviced allowing any receive events to occur. This also allows the reconnect option to be performed. This should usually be done in the app background event such as:
     27{{{
     28BACKGROUND_EVENT(Comm)
     29{
     30   if(pComm != NULL)
     31   {
     32      pComm->Process();
     33   }
     34}
     35}}}
    2736
    2837