Searched +full:temperature +full:- +full:sense +full:- +full:rtd (Results 1 – 3 of 3) sorted by relevance
1 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)3 ---4 $id: http://devicetree.org/schemas/iio/afe/temperature-sense-rtd.yaml#5 $schema: http://devicetree.org/meta-schemas/core.yaml#7 title: Temperature Sense RTD10 - Liam Beguin <liambeguin@gmail.com>13 RTDs (Resistance Temperature Detectors) are a kind of temperature sensors14 used to get a linear voltage to temperature reading within a give range17 When an io-channel measures the output voltage across an RTD such as a19 temperature, not the voltage output. This binding describes such a circuit.[all …]
1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)3 ---5 $schema: http://devicetree.org/meta-schemas/core.yaml#10 - Cosmin Tanislav <cosmin.tanislav@analog.com>13 The AD74115H is a single-channel software configurable input/output16 temperature detector, and thermocouple measurements integrated into a single17 chip solution with an SPI interface. The device features a 16-bit ADC and a18 14-bit DAC.25 - adi,ad74115h30 spi-max-frequency:[all …]
1 // SPDX-License-Identifier: GPL-2.033 *val *= rescale->numerator; in rescale_process_scale()34 if (rescale->denominator == 1) in rescale_process_scale()36 *val2 = rescale->denominator; in rescale_process_scale()44 if (!check_mul_overflow(*val, rescale->numerator, &_val) && in rescale_process_scale()45 !check_mul_overflow(*val2, rescale->denominator, &_val2)) { in rescale_process_scale()53 tmp = div_s64(tmp, rescale->denominator); in rescale_process_scale()54 tmp *= rescale->numerator; in rescale_process_scale()82 * *val = 1 and *val2 = -0.5 yields -1.5 not -0.5. in rescale_process_scale()86 tmp = (s64)abs(*val) * abs(rescale->numerator); in rescale_process_scale()[all …]