Changes between Version 1 and Version 2 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Utility/GetMemFree
- Timestamp:
- 08/26/10 16:54:09 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Utility/GetMemFree
v1 v2 12 12 == Return Value == 13 13 14 This function returns the number of bytes of RAM is available in the system.14 This function returns the number of K bytes of RAM is available in the system. 15 15 16 16 == Remarks == … … 21 21 22 22 {{{ 23 string str = StrFmt("Free memory %d ", GetMemFree());23 string str = StrFmt("Free memory %d K bytes", GetMemFree()); 24 24 DisplayText(0, 0, str); 25 25 }}}