Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
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; }