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.
Dependencies: SNICInterface mbed-rtos mbed
Fork of murataDemo by
app_board_io.cpp
- Committer:
- kishino
- Date:
- 2014-05-27
- Revision:
- 15:abc12b228291
- Parent:
- 11:bdf601a405fc
- Child:
- 22:e567f0d4b05d
File content as of revision 15:abc12b228291:
#include "app_board_io.h"
#include "C12832_lcd.h"
extern C12832_LCD lcd;
extern "C" void lcd_printf( const char* fmt, ... )
{
char buffer[ 64 ];
va_list ap;
va_start( ap, fmt );
vsnprintf( buffer, 64, fmt, ap );
va_end( ap );
lcd.cls();
lcd.locate( 0, 3 );
lcd.printf( buffer );
//wait( 1.0 );
}
