Searched +full:shunt +full:- +full:range +full:- +full:microvolt (Results 1 – 2 of 2) sorted by relevance
1 .. SPDX-License-Identifier: GPL-2.022 Eric Tremblay <etremblay@distech-controls.com>25 -----------28 The TMP512 (dual-channel) and TMP513 (triple-channel) are system monitors29 that include remote sensors, a local temperature sensor, and a high-side current30 shunt monitor. These system monitors have the capability of measuring remote31 temperatures, on-chip temperatures, and system voltage/power/current34 The temperatures are measured in degrees Celsius with a range of35 -40 to + 125 degrees with a resolution of 0.0625 degree C.39 hysteresis value. The hysteresis is in degrees Celsius with a range of[all …]
1 // SPDX-License-Identifier: GPL-2.07 * Local Temperature Sensor and Current Shunt Monitor12 * and Local Temperature Sensor and Current Shunt Monitor15 * Copyright (C) 2019 Eric Tremblay <etremblay@distech-controls.com>112 // Max possible value is -256 to +256 but datasheet indicated -40 to 125.114 #define MIN_TEMP_LIMIT -40000123 #define TMP51X_TEMP_CHANNEL_MASK(n) (GENMASK((n) - 1, 0) << 11)185 // Set the shift based on the gain: 8 -> 1, 4 -> 2, 2 -> 3, 1 -> 4188 return 5 - ffs(data->pga_gain); in tmp51x_get_pga_shift()209 16 - tmp51x_get_pga_shift(data) : 15); in tmp51x_get_value()[all …]