#ifndef __TSD_H__ #define __TSD_H__ /*************************************************************************************///External Function extern void TSD_Init(void); extern void TEMP_Check(void); typedef struct { uint8 CheckCount; // uint8 TSD_Enable_Flag; // 温度检测使能标志位 uint8 TSD_Trigger_Flag; // 温度检测触发标志位 uint8 ActualTemper; // uint16 Trigger_Value; // uint16 TSD_Dec_Time; // 温度检测时间计数 }MCUTemperature; extern MCUTemperature xdata TSDTemperature; #endif