Changes between Version 3 and Version 4 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Comm/CComm
- Timestamp:
- 04/09/18 15:16:53 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Comm/CComm
v3 v4 6 6 7 7 === Member Functions === 8 9 ==== Process ==== 10 11 {{{ 12 void Process(void) 13 }}} 14 15 ===== Description ===== 16 17 The 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 {{{ 19 BACKGROUND_EVENT(Comm) 20 { 21 22 if(pComm != NULL) 23 { 24 pComm->Process(); 25 } 26 } 27 28 ==== AddRcvEvent ==== 8 29 9 30 {{{