//-------------------------------------------------------// // Project Code : ALE300K03-21-LGE-GEN2.0-ME-CPU1 // File Name : Ntc.h // Created on : 2022. 10. 17. // Description : // Author : KimJeongWoo // Last modified Date : //-------------------------------------------------------// #ifndef MAIN_RESOURCE_NTC_H_ #define MAIN_RESOURCE_NTC_H_ #ifdef __cplusplus extern "C" { #endif #include "CodeLibrary.h" struct sTEMP_LIST { //Internal ADC float DcSwHeatSink1; float DcSwHeatSink2; float AcSwHeatSink1; //나중에 변수명 정확하게 기입 할 것 float AcSwHeatSink2; float Spare1; float Spare2; //I.C 온도 float MCU; float RTC; }; #pragma SET_DATA_SECTION(".TempData") extern sTEMP_LIST Temp; #pragma SET_DATA_SECTION() extern void InitNtcTable(void); extern void NtcRead(void); #ifdef __cplusplus } #endif /* extern "C" */ #endif /* MAIN_RESOURCE_NTC_H_ */