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


Ignore:
Timestamp:
01/23/24 11:07:57 (10 months ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v14 v15  
    4444}}}
    4545
    46 **NOTE** When "new" is used to instantiate on object be sure to use "free" at an appropriate point in the code to release the memory. Otherwise a memory leak will occur and the 825 may run out of memory.
     46**NOTE** When "new" is used to instantiate on object be sure to use "free" on the pointer when the use of the object is complete to release the memory. Otherwise a memory leak will occur and the 825 may run out of memory.
     47
     48{{{
     49  free(pSerial);
     50}}}
    4751
    4852==== Example ====