Changes between Version 12 and Version 13 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Comm/CComm


Ignore:
Timestamp:
02/06/20 15:50:41 (4 years ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v12 v13  
    107107   // Now the app can call pComm->Send to send data without regard for whether it is serial or TCP/IP.
    108108
    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);
    110111
    111112}