tem.h 487 B

1234567891011121314151617181920212223
  1. #ifndef __TEM_H
  2. #define __TEM_H
  3. #include "cang.h"
  4. #define TEM_BUF_DEP 20
  5. typedef struct{
  6. int16_t TEM_HData[TEM_BUF_DEP]; //顶部温度数据
  7. int16_t TEM_MData[TEM_BUF_DEP]; //中间温度数据
  8. int16_t TEM_LData[TEM_BUF_DEP]; //底部温度数据
  9. uint16_t TEM_ErrorCnt; //错误计数
  10. uint16_t TEM_Error; //错误状态
  11. uint16_t TEM_StateKeepNum; //判断次数
  12. uint16_t RTData_Num; //8仓,每仓三点测温
  13. }TEM_Inf;
  14. extern TEM_Inf tem_inf[SENSOR_DEEP];
  15. #endif