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 Terminal by
Revision 3:77e3f1825318, committed 2016-10-23
- Comitter:
- CO657_dmd20
- Date:
- Sun Oct 23 20:26:02 2016 +0000
- Parent:
- 2:85184c13476c
- Commit message:
Changed in this revision
Terminal.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/Terminal.cpp Tue Nov 23 16:03:35 2010 +0000 +++ b/Terminal.cpp Sun Oct 23 20:26:02 2016 +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) {