Lines Matching +full:0 +full:deg
10 * its own temperature with a 0.0625 deg resolution and a 0.33 deg
17 * (1.0 deg). Complete datasheet can be obtained from Maxim's website
44 static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b,
49 #define LM92_REG_CONFIG 0x01 /* 8-bit, RW */
50 #define LM92_REG_TEMP 0x00 /* 16-bit, RO */
51 #define LM92_REG_TEMP_HYST 0x02 /* 16-bit, RW */
52 #define LM92_REG_TEMP_CRIT 0x03 /* 16-bit, RW */
53 #define LM92_REG_TEMP_LOW 0x04 /* 16-bit, RW */
54 #define LM92_REG_TEMP_HIGH 0x05 /* 16-bit, RW */
55 #define LM92_REG_MAN_ID 0x07 /* 16-bit, RO, LM92 only */
78 return reg & 0x0007; in ALARMS_FROM_REG()
124 for (i = 0; i < t_num_regs; i++) { in lm92_update_device()
236 static SENSOR_DEVICE_ATTR_RO(temp1_min_alarm, alarm, 0);
249 if (config & 0x01) in lm92_init_client()
251 config & 0xFE); in lm92_init_client()
270 /* Return 0 if detection is successful, -ENODEV otherwise */
285 if ((config & 0xe0) == 0x00 && man_id == 0x0180) in lm92_detect()
292 return 0; in lm92_detect()