Searched +full:rsense +full:- +full:val +full:- +full:milli +full:- +full:ohms (Results 1 – 2 of 2) sorted by relevance
1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)3 ---5 $schema: http://devicetree.org/meta-schemas/core.yaml#7 title: Analog Devices LTC2983, LTC2986, LTM2985 Multi-sensor Temperature system10 - Nuno Sá <nuno.sa@analog.com>13 Analog Devices LTC2983, LTC2984, LTC2986, LTM2985 Multi-Sensor Digital16 https://www.analog.com/media/en/technical-documentation/data-sheets/2983fc.pdf17 https://www.analog.com/media/en/technical-documentation/data-sheets/2984fb.pdf18 https://www.analog.com/media/en/technical-documentation/data-sheets/29861fa.pdf19 https://www.analog.com/media/en/technical-documentation/data-sheets/ltm2985.pdf[all …]
1 // SPDX-License-Identifier: GPL-2.03 * Analog Devices LTC2983 Multi-Sensor Digital Temperature Measurement System57 (((chan - 1) * 4) + LTC2983_CHAN_ASSIGN_START_REG)59 (((chan - 1) * 4) + LTC2983_TEMP_RES_START_REG)127 /* cold junction for thermocouples and rsense for rtd's and thermistor's */308 * instance a resolution of 2^-10 means we have 10 fractional bits.310 static u32 __convert_to_raw(const u64 val, const u32 resolution) in __convert_to_raw() argument312 u64 __res = val * resolution; in __convert_to_raw()320 static u32 __convert_to_raw_sign(const u64 val, const u32 resolution) in __convert_to_raw_sign() argument322 s64 __res = -(s32)val; in __convert_to_raw_sign()[all …]