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:
1:18c56f038905
Parent:
0:9e72c57b16fd
Child:
5:684f79f70ac9
--- a/Terminal.cpp	Sat Jan 08 22:24:00 2011 +0000
+++ b/Terminal.cpp	Sat Jan 15 16:02:56 2011 +0000
@@ -7,7 +7,7 @@
 
 #include "mbed.h"
 
-Terminal::Terminal(PinName tx, PinName rx) : _serial(tx, rx) {
+Terminal::Terminal(PinName tx, PinName rx, const char *name) : TextDisplay(name), _serial(tx, rx) {
     cls();
 }