?? fprint.h
字號:
/*#########################################################################
fprint.h - definitions/declarations of custom print oper.
Copyright (c) 2005-2006, RICHISLAND All rights reserved.
Purpose :
Version :1.00
Author :
Complete Date :
Function List :
History :
_________________________________________________________________________
DATE AUTHOR VERSION DESCRIBE
-------------------------------------------------------------------------
2006-06-09 Ver1.00 Create
#########################################################################*/
#ifndef __F_PRINT_H__
#define __F_PRINT_H__
#include "fpubext.h"
#include "hd007.h"
//
// define base output function
//
/* print to standard output */
void print(char* a, ...);
//
// define lcd printing funcs prototype
//
/* open lcd device */
Boolean lcdInit();
/* print to lcd. */
void lcdprint(REGINT status, char* a, ...);
/* close lcd device */
void lcdClose();
#endif // __F_PRINT_H__
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -