32 lines
852 B
C
32 lines
852 B
C
|
|
#ifndef __Display_h__
|
|||
|
|
#define __Display_h__
|
|||
|
|
|
|||
|
|
//SLM<4C><4D>Standard Liter per Minute<74><65><EFBFBD>DZ<EFBFBD>ʾÿ<CABE><C3BF><EFBFBD>ӱ<EFBFBD><EFBFBD><D7BC><EFBFBD><EFBFBD>
|
|||
|
|
//SCCM<43><4D>Standard Cubic Centimeter per Minute<74><65><EFBFBD>DZ<EFBFBD>ʾÿ<CABE><C3BF><EFBFBD>ӱ<EFBFBD><EFBFBD><D7BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
//SCFM standard cubic foot per minute <20><><EFBFBD><D7BC><EFBFBD><EFBFBD>Ӣ<EFBFBD><D3A2>ÿ<EFBFBD><C3BF><EFBFBD>ӣ<EFBFBD>Ӣ<EFBFBD><D3A2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>λ
|
|||
|
|
//SCFH standard cubic foot per Hour <20><><EFBFBD><D7BC><EFBFBD><EFBFBD>Ӣ<EFBFBD><D3A2>ÿСʱ
|
|||
|
|
//SLPM stard liter per minute<74><65><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><D7BC><EFBFBD><EFBFBD>ÿ<EFBFBD><C3BF><EFBFBD><EFBFBD>
|
|||
|
|
|
|||
|
|
// 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
|