www.pudn.com > usbhost_source.rar > DISP.C
/**
* disp.c
* 画面表示関数
* Copyright (c)2002 Junichi Tomaru
*/
#include "h8hst.h"
/**
* メッセージを表示
*/
void dispmessage( char mes )
{
static char *mestbl[] = {
"SL811HS INIT", /* 0 */
" READY ", /* 1 */
" ", /* 2 */
" ", /* 3 */
" ", /* 4 */
" ", /* 5 */
" NO_DEVICE ", /* 6 */
" FULL_SPEED ", /* 7 */
" LOW_SPEED ", /* 8 */
" ", /* 9 */
" ", /* 10 */
" ", /* 11 */
" ", /* 12 */
" ", /* 13 */
" ", /* 14 */
" ", /* 15 */
" ", /* 16 */
" ", /* 17 */
" " /* 18 */
};
lcdprint( 0, 0, mestbl[mes] );
}
/* end of disp.c */