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.
Dependents: UARTSnoop BaseJpegDecode_example
Fork of Terminal by
Revision 3:543e8e498e09, committed 2012-07-15
- Comitter:
- cbayley
- Date:
- Sun Jul 15 21:54:06 2012 +0000
- Parent:
- 2:85184c13476c
- Commit message:
- Version 2; HexDump style
Changed in this revision
| Terminal.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r 85184c13476c -r 543e8e498e09 Terminal.cpp
--- a/Terminal.cpp Tue Nov 23 16:03:35 2010 +0000
+++ b/Terminal.cpp Sun Jul 15 21:54:06 2012 +0000
@@ -32,7 +32,7 @@
void Terminal::locate(int column, int row) {
// Cursor Home <ESC>[{ROW};{COLUMN}H
- this->printf("\033[%d;%dH%c", row + 1, column + 1);
+ this->printf("\033[%d;%dH", row + 1, column + 1);
}
static int rgb888tobgr111(int colour) {
