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.
Revision 1:a3bd01d498a9, committed 2012-01-27
- Comitter:
- Ipu
- Date:
- Fri Jan 27 08:57:21 2012 +0000
- Parent:
- 0:acdab91342e6
- Commit message:
- insert comments
Changed in this revision
| Terminal.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/Terminal.cpp Thu Jan 26 19:30:33 2012 +0000
+++ b/Terminal.cpp Fri Jan 27 08:57:21 2012 +0000
@@ -20,6 +20,11 @@
* THE SOFTWARE.
*/
+/*
+ * 26.01.2012 -> Line 35 edited by Stefan Hendrich, all other code is original
+ */
+
+
#include "Terminal.h"
#include "mbed.h"
@@ -32,7 +37,7 @@
void Terminal::locate(int column, int row) {
// Cursor Home <ESC>[{ROW};{COLUMN}H
- this->printf("\033[%d;%dH", row + 1, column + 1);
+ this->printf("\033[%d;%dH", row + 1, column + 1); // %c deleted by Stefan Hendrich at 26.01.2012
}
static int rgb888tobgr111(int colour) {