Changes between Version 12 and Version 13 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Comm/CComm
- Timestamp:
- 02/06/20 15:50:41 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Comm/CComm
v12 v13 107 107 // Now the app can call pComm->Send to send data without regard for whether it is serial or TCP/IP. 108 108 109 pComm->AddRcvEvent(CHR_STX, CHR_ETX, CommEventDataMsg, 0, NULL); 109 // Designate receive event COMM_EVENT(DataMsg) to be called when data starting with STX and ending with ETX is received 110 pComm->AddRcvEvent(CHR_STX, CHR_ETX, NAME_COMM_EVENT(DataMsg), 0, NULL); 110 111 111 112 }