1234567891011121314151617181920212223 |
- #ifndef __TEM_H
- #define __TEM_H
- #include "cang.h"
- #define TEM_BUF_DEP 20
- typedef struct{
- int16_t TEM_HData[TEM_BUF_DEP]; //顶部温度数据
- int16_t TEM_MData[TEM_BUF_DEP]; //中间温度数据
- int16_t TEM_LData[TEM_BUF_DEP]; //底部温度数据
- uint16_t TEM_ErrorCnt; //错误计数
- uint16_t TEM_Error; //错误状态
- uint16_t TEM_StateKeepNum; //判断次数
- uint16_t RTData_Num; //8仓,每仓三点测温
- }TEM_Inf;
- extern TEM_Inf tem_inf[SENSOR_DEEP];
- #endif
|