128 #if TS_EPCOS_B57861S0103F045_POSITION_IN_RESISTOR_DIVIDER_IS_R_1 == true
129 #define TS_EPCOS_B57861S0103F045_ADC_VOLTAGE_V_MAX_V \
130 (float)((TS_EPCOS_B57861S0103F045_RESISTOR_DIVIDER_SUPPLY_VOLTAGE_V * ts_b57861s0103f045Lut[ts_b57861s0103f045LutSize-1].resistance_Ohm) / (ts_b57861s0103f045Lut[ts_b57861s0103f045LutSize-1].resistance_Ohm+TS_EPCOS_B57861S0103F045_RESISTOR_DIVIDER_RESISTANCE_R_1_R_2_Ohm))
131 #define TS_EPCOS_B57861S0103F045_ADC_VOLTAGE_V_MIN_V \
132 (float)((TS_EPCOS_B57861S0103F045_RESISTOR_DIVIDER_SUPPLY_VOLTAGE_V * ts_b57861s0103f045Lut[0].resistance_Ohm) / (ts_b57861s0103f045Lut[0].resistance_Ohm+TS_EPCOS_B57861S0103F045_RESISTOR_DIVIDER_RESISTANCE_R_1_R_2_Ohm))
134 #define TS_EPCOS_B57861S0103F045_ADC_VOLTAGE_V_MIN_V \
135 ((float)((TS_EPCOS_B57861S0103F045_RESISTOR_DIVIDER_SUPPLY_VOLTAGE_V * ts_b57861s0103f045Lut[ts_b57861s0103f045LutSize-1].resistance_Ohm) / (ts_b57861s0103f045Lut[ts_b57861s0103f045LutSize-1].resistance_Ohm+TS_EPCOS_B57861S0103F045_RESISTOR_DIVIDER_RESISTANCE_R_1_R_2_Ohm)))
136 #define TS_EPCOS_B57861S0103F045_ADC_VOLTAGE_V_MAX_V \
137 ((float)((TS_EPCOS_B57861S0103F045_RESISTOR_DIVIDER_SUPPLY_VOLTAGE_V * ts_b57861s0103f045Lut[0].resistance_Ohm) / (ts_b57861s0103f045Lut[0].resistance_Ohm+TS_EPCOS_B57861S0103F045_RESISTOR_DIVIDER_RESISTANCE_R_1_R_2_Ohm)))
148 int16_t temperature_ddegC = 0;
149 float resistance_Ohm = 0.0f;
150 float adcVoltage_V = adcVoltage_mV / 1000.0f;
155 temperature_ddegC = INT16_MIN;
158 temperature_ddegC = INT16_MAX;
161 #if TS_EPCOS_B57861S0103F045_POSITION_IN_RESISTOR_DIVIDER_IS_R_1 == true
172 uint16_t between_high = 0;
173 uint16_t between_low = 0;
176 between_low = i + 1u;
182 if (!(((between_high == 0u) && (between_low == 0u)) ||
194 return temperature_ddegC;
198 float temperature_degC = 0.0f;
199 float vadc_V = adcVoltage_mV / 1000.0f;
200 float vadc2 = vadc_V * vadc_V;
201 float vadc3 = vadc2 * vadc_V;
202 float vadc4 = vadc3 * vadc_V;
203 float vadc5 = vadc4 * vadc_V;
206 temperature_degC = (-6.2765f * vadc5) + (49.0397f * vadc4) - (151.3602f * vadc3) + (233.2521f * vadc2) -
207 (213.4588f * vadc_V) + 130.5822f;
209 return (int16_t)(temperature_degC * 10.0f);
int16_t TS_Epc01GetTemperatureFromPolynomial(uint16_t adcVoltage_mV)
returns temperature based on measured ADC voltage
static uint16_t ts_b57861s0103f045LutSize
int16_t TS_Epc01GetTemperatureFromLut(uint16_t adcVoltage_mV)
returns temperature based on measured ADC voltage
#define TS_EPCOS_B57861S0103F045_ADC_VOLTAGE_V_MAX_V
Defines for calculating the ADC voltage on the ends of the operating range.
static const TS_TEMPERATURE_SENSOR_LUT_s ts_b57861s0103f045Lut[]
#define TS_EPCOS_B57861S0103F045_ADC_VOLTAGE_V_MIN_V
Defines for calculating the ADC voltage on the ends of the operating range.
Resistive divider used for measuring temperature.
#define TS_EPCOS_B57861S0103F045_RESISTOR_DIVIDER_SUPPLY_VOLTAGE_V
#define TS_EPCOS_B57861S0103F045_RESISTOR_DIVIDER_RESISTANCE_R_1_R_2_Ohm
float MATH_LinearInterpolation(const float x1, const float y1, const float x2, const float y2, const float x_interpolate)
Linear inter-/extrapolates a third point according to two given points.
math library for often used math functions