Documentation fixes.
authorbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 23 Feb 2006 10:59:14 +0000 (10:59 +0000)
committerbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Thu, 23 Feb 2006 10:59:14 +0000 (10:59 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@546 38d2e660-2303-0410-9eaa-f027e97ec537

drv/lcd_text.h

index 1a0ecae3d2063ba64518b96200af0bafc6e50831..3318297263697e0785f59a9c48f34e191814f7da 100755 (executable)
@@ -14,6 +14,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.2  2006/02/23 10:59:14  bernie
+ *#* Documentation fixes.
+ *#*
  *#* Revision 1.1  2005/11/04 18:00:42  bernie
  *#* Import into DevLib.
  *#*
@@ -78,10 +81,12 @@ typedef struct _Layer
        /*! Priority of this layer (greater in front of lesser). */
        char pri;
 
-       /*!
-        * Buffer per il salvataggio ed il ripristino del
-        * contenuto del display. Le posizioni che contengono
-        * il carattere '\0' sono trasparenti.
+       /**
+        * Layer backing store buffer.
+        *
+        * All writes through the layer are copied into this buffer.
+        * Characters cells with value 0 are transparent with respect
+        * to other layers in the background.
         */
        char buf[LCD_COLS * LCD_ROWS];
 } Layer;