Home
last modified time | relevance | path

Searched refs:CalibrationValues (Results 1 – 1 of 1) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Sensors/
DICP_101xx.cs99 if(index >= CalibrationValues.Length) in SetCalibrationValue()
103 CalibrationValues[index] = value; in SetCalibrationValue()
112 …public ushort[] CalibrationValues { get; private set; } = new ushort[4] { 620, 17540, 9475, 2945 }; property in Antmicro.Renode.Peripherals.Sensors.ICP_101xx
286 ushort rets = CalibrationValues[calibrationValueIndex]; in DefineCommandHandlers()
287 calibrationValueIndex = (calibrationValueIndex + 1) % CalibrationValues.Length; in DefineCommandHandlers()
399 long p_LUT0 = LUT_lower + (CalibrationValues[0] * t * t) / InverseQuadraticFactor; in GetCoefficients()
400 …long p_LUT1 = OffsetFactor * CalibrationValues[3] + (CalibrationValues[1] * t * t) / InverseQuadra… in GetCoefficients()
401 long p_LUT2 = LUT_upper + (CalibrationValues[2] * t * t) / InverseQuadraticFactor; in GetCoefficients()