32 lines
852 B
C
Executable File
32 lines
852 B
C
Executable File
#ifndef __Display_h__
|
||
#define __Display_h__
|
||
|
||
//SLM(Standard Liter per Minute)是表示每分钟标准升。
|
||
//SCCM(Standard Cubic Centimeter per Minute)是表示每分钟标准毫升。
|
||
//SCFM standard cubic foot per minute 标准立方英尺每分钟,英制流量单位
|
||
//SCFH standard cubic foot per Hour 标准立方英尺每小时
|
||
//SLPM stard liter per minute,即标准公升每分钟
|
||
|
||
// for display mode
|
||
#define NO_DIS_UPDATE 0x00
|
||
#define NORMOL_UPDATE 0x01
|
||
#define INIT_UPDATE 0x02
|
||
#define FLASH_UPDATE 0x03
|
||
|
||
#ifndef ENABLE_LCD_DISPLAY
|
||
#pragma message("[undefined] ENABLE_LCD_DISPLAY")
|
||
#endif
|
||
#if(ENABLE_LCD_DISPLAY)
|
||
|
||
extern unsigned int displayBit;
|
||
|
||
void NumericPrepForOutputAndDisplay(void);
|
||
void DisplayInit(void);
|
||
void AlarmFlashDisplay(void);
|
||
void ZeroFlowrateDisplay(void);
|
||
|
||
/**********************************/
|
||
#endif
|
||
|
||
#endif
|