Changes between Initial Version and Version 1 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Utility/GetMnBdVer


Ignore:
Timestamp:
08/26/10 10:57:02 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v1 v1  
     1= GetMnBdVer =
     2Gets the main board version
     3
     4{{{
     5int GetMnBdVer();
     6}}}
     7
     8== Parameters ==
     9
     10Function does not accept any parameters.
     11
     12== Return Value ==
     13
     14Returns numeric representation of the version multipled times 100, so version 1.16 is returned as 116.
     15
     16== Remarks ==
     17
     18MnBdStartup must be called before this will return a valid result.
     19
     20== Example ==
     21
     22{{{
     23int n = GetMnBdVer();
     24if(n < 116)
     25{
     26   DisplayText(0, 0, "Main board update recommended");
     27}
     28}}}
     29
     30== See Also ==
     31