Forked para SNOCC
Fork of RA8875 by
Diff: TextDisplay.cpp
- Revision:
- 37:f19b7e7449dc
- Parent:
- 33:b6b710758ab3
- Child:
- 46:1321832f11d8
--- a/TextDisplay.cpp Sat Jan 25 00:00:02 2014 +0000 +++ b/TextDisplay.cpp Sat Jan 25 19:47:33 2014 +0000 @@ -65,7 +65,7 @@ return noerror; } -RetCode_t TextDisplay::locate(unsigned int column, unsigned int row) +RetCode_t TextDisplay::locate(textloc_t column, textloc_t row) { INFO("locate(%d,%d)", column, row); _column = column; @@ -80,14 +80,14 @@ RetCode_t TextDisplay::foreground(uint16_t color) { - INFO("foreground(%4X)", color); + //INFO("foreground(%4X)", color); _foreground = color; return noerror; } RetCode_t TextDisplay::background(uint16_t color) { - INFO("background(%4X)", color); + //INFO("background(%4X)", color); _background = color; return noerror; }