Changes between Initial Version and Version 1 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/GetLinuxTime


Ignore:
Timestamp:
08/20/10 15:43:49 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/GetLinuxTime

    v1 v1  
     1= GetLinuxTime =
     2Reads the OPI board clock into the g_datetime structure.
     3
     4{{{
     5void GetLinuxTime(void);
     6}}}
     7
     8== Parameters ==
     9
     10This function does not accept any parameters.
     11
     12== Return Value ==
     13
     14This function does not return any result.
     15
     16== Remarks ==
     17
     18The IsTimeChanged function copies the current time into the g_datetime structure only when the time is changed so it is more efficient to use IsTimeChanged instead of this function.
     19
     20== Examples ==
     21
     22{{{
     23GetLinuxTime();
     24DisplayText(0, 0, GetTimeStr(1));
     25}}}
     26
     27
     28== See Also ==
     29
     30 * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/IsTimeChanged IsTimeChanged]
     31