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 C12832_lcd by
Revision 10:8f86576007d6, committed 2013-10-27
- Comitter:
- sam_grove
- Date:
- Sun Oct 27 23:16:07 2013 +0000
- Parent:
- 9:e0e646b7fd20
- Child:
- 12:a66fded29327
- Commit message:
- Don't claim stdout by default. Make the user of the library do that.
Changed in this revision
| C12832_lcd.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/C12832_lcd.cpp Fri Oct 25 21:35:30 2013 +0000
+++ b/C12832_lcd.cpp Sun Oct 27 23:16:07 2013 +0000
@@ -172,7 +172,8 @@
memset(buffer,0x00,512); // clear display buffer
copy_to_lcd();
auto_up = 1; // switch on auto update
- claim(stdout); // redirekt printf to lcd
+ // dont do this by default. Make the user call
+ //claim(stdout); // redirekt printf to lcd
locate(0,0);
set_font((unsigned char*)Small_7); // standart font
}
