fprint.h

来自「这是一个潜入式开发的c语言代码」· C头文件 代码 · 共 49 行

H
49
字号
/*#########################################################################

  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 + =
减小字号Ctrl + -
显示快捷键?