A TextDisplay driver that supports graphical displays using on of the SED133x conrtrolers. Allows stdout and stderr output to be redirected to the display.

Revision:
7:d79600310cfe
Parent:
6:2f8aed3d2be4
Child:
8:66be6a696e4e
--- a/Sed133xLCD.h	Sat Jan 29 20:48:08 2011 +0000
+++ b/Sed133xLCD.h	Sat Jan 29 21:04:53 2011 +0000
@@ -45,16 +45,16 @@
  * Supports SED1330 (and probably the SED1335 and SED1336).
  * Based on datasheet 268-0.4
 
- *This code drives the display using the 8080 interface:
- *     SEL1 = 0
- *     SEL2 = 0
- * These things require a lot of pins:
+ *This code drives the display using the 8080 interface (SEL1 = 0, SEL2 = 0).
+ * Required pins:
+ * @code
  * 8 bits for the databus +
  * *Reset 
  * *Read
  * *Write
  * *ChipSelect
  * A0
+ * @endcode
  *
  * @code
  * Note1: Reset is a Schmitt trigger input that can normally not be driven from
@@ -106,7 +106,7 @@
      * @param d0-d7 PinName for D0 -D7
      * @param hor_dots horizontal resolution  of display (in pixels), default: 256
      * @param vert_dots vertical resolution of display (in pixels), default: 128
-     * @param char_width diaply width of character (in pixels), default: 6
+     * @param char_width disply width of character (in pixels), default: 6
      * @param char_height display height of character (in pixels), default: 8 
      * @param name name to be used in pathname of the stream (defaults to "sed133x")
      */
@@ -129,7 +129,6 @@
     // locate, putc, printf come from parent class
 
 protected:
-
     commandName_t commandNameTab[];
     char *commandName(command_t command_val);
     void busWait(void);