Changes between Version 4 and Version 5 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Comm/CCommClient
- Timestamp:
- 09/24/21 07:50:32 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Comm/CCommClient
v4 v5 24 24 ==== Description ==== 25 25 26 26 The 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 {{{ 28 BACKGROUND_EVENT(Comm) 29 { 30 if(pComm != NULL) 31 { 32 pComm->Process(); 33 } 34 } 35 }}} 27 36 28 37