//-------------------------------------------------------// // Project Code : ALE300K03-21-LGE-GEN2.0-BE-CPU2 // File Name : F28377D_TempSensor.h // Created on : 2022. 12. 16. // Description : // Author : KimJeongWoo // Last modified Date : //-------------------------------------------------------// #ifndef COMMON_RESOURCE_COMMONLIBRARY_INCLUDE_F28377D_TEMPSENSOR_H_ #define COMMON_RESOURCE_COMMONLIBRARY_INCLUDE_F28377D_TEMPSENSOR_H_ #ifdef __cplusplus extern "C" { #endif extern void InitDspTempSensor(void); extern int16 GetTemperatureC(int16 sensorSample); extern int16 GetTemperatureK(int16 sensorSample); #pragma SET_DATA_SECTION(".IntTemp") extern float32 tempSensor_tempSlope; extern float32 tempSensor_tempOffset; extern float32 tempSensor_scaleFactor; #pragma SET_DATA_SECTION() #ifdef __cplusplus } #endif /* extern "C" */ #endif /* COMMON_RESOURCE_COMMONLIBRARY_INCLUDE_F28377D_TEMPSENSOR_H_ */