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
--- a/Sed133xLCD.cpp	Sat Jan 29 20:48:08 2011 +0000
+++ b/Sed133xLCD.cpp	Sat Jan 29 21:04:53 2011 +0000
@@ -286,7 +286,7 @@
 }
 
 void Sed133xLCD::clsText(void) {
-    /**
+    /*
      * Clear text screen
      */
      
@@ -300,7 +300,7 @@
 }
 
 void Sed133xLCD::clsGraphics(void) {
-    /**
+    /*
      * clear graphics screen
      */
 
@@ -314,7 +314,7 @@
 }
 
 void Sed133xLCD::clearCharacterGeneratorRam(void) {
-    /**
+    /*
      * Clear character generator RAM
      */
      
@@ -349,7 +349,7 @@
 }
 
 void Sed133xLCD::setCursor(uint8_t column, uint8_t row) {
-    /**
+    /*
       * set cursor on text screen 
       */
     int pos = row * _columns + column;
@@ -359,7 +359,7 @@
 }
 
 void Sed133xLCD::setCursor(int pos) {
-    /**
+    /*
      * set cursor on graphical screen 
      */
     sendCommand(SET_CURSOR);
@@ -367,7 +367,7 @@
     sendData( pos >> 8);
 }
 
-/**
+/*
  * Public functions 
  */