Changes between Version 6 and Version 7 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Utility/GetMemFree
- Timestamp:
- 03/12/25 07:47:44 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Utility/GetMemFree
v6 v7 2 2 Get the amount of free RAM memory available 3 3 4 {{{ 4 {{{#!c++ 5 5 int GetMemFree(void); 6 6 }}} … … 20 20 == Examples == 21 21 22 {{{ 22 {{{#!c++ 23 23 string str = StrFmt("Free memory %d K bytes", GetMemFree()); 24 24 DisplayText(0, 0, str); 25 25 }}} 26 26 27 {{{ 27 {{{#!c++ 28 28 // If less than 5M RAM free display a message 29 29 if(GetMemFree() < 5000)