Lines Matching refs:tmpSensorParameters
110 struct SensorParams tmpSensorParameters = { in getSensorParameters() local
135 tmpSensorParameters.offsetValue = *tmpOffsetValue; in getSensorParameters()
146 tmpSensorParameters.scaleValue = *tmpScaleValue; in getSensorParameters()
160 tmpSensorParameters.minValue = minValuePressure; in getSensorParameters()
161 tmpSensorParameters.maxValue = maxValuePressure; in getSensorParameters()
163 tmpSensorParameters.scaleValue *= 1000.0; in getSensorParameters()
164 tmpSensorParameters.typeName = "pressure"; in getSensorParameters()
165 tmpSensorParameters.units = sensor_paths::unitPascals; in getSensorParameters()
170 tmpSensorParameters.minValue = minValueRelativeHumidity; in getSensorParameters()
171 tmpSensorParameters.maxValue = maxValueRelativeHumidity; in getSensorParameters()
173 tmpSensorParameters.scaleValue *= 0.001; in getSensorParameters()
174 tmpSensorParameters.typeName = "humidity"; in getSensorParameters()
175 tmpSensorParameters.units = sensor_paths::unitPercentRH; in getSensorParameters()
181 tmpSensorParameters.scaleValue *= 0.001; in getSensorParameters()
184 return tmpSensorParameters; in getSensorParameters()