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 LogUtil by
Revision 8:efb8e1e2679f, committed 2017-01-10
- Comitter:
- raprism
- Date:
- Tue Jan 10 22:19:48 2017 +0100
- Parent:
- 7:ef45bd2cd9bb
- Commit message:
- - fix case of __NOP command
Changed in this revision
| LogUtil.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/LogUtil.cpp Fri May 10 18:36:27 2013 +0000
+++ b/LogUtil.cpp Tue Jan 10 22:19:48 2017 +0100
@@ -26,7 +26,7 @@
LogUtil::LogUtil(Serial &serial, uint32_t baudrate)
{
_serial = &serial;
- (baudrate > 0) ? _serial->baud(baudrate) : __nop();
+ (baudrate > 0) ? _serial->baud(baudrate) : __NOP();
_serial->printf("\033[2J"); // clear the terminal
_serial->printf("\033[1;1H");// and set the cursor to home
wait(0.5f);
@@ -34,4 +34,4 @@
}
-
\ No newline at end of file
+
