Changes between Version 15 and Version 16 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Comm/CCommSerial
- Timestamp:
- 01/23/24 11:09:59 (10 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Comm/CCommSerial
v15 v16 44 44 }}} 45 45 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.46 **NOTE** When "new" is used to instantiate an object be sure to "free" the memory when the use of the object is complete. Otherwise a memory leak will occur and the 825 may run out of memory. 47 47 48 48 {{{ 49 49 free(pSerial); 50 pSerial = NULL; // Good practice to set pointer to NULL after free 50 51 }}} 51 52