#ifndef NTCTSENSOR_H #define NTCTSENSOR_H #include #include "app/thermo/tsensor_common.h" typedef int32_t tNTCSensorTemp; typedef struct { bool ( * Init )(); bool ( * GetReady)(); void ( * ResetTempAVG)(); bool ( * ServeSensor)(); tNTCSensorTemp ( * GetTempAVG)(); void ( * SetSensorInterval)(uint32_t ms); void ( * UpdateCurrentTempCoeff)(uint16_t temp_coeff); } sNtcThermoSensorHandle_t; extern const sNtcThermoSensorHandle_t NtcThermoSensor; #endif