Changes between Initial Version and Version 1 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/InitLCD


Ignore:
Timestamp:
08/19/10 15:09:56 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/InitLCD

    v1 v1  
     1= InitLCD =
     2Initializes the LCD display for use by an application.
     3
     4{{{
     5void InitLCD(int nGetImageDataAddr = 0);
     6}}}
     7
     8== Parameters ==
     9
     10 * nGetImageDataAddr - Set to 1 to allow application to perform operations other than text
     11
     12== Return Value ==
     13
     14 * void - does not return any value
     15
     16== Remarks ==
     17
     18 * Any application that will use the LCD display must call this function before any display functions are used.
     19 * Initialize with the parameter as 1 if the CBitmap class will be used to display bitmaps.
     20
     21== Examples ==
     22
     23{{{
     24InitLCD();
     25}}}
     26
     27{{{
     28InitLCD(1);
     29}}}
     30
     31== See Also ==
     32
     33 * PrintLCD
     34 * DisplayText