📄 measure.h
字号:
/******************************************************************************/
/* */
/* MEASURE.H: struct type and extern definitions for MEASURE project */
/* */
/******************************************************************************/
#include "type.h"
struct clock { /* structure of the clock record */
unsigned char hour; /* hour */
unsigned char min; /* minute */
unsigned char sec; /* second */
};
struct mrec { /* structure for measurement records */
struct clock time; /* time of measurement */
uchar temper[10]; /* temperature */
};
/* external functions: */
extern void measure_display (struct mrec disp); /* display mrec */
extern void set_time (uchar *buffer); /* set current time */
extern char code ERROR []; /* ERROR message string */
extern struct mrec current; /* current measurements */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -