23 lines
370 B
C
23 lines
370 B
C
#ifndef USER_FORM_PRESENT
|
|
#define USER_FORM_PRESENT
|
|
|
|
void Form_Refresh();
|
|
void Form_OnKey(u8 key);
|
|
void Form_OnTimer();
|
|
void Form_ResetTimer();
|
|
|
|
void Form_Start();
|
|
|
|
// 是否主界面
|
|
uint8_t MeterInMeterPage();
|
|
// 是否在测试界面
|
|
uint8_t MeterInSamplePage();
|
|
|
|
// 是否需要切换显示
|
|
uint8_t MeterNeedRoll();
|
|
|
|
// 双压力滚动显示序号
|
|
extern volatile uint8_t Form_rollIdx;
|
|
|
|
#endif
|