Changes between Version 6 and Version 7 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Utility/GetMemFree


Ignore:
Timestamp:
03/12/25 07:47:44 (3 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Utility/GetMemFree

    v6 v7  
    22Get the amount of free RAM memory available
    33
    4 {{{
     4{{{#!c++
    55int GetMemFree(void);
    66}}}
     
    2020== Examples ==
    2121
    22 {{{
     22{{{#!c++
    2323string str = StrFmt("Free memory %d K bytes", GetMemFree());
    2424DisplayText(0, 0, str);
    2525}}}
    2626
    27 {{{
     27{{{#!c++
    2828// If less than 5M RAM free display a message
    2929if(GetMemFree() < 5000)