Changes between Version 3 and Version 4 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Comm/CComm


Ignore:
Timestamp:
04/09/18 15:16:53 (7 years ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v3 v4  
    66
    77=== Member Functions ===
     8
     9==== Process ====
     10
     11{{{
     12void Process(void)
     13}}}
     14
     15===== Description =====
     16
     17The Process method must be called regularly for the communication channel to be serviced allowing any receive events to occur. This should usually be done in the app background event such as:
     18{{{
     19BACKGROUND_EVENT(Comm)
     20{
     21   
     22   if(pComm != NULL)
     23   {
     24      pComm->Process();
     25   }
     26}
     27
     28==== AddRcvEvent ====
    829
    930{{{