Changes between Version 14 and Version 15 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Comm/CComm


Ignore:
Timestamp:
08/19/24 14:52:21 (3 months ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v14 v15  
    1818==== Parameters ====
    1919
    20  * pConnection - pointer to connection instance to send to, May be NULL to send to all instances. This is only significant for TCP/IP server, NULL will send to all connected clients, or specified connection will send to a  specific connected client.
     20 * pConnection - pointer to connection instance to send to, May be NULL to send to all instances. This is only significant for TCP/IP server, NULL will send to all connected clients, or specified connection will send to a specific connected client.
    2121 * data - pointer to data to be sent
    2222 * len - number of bytes of data to send
     
    6969
    7070Specifies a receive event (callback function) when after data is received based on the specified start, end chars, data count. A COMM_EVENT preprocessor define is provided to simply the event function declarations.
    71 If start character may be specified as START_CHR_ANY to start with any character. END_CHR_ANY for no specific end character. If fixed size raw data is to be received the nRawCnt value may be specified.
     71If start character may be specified as START_CHR_ANY to start with any character. END_CHR_ANY for no specific end character. END_CHR_ANY should normally only be used if fixed size raw data is to be received and the nRawCnt value is specified.
    7272
    7373==== Example ====